From e242591329a36bd002111dc5330fc0686c1157b0 Mon Sep 17 00:00:00 2001 From: Konrad Kokosa Date: Mon, 3 Aug 2026 16:28:10 +0200 Subject: [PATCH 1/4] Re-run gcperfsim-cache benchmark with full-resolution raw capture gcperfsim-cache (Workstation and Server GC modes) previously had no raw per-second dotnet-counters CSV capture in results/raw/, only the ZeroGC capture existed. This meant its TimeSeries.PauseTimePct chart data (stride- decimated to ~150 points from the full capture) could not be cross-checked or re-derived from source, and its reported PauseTimePctStats.Max included a rare one-off pause spike (11.80% Workstation) that the decimated chart series did not show (chart max ~0.46%), a ~26x visual understatement in report.html. This change re-runs gcperfsim-cache for both Workstation and Server GC for the same 600s duration as the rest of the suite, using an isolated output directory so the other 31 existing runs in results-full.json are left untouched, then merges just the two refreshed gcperfsim-cache entries back in and regenerates report.html (synced to docs/zerogc/report.html). Note: the new capture's Workstation run does not reproduce the prior rare pause spike (new Max 0.47% vs old 11.80%) -- GC pause spikes are inherently stochastic (e.g. one-off blocking Gen2 collection under memory pressure), so this is expected run-to-run noise, not a regression. Avg/P50/P90 for Workstation are consistent with the prior run (Avg 0.142% -> 0.120%, P50 0.149% -> 0.147%, P90 0.354% -> 0.350%). Full raw CSVs are now checked in for both modes, closing the previously-missing data gap. --- docs/zerogc/report.html | 246 +- .../results/raw/gcperfsim-cache_server.csv | 17358 +++++ .../raw/gcperfsim-cache_workstation.csv | 17213 +++++ src/ZeroGC/results/report.html | 246 +- src/ZeroGC/results/results-full.json | 55792 ++++++++-------- 5 files changed, 63320 insertions(+), 27535 deletions(-) create mode 100644 src/ZeroGC/results/raw/gcperfsim-cache_server.csv create mode 100644 src/ZeroGC/results/raw/gcperfsim-cache_workstation.csv diff --git a/docs/zerogc/report.html b/docs/zerogc/report.html index 468fb6fab83..c62c191612b 100644 --- a/docs/zerogc/report.html +++ b/docs/zerogc/report.html @@ -41,7 +41,7 @@

ZeroGC vs. Workstation GC vs. Server GC

-

Generated 2026-07-21 09:13:06 on this machine. Eleven workloads (2 hand-written sample apps, 5 GCPerfSim scenarios, 2 zero-alloc scenarios, dotLLM inference, and a growing-cache scenario), each run once per GC configuration.

+

Generated 2026-08-03 16:15:48 on this machine. Eleven workloads (2 hand-written sample apps, 5 GCPerfSim scenarios, 2 zero-alloc scenarios, dotLLM inference, and a growing-cache scenario), each run once per GC configuration.

Workstation GC (default, non-concurrent-by-default background GC) @@ -430,128 +430,6 @@

Working set (MB) over time

Workstation GCServer GCZeroGC
-
-

GCPerfSim: cache / large-object-heavy workload

-

GCPerfSim.exe -tc 2 -tlgb 0.3 -lohar 100 -sohsr 500-4000 -sohsi 8 -lohsr 100000-300000 -lohsi 4 -at simple -c 300000 -tagb 5.3

- - - - - - - - - - - - - - - -
MetricWorkstation GCServer GCZeroGC
Duration (s)602.4599.2601.1
Allocation throughput (MB/s)9.01
9.06
9.03
Total allocated5.30 GB
5.30 GB
5.30 GB
Total GC pause time187 ms
51 ms
0 ms
Gen0 collections358
37
0
Gen1 collections145170
Gen2 collections12120
GC heap size617.41 MB775.04 MB6.25 GB
Total committed bytes1.03 GB
872.92 MB
6.25 GB
Peak working set1.07 GB
916.98 MB
5.53 GB
- -
-

GC pause time / memory / throughput percentiles (over the full run)

- - - - - - - -
Workstation GCServer GCZeroGC
Metricavgp50p90p99avgp50p90p99avgp50p90p99
GC pause time (ms per ~1s sample)1.41 ms1.49 ms3.54 ms4.58 ms0.32 ms0.00 ms0.00 ms7.72 ms0.00 ms0.00 ms0.00 ms0.00 ms
Working set (MB)8308971,0561,0898498939139153,0293,0285,1515,623
Throughput (MB/s)8.68.69.39.88.78.69.510.09.10.00.0128.0
-
- -
-
-

GC pause time (ms) over time

- - - 0.0 ms -4.6 ms -9.2 ms -13.8 ms -18.4 ms - - - - - - - - time (s), 0-597 - -
-
-

Throughput (MB/s) over time

- - - 0.0 MB/s -34.6 MB/s -69.1 MB/s -103.7 MB/s -138.2 MB/s - - - - - - - - time (s), 0-597 - -
-
-

GC pause time (ms) percentiles (avg / p50 / p90 / p99 / max, full run)

- - 0.00 ms -33.93 ms -67.86 ms -101.79 ms -135.71 ms - - - - Workstation GC Avg: 1.414 ms -Server GC Avg: 0.321 ms -ZeroGC Avg: 0.000 ms -Workstation GC P50: 1.491 ms -Server GC P50: 0.000 ms -ZeroGC P50: 0.000 ms -Workstation GC P90: 3.536 ms -Server GC P90: 0.000 ms -ZeroGC P90: 0.000 ms -Workstation GC P99: 4.583 ms -Server GC P99: 7.725 ms -ZeroGC P99: 0.000 ms -Workstation GC Max: 118.012 ms -Server GC Max: 25.385 ms -ZeroGC Max: 0.000 ms - - AvgP50P90P99Max - -
-
-

Working set (MB) over time

- - - 0.0 MB -1,525.2 MB -3,050.5 MB -4,575.7 MB -6,100.9 MB - - - - - - - - time (s), 0-596 - -
-
-
Workstation GCServer GCZeroGC

GCPerfSim: high-throughput transient object churn

GCPerfSim.exe -tc 8 -tlgb 0.1 -lohar 0 -sohsr 200-600 -sohsi 200 -at simple -c 300000 -tagb 3.4

@@ -1408,6 +1286,128 @@

Working set (MB) over time

Workstation GCServer GCZeroGC
+
+

GCPerfSim: cache / large-object-heavy workload

+

GCPerfSim.exe -tc 2 -tlgb 0.3 -lohar 100 -sohsr 500-4000 -sohsi 8 -lohsr 100000-300000 -lohsi 4 -at simple -c 300000 -tagb 5.3

+ + + + + + + + + + + + + + + +
MetricWorkstation GCServer GCZeroGC
Duration (s)596.2601.4601.1
Allocation throughput (MB/s)9.10
9.02
9.03
Total allocated5.30 GB
5.30 GB
5.30 GB
Total GC pause time170 ms
22 ms
0 ms
Gen0 collections359
42
0
Gen1 collections134170
Gen2 collections12120
GC heap size952.24 MB789.34 MB6.25 GB
Total committed bytes1.03 GB
902.00 MB
6.25 GB
Peak working set1.07 GB
946.71 MB
5.53 GB
+ +
+

GC pause time / memory / throughput percentiles (over the full run)

+ + + + + + + +
Workstation GCServer GCZeroGC
Metricavgp50p90p99avgp50p90p99avgp50p90p99
GC pause time (ms per ~1s sample)1.20 ms1.47 ms3.50 ms4.34 ms0.30 ms0.00 ms0.00 ms7.84 ms0.00 ms0.00 ms0.00 ms0.00 ms
Working set (MB)8268791,0551,0848278669389453,0293,0285,1515,623
Throughput (MB/s)8.78.79.410.07.08.49.410.19.10.00.0128.0
+
+ +
+
+

GC pause time (ms) over time

+ + + 0.0 ms +1.9 ms +3.9 ms +5.8 ms +7.8 ms + + + + + + + + time (s), 0-597 + +
+
+

Throughput (MB/s) over time

+ + + 0.0 MB/s +34.6 MB/s +69.1 MB/s +103.7 MB/s +138.2 MB/s + + + + + + + + time (s), 0-597 + +
+
+

GC pause time (ms) percentiles (avg / p50 / p90 / p99 / max, full run)

+ + 0.00 ms +6.15 ms +12.30 ms +18.45 ms +24.60 ms + + + + Workstation GC Avg: 1.195 ms +Server GC Avg: 0.296 ms +ZeroGC Avg: 0.000 ms +Workstation GC P50: 1.465 ms +Server GC P50: 0.000 ms +ZeroGC P50: 0.000 ms +Workstation GC P90: 3.502 ms +Server GC P90: 0.000 ms +ZeroGC P90: 0.000 ms +Workstation GC P99: 4.344 ms +Server GC P99: 7.840 ms +ZeroGC P99: 0.000 ms +Workstation GC Max: 4.749 ms +Server GC Max: 21.390 ms +ZeroGC Max: 0.000 ms + + AvgP50P90P99Max + +
+
+

Working set (MB) over time

+ + + 0.0 MB +1,525.2 MB +3,050.5 MB +4,575.7 MB +6,100.9 MB + + + + + + + + time (s), 0-596 + +
+
+
Workstation GCServer GCZeroGC
diff --git a/src/ZeroGC/results/raw/gcperfsim-cache_server.csv b/src/ZeroGC/results/raw/gcperfsim-cache_server.csv new file mode 100644 index 00000000000..cc27e1fafd0 --- /dev/null +++ b/src/ZeroGC/results/raw/gcperfsim-cache_server.csv @@ -0,0 +1,17358 @@ +Timestamp,Provider,Counter Name,Counter Type,Mean/Increment +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,383930368 +08/03/2026 16:04:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,411168768 +08/03/2026 16:04:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,1257976 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,91379440 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,31582536 +08/03/2026 16:04:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,1250880 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11171256 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,4167000 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4928 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,383930368 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8118328 +08/03/2026 16:04:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,420458496 +08/03/2026 16:04:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,1257976 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,91379440 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,31582536 +08/03/2026 16:04:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,149 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.046875 +08/03/2026 16:04:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.08313390000000001 +08/03/2026 16:04:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,19003 +08/03/2026 16:04:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,1250880 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11171256 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,4167000 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4928 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,420655104 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8986984 +08/03/2026 16:04:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,425136128 +08/03/2026 16:04:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,24842472 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,96894248 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,34227408 +08/03/2026 16:04:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,70 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0026219999999999993 +08/03/2026 16:04:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:04:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.04521359999999999 +08/03/2026 16:04:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,9987 +08/03/2026 16:04:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,24789176 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2188384 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,4167000 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5376 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,420655104 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9681872 +08/03/2026 16:04:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,427884544 +08/03/2026 16:04:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,24842472 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,96894248 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,34227408 +08/03/2026 16:04:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,89 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.037861900000000004 +08/03/2026 16:04:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,7094 +08/03/2026 16:04:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,24789176 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2188384 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,4167000 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5376 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,420655104 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9359816 +08/03/2026 16:04:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,430350336 +08/03/2026 16:04:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,24842472 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,96894248 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,34227408 +08/03/2026 16:04:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,24 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.006960999999999995 +08/03/2026 16:04:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1279 +08/03/2026 16:04:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,24789176 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2188384 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,4167000 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5376 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,420655104 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8804512 +08/03/2026 16:04:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,433676288 +08/03/2026 16:04:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,24842472 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,96894248 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,34227408 +08/03/2026 16:04:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,86 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.078125 +08/03/2026 16:04:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.05025689999999999 +08/03/2026 16:04:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,7114 +08/03/2026 16:04:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,24789176 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2188384 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,4167000 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5376 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,420655104 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8831480 +08/03/2026 16:04:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,434315264 +08/03/2026 16:04:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,24842472 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,96894248 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,34227408 +08/03/2026 16:04:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,7 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0022119999999999918 +08/03/2026 16:04:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,420 +08/03/2026 16:04:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,24789176 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2188384 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,4167000 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5376 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,390664192 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9923448 +08/03/2026 16:04:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,430436352 +08/03/2026 16:04:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16347264 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,113946176 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,36757688 +08/03/2026 16:04:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,6 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0022950000000000054 +08/03/2026 16:04:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.001577099999999998 +08/03/2026 16:04:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,253 +08/03/2026 16:04:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16192384 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16755416 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,10105080 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,2448760 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,390664192 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9163568 +08/03/2026 16:04:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,432439296 +08/03/2026 16:04:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16347264 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,113946176 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,36757688 +08/03/2026 16:04:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,16 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:04:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.010899199999999998 +08/03/2026 16:04:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1249 +08/03/2026 16:04:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16192384 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16755416 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,10105080 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,2448760 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,390664192 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8279680 +08/03/2026 16:04:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,435175424 +08/03/2026 16:04:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16347264 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,113946176 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,36757688 +08/03/2026 16:04:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,26 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.006165200000000037 +08/03/2026 16:04:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1696 +08/03/2026 16:04:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16192384 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16755416 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,10105080 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,2448760 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,390664192 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9863768 +08/03/2026 16:04:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,440315904 +08/03/2026 16:04:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16347264 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,113946176 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,36757688 +08/03/2026 16:04:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,4 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0014302999999999955 +08/03/2026 16:04:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,224 +08/03/2026 16:04:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16192384 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16755416 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,10105080 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,2448760 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,390664192 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8770264 +08/03/2026 16:04:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,444289024 +08/03/2026 16:04:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16347264 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,113946176 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,204082688 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,36757688 +08/03/2026 16:04:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,8 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.003193699999999966 +08/03/2026 16:04:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,694 +08/03/2026 16:04:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16192384 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16755416 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,10105080 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,2448760 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8439200 +08/03/2026 16:04:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,485466112 +08/03/2026 16:04:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:04:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.011184 +08/03/2026 16:04:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:04:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.125 +08/03/2026 16:04:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0003685999999999967 +08/03/2026 16:04:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,59 +08/03/2026 16:04:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9223968 +08/03/2026 16:04:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,486395904 +08/03/2026 16:04:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:04:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,5 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0006111000000000311 +08/03/2026 16:04:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,59 +08/03/2026 16:04:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9995136 +08/03/2026 16:04:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,488132608 +08/03/2026 16:04:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:04:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9009224 +08/03/2026 16:04:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,489046016 +08/03/2026 16:04:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:04:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,7 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:04:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:04:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.001857799999999965 +08/03/2026 16:04:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,318 +08/03/2026 16:04:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8731200 +08/03/2026 16:04:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,491786240 +08/03/2026 16:04:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:04:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,14 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.003588900000000006 +08/03/2026 16:04:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1113 +08/03/2026 16:04:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8776872 +08/03/2026 16:05:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,496148480 +08/03/2026 16:05:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,13 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0062954000000000065 +08/03/2026 16:05:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1228 +08/03/2026 16:05:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8148600 +08/03/2026 16:05:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,500129792 +08/03/2026 16:05:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0003366000000000202 +08/03/2026 16:05:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,7 +08/03/2026 16:05:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9174840 +08/03/2026 16:05:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,507162624 +08/03/2026 16:05:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,2 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0009955999999999854 +08/03/2026 16:05:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,163 +08/03/2026 16:05:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9266136 +08/03/2026 16:05:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,516460544 +08/03/2026 16:05:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,2 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0011840000000000184 +08/03/2026 16:05:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,186 +08/03/2026 16:05:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8685360 +08/03/2026 16:05:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,525209600 +08/03/2026 16:05:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,6 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.004450499999999968 +08/03/2026 16:05:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,370 +08/03/2026 16:05:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8468224 +08/03/2026 16:05:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,533721088 +08/03/2026 16:05:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0001466999999999996 +08/03/2026 16:05:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,6 +08/03/2026 16:05:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10381432 +08/03/2026 16:05:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,543875072 +08/03/2026 16:05:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9783832 +08/03/2026 16:05:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,552738816 +08/03/2026 16:05:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8981464 +08/03/2026 16:05:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,559325184 +08/03/2026 16:05:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:05:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9693344 +08/03/2026 16:05:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,565538816 +08/03/2026 16:05:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:05:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8710736 +08/03/2026 16:05:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,570073088 +08/03/2026 16:05:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8444616 +08/03/2026 16:05:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,577478656 +08/03/2026 16:05:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9233072 +08/03/2026 16:05:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,586739712 +08/03/2026 16:05:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,9 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0016144000000000158 +08/03/2026 16:05:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,139 +08/03/2026 16:05:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9017632 +08/03/2026 16:05:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,595861504 +08/03/2026 16:05:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,36 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.012330400000000019 +08/03/2026 16:05:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1916 +08/03/2026 16:05:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8652336 +08/03/2026 16:05:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,604643328 +08/03/2026 16:05:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,49 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.012374799999999964 +08/03/2026 16:05:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1985 +08/03/2026 16:05:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8787480 +08/03/2026 16:05:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,612900864 +08/03/2026 16:05:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0003258000000000427 +08/03/2026 16:05:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,33 +08/03/2026 16:05:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8452176 +08/03/2026 16:05:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,621174784 +08/03/2026 16:05:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:05:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8774464 +08/03/2026 16:05:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,630075392 +08/03/2026 16:05:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9417056 +08/03/2026 16:05:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,639582208 +08/03/2026 16:05:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9501568 +08/03/2026 16:05:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,649072640 +08/03/2026 16:05:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9747416 +08/03/2026 16:05:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,658878464 +08/03/2026 16:05:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9660728 +08/03/2026 16:05:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,668618752 +08/03/2026 16:05:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8433096 +08/03/2026 16:05:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,677158912 +08/03/2026 16:05:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8794768 +08/03/2026 16:05:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,685948928 +08/03/2026 16:05:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:05:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9203080 +08/03/2026 16:05:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,695214080 +08/03/2026 16:05:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,443609088 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9755904 +08/03/2026 16:05:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,705052672 +08/03/2026 16:05:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,43605768 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,21365496 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294834768 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,40844136 +08/03/2026 16:05:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,43419520 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16376776 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,5466280 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1680952 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9261456 +08/03/2026 16:05:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,695463936 +08/03/2026 16:05:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.006960999999999995 +08/03/2026 16:05:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:05:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0013929999999999776 +08/03/2026 16:05:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,256 +08/03/2026 16:05:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9664528 +08/03/2026 16:05:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,695468032 +08/03/2026 16:05:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9034296 +08/03/2026 16:05:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,695468032 +08/03/2026 16:05:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8486104 +08/03/2026 16:05:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,695468032 +08/03/2026 16:05:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9469824 +08/03/2026 16:05:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,695447552 +08/03/2026 16:05:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8948200 +08/03/2026 16:05:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,695447552 +08/03/2026 16:05:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8737144 +08/03/2026 16:05:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,695451648 +08/03/2026 16:05:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9121752 +08/03/2026 16:05:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,695459840 +08/03/2026 16:05:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8308584 +08/03/2026 16:05:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,695459840 +08/03/2026 16:05:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8964872 +08/03/2026 16:05:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,695459840 +08/03/2026 16:05:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9393112 +08/03/2026 16:05:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,695455744 +08/03/2026 16:05:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9053736 +08/03/2026 16:05:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,695463936 +08/03/2026 16:05:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8477640 +08/03/2026 16:05:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,695463936 +08/03/2026 16:05:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8920320 +08/03/2026 16:05:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,695468032 +08/03/2026 16:05:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8848968 +08/03/2026 16:05:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,696037376 +08/03/2026 16:05:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9502344 +08/03/2026 16:05:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,696320000 +08/03/2026 16:05:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9205264 +08/03/2026 16:05:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,697171968 +08/03/2026 16:05:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,10 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0018017000000000172 +08/03/2026 16:05:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,172 +08/03/2026 16:05:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9244872 +08/03/2026 16:05:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,697524224 +08/03/2026 16:05:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,31 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.009564899999999987 +08/03/2026 16:05:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1716 +08/03/2026 16:05:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9166680 +08/03/2026 16:05:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,697786368 +08/03/2026 16:05:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,33 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:05:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.01164670000000001 +08/03/2026 16:05:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1435 +08/03/2026 16:05:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8591392 +08/03/2026 16:05:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,697810944 +08/03/2026 16:05:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10082744 +08/03/2026 16:05:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,698077184 +08/03/2026 16:05:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8122296 +08/03/2026 16:05:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,698101760 +08/03/2026 16:05:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8414088 +08/03/2026 16:05:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,699277312 +08/03/2026 16:05:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8690800 +08/03/2026 16:05:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,700563456 +08/03/2026 16:05:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9245808 +08/03/2026 16:05:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,701644800 +08/03/2026 16:05:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:05:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8084840 +08/03/2026 16:05:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,701644800 +08/03/2026 16:05:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9712400 +08/03/2026 16:05:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,703762432 +08/03/2026 16:05:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9350200 +08/03/2026 16:05:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,707088384 +08/03/2026 16:05:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8184000 +08/03/2026 16:05:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,710123520 +08/03/2026 16:05:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8729768 +08/03/2026 16:05:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,716251136 +08/03/2026 16:05:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:05:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,652541952 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8625960 +08/03/2026 16:05:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,724361216 +08/03/2026 16:05:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,133796256 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,62788248 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,65849672 +08/03/2026 16:05:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:05:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,133376296 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28820984 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,26933928 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9756760 +08/03/2026 16:05:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,732876800 +08/03/2026 16:05:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:05:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.006168000000000007 +08/03/2026 16:05:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:05:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8461664 +08/03/2026 16:05:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,732889088 +08/03/2026 16:05:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:05:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:05:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8814040 +08/03/2026 16:05:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,733175808 +08/03/2026 16:05:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:05:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:05:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:05:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:05:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:05:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:05:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9372064 +08/03/2026 16:06:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,734212096 +08/03/2026 16:06:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8931480 +08/03/2026 16:06:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,734683136 +08/03/2026 16:06:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8841992 +08/03/2026 16:06:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,734928896 +08/03/2026 16:06:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8682616 +08/03/2026 16:06:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,735424512 +08/03/2026 16:06:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8302240 +08/03/2026 16:06:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,735416320 +08/03/2026 16:06:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:06:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9249400 +08/03/2026 16:06:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,735952896 +08/03/2026 16:06:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:06:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9140712 +08/03/2026 16:06:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,736772096 +08/03/2026 16:06:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10590656 +08/03/2026 16:06:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,738607104 +08/03/2026 16:06:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8646272 +08/03/2026 16:06:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,738983936 +08/03/2026 16:06:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9131760 +08/03/2026 16:06:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,740106240 +08/03/2026 16:06:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9031424 +08/03/2026 16:06:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,740622336 +08/03/2026 16:06:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9289192 +08/03/2026 16:06:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,741871616 +08/03/2026 16:06:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9278768 +08/03/2026 16:06:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,742965248 +08/03/2026 16:06:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:06:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9418856 +08/03/2026 16:06:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,743895040 +08/03/2026 16:06:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8682176 +08/03/2026 16:06:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,744304640 +08/03/2026 16:06:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9166128 +08/03/2026 16:06:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,745246720 +08/03/2026 16:06:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10539016 +08/03/2026 16:06:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,747520000 +08/03/2026 16:06:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8565160 +08/03/2026 16:06:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,747945984 +08/03/2026 16:06:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10215376 +08/03/2026 16:06:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,749740032 +08/03/2026 16:06:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9293136 +08/03/2026 16:06:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,750616576 +08/03/2026 16:06:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.046875 +08/03/2026 16:06:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8360664 +08/03/2026 16:06:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,750927872 +08/03/2026 16:06:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9163688 +08/03/2026 16:06:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,751919104 +08/03/2026 16:06:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10811160 +08/03/2026 16:06:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,754614272 +08/03/2026 16:06:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10291168 +08/03/2026 16:06:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,756756480 +08/03/2026 16:06:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9061424 +08/03/2026 16:06:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,758026240 +08/03/2026 16:06:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8899640 +08/03/2026 16:06:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,758534144 +08/03/2026 16:06:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8376912 +08/03/2026 16:06:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,758935552 +08/03/2026 16:06:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8220144 +08/03/2026 16:06:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,760696832 +08/03/2026 16:06:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:06:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9650872 +08/03/2026 16:06:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,768847872 +08/03/2026 16:06:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8638880 +08/03/2026 16:06:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,776019968 +08/03/2026 16:06:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:06:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8627832 +08/03/2026 16:06:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,780603392 +08/03/2026 16:06:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:06:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8881328 +08/03/2026 16:06:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,789422080 +08/03/2026 16:06:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:06:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,689496064 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8507272 +08/03/2026 16:06:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,798019584 +08/03/2026 16:06:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,188209648 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,65079000 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,70095552 +08/03/2026 16:06:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,187602736 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1859688 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4933952 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,760188928 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9553408 +08/03/2026 16:06:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,803872768 +08/03/2026 16:06:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,102041320 +08/03/2026 16:06:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.008645 +08/03/2026 16:06:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.046875 +08/03/2026 16:06:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195817864 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1647296 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1922536 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,760188928 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8131280 +08/03/2026 16:06:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,803872768 +08/03/2026 16:06:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,102041320 +08/03/2026 16:06:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195817864 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1647296 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1922536 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,760188928 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8793960 +08/03/2026 16:06:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,804298752 +08/03/2026 16:06:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,102041320 +08/03/2026 16:06:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195817864 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1647296 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1922536 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,760188928 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9499480 +08/03/2026 16:06:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,805744640 +08/03/2026 16:06:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294828896 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,102041320 +08/03/2026 16:06:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195817864 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1647296 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,37866416 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,1922536 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9280504 +08/03/2026 16:06:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,802426880 +08/03/2026 16:06:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0007370000000000015 +08/03/2026 16:06:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:06:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.046875 +08/03/2026 16:06:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8187328 +08/03/2026 16:06:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,802426880 +08/03/2026 16:06:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:06:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8754536 +08/03/2026 16:06:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,802430976 +08/03/2026 16:06:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:06:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9912352 +08/03/2026 16:06:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,802430976 +08/03/2026 16:06:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9663944 +08/03/2026 16:06:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,802435072 +08/03/2026 16:06:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8119568 +08/03/2026 16:06:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,802435072 +08/03/2026 16:06:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8590352 +08/03/2026 16:06:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,802435072 +08/03/2026 16:06:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8737512 +08/03/2026 16:06:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,802435072 +08/03/2026 16:06:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9588672 +08/03/2026 16:06:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,802430976 +08/03/2026 16:06:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9268352 +08/03/2026 16:06:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,802447360 +08/03/2026 16:06:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:06:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9361784 +08/03/2026 16:06:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,802455552 +08/03/2026 16:06:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8490352 +08/03/2026 16:06:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,802455552 +08/03/2026 16:06:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:06:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10002768 +08/03/2026 16:06:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,802459648 +08/03/2026 16:06:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9839208 +08/03/2026 16:06:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,802467840 +08/03/2026 16:06:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9750864 +08/03/2026 16:06:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,802467840 +08/03/2026 16:06:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9987776 +08/03/2026 16:06:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,802463744 +08/03/2026 16:06:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:06:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8531248 +08/03/2026 16:06:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,802471936 +08/03/2026 16:06:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:06:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8640608 +08/03/2026 16:06:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,802471936 +08/03/2026 16:06:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8646192 +08/03/2026 16:06:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,802443264 +08/03/2026 16:06:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:06:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:06:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9725528 +08/03/2026 16:06:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,802451456 +08/03/2026 16:06:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:06:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10313880 +08/03/2026 16:06:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,802463744 +08/03/2026 16:06:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8476152 +08/03/2026 16:06:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,802463744 +08/03/2026 16:06:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:06:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9180576 +08/03/2026 16:06:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,802467840 +08/03/2026 16:06:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:06:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:06:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:06:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:06:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:06:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8909320 +08/03/2026 16:07:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,802467840 +08/03/2026 16:07:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:07:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9426240 +08/03/2026 16:07:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,802480128 +08/03/2026 16:07:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9369016 +08/03/2026 16:07:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,803008512 +08/03/2026 16:07:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9357912 +08/03/2026 16:07:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,803602432 +08/03/2026 16:07:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9438144 +08/03/2026 16:07:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,803606528 +08/03/2026 16:07:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8688176 +08/03/2026 16:07:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,804433920 +08/03/2026 16:07:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9593936 +08/03/2026 16:07:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,805380096 +08/03/2026 16:07:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:07:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8877336 +08/03/2026 16:07:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,807620608 +08/03/2026 16:07:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,759492608 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8658792 +08/03/2026 16:07:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,809992192 +08/03/2026 16:07:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196547712 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,98434240 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,191860304 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,13922936 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,53992864 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8783144 +08/03/2026 16:07:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,811257856 +08/03/2026 16:07:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.007117999999999999 +08/03/2026 16:07:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8670408 +08/03/2026 16:07:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,811274240 +08/03/2026 16:07:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:07:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9918072 +08/03/2026 16:07:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,811286528 +08/03/2026 16:07:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:07:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9825744 +08/03/2026 16:07:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,811413504 +08/03/2026 16:07:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8201888 +08/03/2026 16:07:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,811413504 +08/03/2026 16:07:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8659112 +08/03/2026 16:07:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,811462656 +08/03/2026 16:07:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8707976 +08/03/2026 16:07:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,811454464 +08/03/2026 16:07:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8008712 +08/03/2026 16:07:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,811454464 +08/03/2026 16:07:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9229640 +08/03/2026 16:07:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,811470848 +08/03/2026 16:07:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:07:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8860592 +08/03/2026 16:07:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,811622400 +08/03/2026 16:07:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9124392 +08/03/2026 16:07:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,811872256 +08/03/2026 16:07:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8767992 +08/03/2026 16:07:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,812335104 +08/03/2026 16:07:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:07:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8659176 +08/03/2026 16:07:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,812519424 +08/03/2026 16:07:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8411344 +08/03/2026 16:07:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,812519424 +08/03/2026 16:07:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8676064 +08/03/2026 16:07:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,812777472 +08/03/2026 16:07:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8665584 +08/03/2026 16:07:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,813068288 +08/03/2026 16:07:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9691568 +08/03/2026 16:07:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,813719552 +08/03/2026 16:07:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:07:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8710400 +08/03/2026 16:07:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,813789184 +08/03/2026 16:07:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9117392 +08/03/2026 16:07:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,814080000 +08/03/2026 16:07:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9189560 +08/03/2026 16:07:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,814657536 +08/03/2026 16:07:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8718360 +08/03/2026 16:07:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,815226880 +08/03/2026 16:07:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8224360 +08/03/2026 16:07:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,815583232 +08/03/2026 16:07:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:07:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9261528 +08/03/2026 16:07:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,816238592 +08/03/2026 16:07:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9991888 +08/03/2026 16:07:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,817348608 +08/03/2026 16:07:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9214696 +08/03/2026 16:07:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,818257920 +08/03/2026 16:07:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:07:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:07:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,7953472 +08/03/2026 16:07:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,818257920 +08/03/2026 16:07:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:07:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10308664 +08/03/2026 16:07:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,820056064 +08/03/2026 16:07:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8932824 +08/03/2026 16:07:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,822755328 +08/03/2026 16:07:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9865264 +08/03/2026 16:07:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,827813888 +08/03/2026 16:07:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9573832 +08/03/2026 16:07:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,835584000 +08/03/2026 16:07:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9071320 +08/03/2026 16:07:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,841945088 +08/03/2026 16:07:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:07:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,768212992 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9150576 +08/03/2026 16:07:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,849334272 +08/03/2026 16:07:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,186890848 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,132310456 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100399312 +08/03/2026 16:07:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:07:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,186026152 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14326432 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,20440896 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8686520 +08/03/2026 16:07:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,850726912 +08/03/2026 16:07:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.006722999999999993 +08/03/2026 16:07:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9502912 +08/03/2026 16:07:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,851591168 +08/03/2026 16:07:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9730168 +08/03/2026 16:07:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,853114880 +08/03/2026 16:07:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8585968 +08/03/2026 16:07:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,853663744 +08/03/2026 16:07:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9769088 +08/03/2026 16:07:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,855252992 +08/03/2026 16:07:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8889752 +08/03/2026 16:07:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,856100864 +08/03/2026 16:07:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,7920400 +08/03/2026 16:07:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,856092672 +08/03/2026 16:07:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8279472 +08/03/2026 16:07:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,856330240 +08/03/2026 16:07:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:07:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9645168 +08/03/2026 16:07:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,858107904 +08/03/2026 16:07:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10202448 +08/03/2026 16:07:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,859906048 +08/03/2026 16:07:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8458912 +08/03/2026 16:07:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,860307456 +08/03/2026 16:07:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:07:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8667912 +08/03/2026 16:07:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,860909568 +08/03/2026 16:07:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8268288 +08/03/2026 16:07:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,861192192 +08/03/2026 16:07:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806731776 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8616592 +08/03/2026 16:07:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,861536256 +08/03/2026 16:07:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294809384 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114116752 +08/03/2026 16:07:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,184874936 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,16789416 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,92134632 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5375056 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9899264 +08/03/2026 16:07:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,859242496 +08/03/2026 16:07:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:07:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.006496000000000002 +08/03/2026 16:07:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.078125 +08/03/2026 16:07:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:07:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0012543999999999889 +08/03/2026 16:07:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,256 +08/03/2026 16:07:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8311280 +08/03/2026 16:07:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,859250688 +08/03/2026 16:07:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:07:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:07:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8877888 +08/03/2026 16:07:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,859250688 +08/03/2026 16:07:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:07:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:07:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8425616 +08/03/2026 16:07:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,859250688 +08/03/2026 16:07:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:07:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:07:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8831376 +08/03/2026 16:07:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,859222016 +08/03/2026 16:07:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:07:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:07:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:07:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:07:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:07:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8052000 +08/03/2026 16:08:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,859213824 +08/03/2026 16:08:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10212864 +08/03/2026 16:08:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,859234304 +08/03/2026 16:08:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:08:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8986232 +08/03/2026 16:08:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,859234304 +08/03/2026 16:08:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8080312 +08/03/2026 16:08:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,859234304 +08/03/2026 16:08:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8960960 +08/03/2026 16:08:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,859238400 +08/03/2026 16:08:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8609920 +08/03/2026 16:08:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,859238400 +08/03/2026 16:08:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9991400 +08/03/2026 16:08:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,859238400 +08/03/2026 16:08:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:08:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:08:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8752832 +08/03/2026 16:08:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,859230208 +08/03/2026 16:08:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8298488 +08/03/2026 16:08:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,859230208 +08/03/2026 16:08:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9611736 +08/03/2026 16:08:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,859242496 +08/03/2026 16:08:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:08:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9217032 +08/03/2026 16:08:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,859246592 +08/03/2026 16:08:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:08:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,815964160 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8196096 +08/03/2026 16:08:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,862052352 +08/03/2026 16:08:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,185830064 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,164500656 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:08:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,171166128 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,43741320 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69315272 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8649224 +08/03/2026 16:08:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,862187520 +08/03/2026 16:08:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.006920999999999997 +08/03/2026 16:08:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:08:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8593536 +08/03/2026 16:08:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,862187520 +08/03/2026 16:08:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9318520 +08/03/2026 16:08:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,862187520 +08/03/2026 16:08:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.90625 +08/03/2026 16:08:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:08:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9364480 +08/03/2026 16:08:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,862179328 +08/03/2026 16:08:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9925240 +08/03/2026 16:08:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,862195712 +08/03/2026 16:08:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:08:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8629152 +08/03/2026 16:08:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,862195712 +08/03/2026 16:08:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9241744 +08/03/2026 16:08:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,862199808 +08/03/2026 16:08:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9785976 +08/03/2026 16:08:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,862199808 +08/03/2026 16:08:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8375096 +08/03/2026 16:08:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,862199808 +08/03/2026 16:08:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:08:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:08:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9381400 +08/03/2026 16:08:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,862191616 +08/03/2026 16:08:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9510688 +08/03/2026 16:08:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,862199808 +08/03/2026 16:08:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9527304 +08/03/2026 16:08:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,862203904 +08/03/2026 16:08:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8225208 +08/03/2026 16:08:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,862203904 +08/03/2026 16:08:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10454424 +08/03/2026 16:08:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,862212096 +08/03/2026 16:08:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9488720 +08/03/2026 16:08:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,862212096 +08/03/2026 16:08:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:08:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9393304 +08/03/2026 16:08:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,862203904 +08/03/2026 16:08:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9215304 +08/03/2026 16:08:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,862212096 +08/03/2026 16:08:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:08:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8291080 +08/03/2026 16:08:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,862212096 +08/03/2026 16:08:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10627624 +08/03/2026 16:08:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,862216192 +08/03/2026 16:08:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10508648 +08/03/2026 16:08:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,862347264 +08/03/2026 16:08:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9240000 +08/03/2026 16:08:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,863731712 +08/03/2026 16:08:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:08:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9623496 +08/03/2026 16:08:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,864571392 +08/03/2026 16:08:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8285616 +08/03/2026 16:08:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,867500032 +08/03/2026 16:08:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8380448 +08/03/2026 16:08:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,871170048 +08/03/2026 16:08:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8707456 +08/03/2026 16:08:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,878198784 +08/03/2026 16:08:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:08:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9171400 +08/03/2026 16:08:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,883564544 +08/03/2026 16:08:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818913280 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8658792 +08/03/2026 16:08:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,891899904 +08/03/2026 16:08:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,156359312 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,197793736 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,294760336 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:08:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,155398120 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,47991128 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138530664 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57008952 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8390576 +08/03/2026 16:08:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,909864960 +08/03/2026 16:08:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.021390000000000006 +08/03/2026 16:08:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:08:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:08:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8778504 +08/03/2026 16:08:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,909864960 +08/03/2026 16:08:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8609704 +08/03/2026 16:08:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,909864960 +08/03/2026 16:08:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9573000 +08/03/2026 16:08:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,909869056 +08/03/2026 16:08:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8293728 +08/03/2026 16:08:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,909869056 +08/03/2026 16:08:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:08:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:08:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9489280 +08/03/2026 16:08:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,909877248 +08/03/2026 16:08:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9397640 +08/03/2026 16:08:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,909942784 +08/03/2026 16:08:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:08:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8556592 +08/03/2026 16:08:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,909950976 +08/03/2026 16:08:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8307936 +08/03/2026 16:08:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,909955072 +08/03/2026 16:08:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9840688 +08/03/2026 16:08:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,910020608 +08/03/2026 16:08:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9738120 +08/03/2026 16:08:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,910020608 +08/03/2026 16:08:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:08:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:08:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8688992 +08/03/2026 16:08:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,910020608 +08/03/2026 16:08:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,7920728 +08/03/2026 16:08:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,910020608 +08/03/2026 16:08:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8802392 +08/03/2026 16:08:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,910012416 +08/03/2026 16:08:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9975296 +08/03/2026 16:08:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,911126528 +08/03/2026 16:08:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:08:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9308248 +08/03/2026 16:08:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,911384576 +08/03/2026 16:08:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:08:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9279904 +08/03/2026 16:08:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,911966208 +08/03/2026 16:08:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:08:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8536280 +08/03/2026 16:08:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,911966208 +08/03/2026 16:08:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:08:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8858152 +08/03/2026 16:08:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,912248832 +08/03/2026 16:08:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9559384 +08/03/2026 16:08:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,912527360 +08/03/2026 16:08:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10220144 +08/03/2026 16:08:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,912879616 +08/03/2026 16:08:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:08:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:08:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:08:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:08:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:08:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10102032 +08/03/2026 16:09:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,913661952 +08/03/2026 16:09:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:09:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:09:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9376752 +08/03/2026 16:09:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,914522112 +08/03/2026 16:09:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:09:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8880296 +08/03/2026 16:09:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,914530304 +08/03/2026 16:09:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:09:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,7975816 +08/03/2026 16:09:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,914530304 +08/03/2026 16:09:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:09:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9702440 +08/03/2026 16:09:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,915341312 +08/03/2026 16:09:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:09:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9216488 +08/03/2026 16:09:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,916303872 +08/03/2026 16:09:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:09:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:09:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,869306368 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9829408 +08/03/2026 16:09:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,917782528 +08/03/2026 16:09:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,282482888 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,33140664 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,122542648 +08/03/2026 16:09:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,280954528 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6482512 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27843224 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,876965888 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8774456 +08/03/2026 16:09:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,916570112 +08/03/2026 16:09:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131158896 +08/03/2026 16:09:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.005902999999999992 +08/03/2026 16:09:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,256182760 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10872520 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8078464 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,876965888 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9635920 +08/03/2026 16:09:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,917610496 +08/03/2026 16:09:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131158896 +08/03/2026 16:09:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,256182760 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10872520 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8078464 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,876965888 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8864928 +08/03/2026 16:09:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,918614016 +08/03/2026 16:09:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131158896 +08/03/2026 16:09:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,256182760 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10872520 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8078464 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,876965888 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9672952 +08/03/2026 16:09:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,920084480 +08/03/2026 16:09:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131158896 +08/03/2026 16:09:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,256182760 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10872520 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8078464 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,876965888 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8540712 +08/03/2026 16:09:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,920555520 +08/03/2026 16:09:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327767512 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131158896 +08/03/2026 16:09:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:09:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,256182760 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10872520 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,64163136 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8078464 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9834600 +08/03/2026 16:09:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,907214848 +08/03/2026 16:09:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0012850000000000084 +08/03/2026 16:09:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8797768 +08/03/2026 16:09:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,907206656 +08/03/2026 16:09:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9187136 +08/03/2026 16:09:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,907218944 +08/03/2026 16:09:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:09:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9817488 +08/03/2026 16:09:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,907223040 +08/03/2026 16:09:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8576120 +08/03/2026 16:09:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,907223040 +08/03/2026 16:09:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8704856 +08/03/2026 16:09:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,907223040 +08/03/2026 16:09:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8978888 +08/03/2026 16:09:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:09:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8234240 +08/03/2026 16:09:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:09:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10319584 +08/03/2026 16:09:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:09:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9209760 +08/03/2026 16:09:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8205016 +08/03/2026 16:09:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8644840 +08/03/2026 16:09:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8637728 +08/03/2026 16:09:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:09:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8945328 +08/03/2026 16:09:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8465952 +08/03/2026 16:09:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:09:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9103744 +08/03/2026 16:09:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,907218944 +08/03/2026 16:09:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9457512 +08/03/2026 16:09:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:09:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8532600 +08/03/2026 16:09:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8304392 +08/03/2026 16:09:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8370024 +08/03/2026 16:09:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8683296 +08/03/2026 16:09:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:09:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9132224 +08/03/2026 16:09:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,907227136 +08/03/2026 16:09:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8985968 +08/03/2026 16:09:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,907231232 +08/03/2026 16:09:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,257496504 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,64255232 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,251127904 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14207232 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81202752 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8917080 +08/03/2026 16:09:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,905641984 +08/03/2026 16:09:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00619900000000001 +08/03/2026 16:09:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:09:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9533776 +08/03/2026 16:09:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,905641984 +08/03/2026 16:09:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:09:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8662072 +08/03/2026 16:09:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,905646080 +08/03/2026 16:09:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8955744 +08/03/2026 16:09:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,905646080 +08/03/2026 16:09:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8381224 +08/03/2026 16:09:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,905646080 +08/03/2026 16:09:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8691280 +08/03/2026 16:09:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,905646080 +08/03/2026 16:09:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:09:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9823696 +08/03/2026 16:09:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,905809920 +08/03/2026 16:09:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:09:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9313976 +08/03/2026 16:09:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,905809920 +08/03/2026 16:09:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9449976 +08/03/2026 16:09:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,905809920 +08/03/2026 16:09:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:09:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9037088 +08/03/2026 16:09:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,905809920 +08/03/2026 16:09:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9117088 +08/03/2026 16:09:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,905809920 +08/03/2026 16:09:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10225320 +08/03/2026 16:09:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,905818112 +08/03/2026 16:09:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9923024 +08/03/2026 16:09:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,905818112 +08/03/2026 16:09:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:09:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8078232 +08/03/2026 16:09:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,905818112 +08/03/2026 16:09:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:09:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9044056 +08/03/2026 16:09:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,905818112 +08/03/2026 16:09:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9171176 +08/03/2026 16:09:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,905814016 +08/03/2026 16:09:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8997720 +08/03/2026 16:09:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,905830400 +08/03/2026 16:09:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:09:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10058496 +08/03/2026 16:09:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,905838592 +08/03/2026 16:09:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8868792 +08/03/2026 16:09:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,905842688 +08/03/2026 16:09:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9140712 +08/03/2026 16:09:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,905846784 +08/03/2026 16:09:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9013728 +08/03/2026 16:09:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,905850880 +08/03/2026 16:09:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8116872 +08/03/2026 16:09:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,905850880 +08/03/2026 16:09:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8925400 +08/03/2026 16:09:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,905850880 +08/03/2026 16:09:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:09:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9669032 +08/03/2026 16:09:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,905850880 +08/03/2026 16:09:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:09:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:09:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9164832 +08/03/2026 16:09:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,905846784 +08/03/2026 16:09:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:09:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:09:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:09:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:09:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:09:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8458000 +08/03/2026 16:10:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,905854976 +08/03/2026 16:10:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:10:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8879328 +08/03/2026 16:10:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,905863168 +08/03/2026 16:10:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8096176 +08/03/2026 16:10:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,905863168 +08/03/2026 16:10:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9903656 +08/03/2026 16:10:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,905875456 +08/03/2026 16:10:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:10:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8662232 +08/03/2026 16:10:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,905875456 +08/03/2026 16:10:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8165488 +08/03/2026 16:10:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,905887744 +08/03/2026 16:10:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9051832 +08/03/2026 16:10:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,906838016 +08/03/2026 16:10:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:10:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8673632 +08/03/2026 16:10:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,907395072 +08/03/2026 16:10:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:10:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,865316864 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8466672 +08/03/2026 16:10:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,907395072 +08/03/2026 16:10:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,222371360 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,97338864 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,221155608 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21510928 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63440208 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9386776 +08/03/2026 16:10:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,907653120 +08/03/2026 16:10:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.007839999999999986 +08/03/2026 16:10:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:10:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9537656 +08/03/2026 16:10:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,907653120 +08/03/2026 16:10:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8188192 +08/03/2026 16:10:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,907653120 +08/03/2026 16:10:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8350672 +08/03/2026 16:10:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,907653120 +08/03/2026 16:10:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:10:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9161752 +08/03/2026 16:10:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,907657216 +08/03/2026 16:10:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9089328 +08/03/2026 16:10:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,907661312 +08/03/2026 16:10:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8901912 +08/03/2026 16:10:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,907653120 +08/03/2026 16:10:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9065584 +08/03/2026 16:10:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,907665408 +08/03/2026 16:10:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8590424 +08/03/2026 16:10:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,907669504 +08/03/2026 16:10:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9390136 +08/03/2026 16:10:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,907681792 +08/03/2026 16:10:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8967032 +08/03/2026 16:10:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,907681792 +08/03/2026 16:10:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8818816 +08/03/2026 16:10:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,907681792 +08/03/2026 16:10:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:10:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:10:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8171280 +08/03/2026 16:10:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,907681792 +08/03/2026 16:10:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9293864 +08/03/2026 16:10:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,907681792 +08/03/2026 16:10:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8933968 +08/03/2026 16:10:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,907689984 +08/03/2026 16:10:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:10:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9938056 +08/03/2026 16:10:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,907694080 +08/03/2026 16:10:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:10:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9522552 +08/03/2026 16:10:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,907698176 +08/03/2026 16:10:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8832848 +08/03/2026 16:10:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,907702272 +08/03/2026 16:10:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8907528 +08/03/2026 16:10:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,907702272 +08/03/2026 16:10:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9711192 +08/03/2026 16:10:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,907956224 +08/03/2026 16:10:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8593128 +08/03/2026 16:10:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,908242944 +08/03/2026 16:10:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9502776 +08/03/2026 16:10:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,908247040 +08/03/2026 16:10:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8769688 +08/03/2026 16:10:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,908247040 +08/03/2026 16:10:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9856432 +08/03/2026 16:10:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,908533760 +08/03/2026 16:10:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8917984 +08/03/2026 16:10:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,908976128 +08/03/2026 16:10:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9445088 +08/03/2026 16:10:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,909303808 +08/03/2026 16:10:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9867504 +08/03/2026 16:10:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,910028800 +08/03/2026 16:10:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9850648 +08/03/2026 16:10:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,912146432 +08/03/2026 16:10:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8169016 +08/03/2026 16:10:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,912146432 +08/03/2026 16:10:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9338448 +08/03/2026 16:10:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,912879616 +08/03/2026 16:10:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:10:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10910576 +08/03/2026 16:10:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,915001344 +08/03/2026 16:10:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10601992 +08/03/2026 16:10:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,918745088 +08/03/2026 16:10:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8384776 +08/03/2026 16:10:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,923389952 +08/03/2026 16:10:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9486200 +08/03/2026 16:10:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,930709504 +08/03/2026 16:10:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,864911360 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8059656 +08/03/2026 16:10:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,938737664 +08/03/2026 16:10:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,208121480 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,133827536 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131324672 +08/03/2026 16:10:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:10:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,207051816 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,25680256 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30337552 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,896917504 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8250264 +08/03/2026 16:10:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,939888640 +08/03/2026 16:10:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142408496 +08/03/2026 16:10:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.007204999999999989 +08/03/2026 16:10:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,202874096 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21803616 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6955824 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,896917504 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9560160 +08/03/2026 16:10:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,941363200 +08/03/2026 16:10:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,327756304 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142408496 +08/03/2026 16:10:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,202874096 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21803616 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,91747712 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6955824 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8999528 +08/03/2026 16:10:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,926498816 +08/03/2026 16:10:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014300000000000146 +08/03/2026 16:10:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.109375 +08/03/2026 16:10:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.0625 +08/03/2026 16:10:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8408240 +08/03/2026 16:10:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,926498816 +08/03/2026 16:10:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8467128 +08/03/2026 16:10:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,926498816 +08/03/2026 16:10:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9180384 +08/03/2026 16:10:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,926498816 +08/03/2026 16:10:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9261968 +08/03/2026 16:10:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,926498816 +08/03/2026 16:10:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8413208 +08/03/2026 16:10:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,926498816 +08/03/2026 16:10:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8825576 +08/03/2026 16:10:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,926498816 +08/03/2026 16:10:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9565536 +08/03/2026 16:10:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,926502912 +08/03/2026 16:10:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8785752 +08/03/2026 16:10:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,926494720 +08/03/2026 16:10:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:10:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8520576 +08/03/2026 16:10:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,926502912 +08/03/2026 16:10:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:10:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8186824 +08/03/2026 16:10:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,926507008 +08/03/2026 16:10:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:10:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10649336 +08/03/2026 16:10:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,926511104 +08/03/2026 16:10:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9921272 +08/03/2026 16:10:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,926511104 +08/03/2026 16:10:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:10:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,7941088 +08/03/2026 16:10:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,926511104 +08/03/2026 16:10:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:10:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:10:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:10:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:10:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:10:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,7967920 +08/03/2026 16:11:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,926511104 +08/03/2026 16:11:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:11:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9387112 +08/03/2026 16:11:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,926511104 +08/03/2026 16:11:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9430192 +08/03/2026 16:11:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,926511104 +08/03/2026 16:11:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:11:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9348576 +08/03/2026 16:11:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,926515200 +08/03/2026 16:11:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9126976 +08/03/2026 16:11:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,926515200 +08/03/2026 16:11:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:11:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:11:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8714720 +08/03/2026 16:11:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,926515200 +08/03/2026 16:11:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9046808 +08/03/2026 16:11:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,926515200 +08/03/2026 16:11:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:11:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9882760 +08/03/2026 16:11:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,926515200 +08/03/2026 16:11:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9877504 +08/03/2026 16:11:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,926515200 +08/03/2026 16:11:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9736792 +08/03/2026 16:11:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,926732288 +08/03/2026 16:11:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9487168 +08/03/2026 16:11:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,926887936 +08/03/2026 16:11:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8726400 +08/03/2026 16:11:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,927440896 +08/03/2026 16:11:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8060104 +08/03/2026 16:11:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,928104448 +08/03/2026 16:11:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9937856 +08/03/2026 16:11:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,928636928 +08/03/2026 16:11:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:11:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10230384 +08/03/2026 16:11:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,929800192 +08/03/2026 16:11:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:11:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8719040 +08/03/2026 16:11:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,932020224 +08/03/2026 16:11:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9205768 +08/03/2026 16:11:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,936570880 +08/03/2026 16:11:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:11:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,877158400 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8844408 +08/03/2026 16:11:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,942153728 +08/03/2026 16:11:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,203795032 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162091160 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,196745784 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,60668008 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90495672 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9365808 +08/03/2026 16:11:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,942600192 +08/03/2026 16:11:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.007509999999999989 +08/03/2026 16:11:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9160840 +08/03/2026 16:11:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,942600192 +08/03/2026 16:11:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9422576 +08/03/2026 16:11:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,942600192 +08/03/2026 16:11:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:11:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9069384 +08/03/2026 16:11:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,942600192 +08/03/2026 16:11:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9351808 +08/03/2026 16:11:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,942592000 +08/03/2026 16:11:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9579672 +08/03/2026 16:11:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,942555136 +08/03/2026 16:11:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:11:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8981064 +08/03/2026 16:11:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,942555136 +08/03/2026 16:11:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8674920 +08/03/2026 16:11:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,942555136 +08/03/2026 16:11:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8783848 +08/03/2026 16:11:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,942555136 +08/03/2026 16:11:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8520040 +08/03/2026 16:11:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,942555136 +08/03/2026 16:11:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:11:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9055744 +08/03/2026 16:11:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10157744 +08/03/2026 16:11:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8561824 +08/03/2026 16:11:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,942555136 +08/03/2026 16:11:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8503912 +08/03/2026 16:11:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:11:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8577408 +08/03/2026 16:11:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8490016 +08/03/2026 16:11:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9134328 +08/03/2026 16:11:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8859912 +08/03/2026 16:11:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,942567424 +08/03/2026 16:11:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.90625 +08/03/2026 16:11:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8783632 +08/03/2026 16:11:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,942567424 +08/03/2026 16:11:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9056672 +08/03/2026 16:11:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,942559232 +08/03/2026 16:11:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8525240 +08/03/2026 16:11:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8435024 +08/03/2026 16:11:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,942571520 +08/03/2026 16:11:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:11:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8350712 +08/03/2026 16:11:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,942571520 +08/03/2026 16:11:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8603816 +08/03/2026 16:11:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,942571520 +08/03/2026 16:11:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9592064 +08/03/2026 16:11:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,942571520 +08/03/2026 16:11:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9076104 +08/03/2026 16:11:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,942571520 +08/03/2026 16:11:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:11:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9324600 +08/03/2026 16:11:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,942571520 +08/03/2026 16:11:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8762016 +08/03/2026 16:11:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,942563328 +08/03/2026 16:11:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8642152 +08/03/2026 16:11:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,942571520 +08/03/2026 16:11:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:11:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,900247552 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8888752 +08/03/2026 16:11:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,942579712 +08/03/2026 16:11:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,220606864 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,162088512 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,219639992 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,28611480 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59300056 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8532672 +08/03/2026 16:11:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,942579712 +08/03/2026 16:11:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0068070000000000075 +08/03/2026 16:11:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.0625 +08/03/2026 16:11:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9081776 +08/03/2026 16:11:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,942579712 +08/03/2026 16:11:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:11:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9834664 +08/03/2026 16:11:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,942579712 +08/03/2026 16:11:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:11:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8766160 +08/03/2026 16:11:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,942579712 +08/03/2026 16:11:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:11:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10301112 +08/03/2026 16:11:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,942579712 +08/03/2026 16:11:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8095048 +08/03/2026 16:11:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,942579712 +08/03/2026 16:11:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:11:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:11:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9767216 +08/03/2026 16:11:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,942583808 +08/03/2026 16:11:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:11:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10118320 +08/03/2026 16:11:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,942596096 +08/03/2026 16:11:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9428808 +08/03/2026 16:11:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,942596096 +08/03/2026 16:11:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:11:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9134264 +08/03/2026 16:11:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,942596096 +08/03/2026 16:11:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:11:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8465912 +08/03/2026 16:11:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,942596096 +08/03/2026 16:11:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:11:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8802064 +08/03/2026 16:11:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,942596096 +08/03/2026 16:11:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:11:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:11:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:11:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:11:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:11:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9244296 +08/03/2026 16:12:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,942837760 +08/03/2026 16:12:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10000488 +08/03/2026 16:12:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,942845952 +08/03/2026 16:12:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9183792 +08/03/2026 16:12:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,943075328 +08/03/2026 16:12:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:12:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9216408 +08/03/2026 16:12:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,943083520 +08/03/2026 16:12:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8345728 +08/03/2026 16:12:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,943087616 +08/03/2026 16:12:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8080504 +08/03/2026 16:12:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,943087616 +08/03/2026 16:12:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9629864 +08/03/2026 16:12:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,943570944 +08/03/2026 16:12:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9526320 +08/03/2026 16:12:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,943882240 +08/03/2026 16:12:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9035848 +08/03/2026 16:12:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,944156672 +08/03/2026 16:12:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:12:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8188928 +08/03/2026 16:12:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,944156672 +08/03/2026 16:12:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:12:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8835912 +08/03/2026 16:12:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,944156672 +08/03/2026 16:12:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8548872 +08/03/2026 16:12:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,944386048 +08/03/2026 16:12:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10119528 +08/03/2026 16:12:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,945311744 +08/03/2026 16:12:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8042472 +08/03/2026 16:12:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,945311744 +08/03/2026 16:12:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8355240 +08/03/2026 16:12:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,945311744 +08/03/2026 16:12:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8644944 +08/03/2026 16:12:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,945692672 +08/03/2026 16:12:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9108424 +08/03/2026 16:12:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,947580928 +08/03/2026 16:12:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8006408 +08/03/2026 16:12:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,948404224 +08/03/2026 16:12:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,899215360 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9838056 +08/03/2026 16:12:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,950939648 +08/03/2026 16:12:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,196776800 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,198287464 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,141671144 +08/03/2026 16:12:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:12:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,195846600 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36281792 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,33954088 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9260576 +08/03/2026 16:12:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,950521856 +08/03/2026 16:12:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.007334000000000007 +08/03/2026 16:12:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8157392 +08/03/2026 16:12:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,950521856 +08/03/2026 16:12:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8767720 +08/03/2026 16:12:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,950521856 +08/03/2026 16:12:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:12:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8629920 +08/03/2026 16:12:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9807840 +08/03/2026 16:12:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8294512 +08/03/2026 16:12:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,950517760 +08/03/2026 16:12:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8932912 +08/03/2026 16:12:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:12:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9386632 +08/03/2026 16:12:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:12:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8959888 +08/03/2026 16:12:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8763200 +08/03/2026 16:12:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8705696 +08/03/2026 16:12:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8361776 +08/03/2026 16:12:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:12:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9100288 +08/03/2026 16:12:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9124360 +08/03/2026 16:12:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10614568 +08/03/2026 16:12:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8636376 +08/03/2026 16:12:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9085136 +08/03/2026 16:12:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9045944 +08/03/2026 16:12:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,950517760 +08/03/2026 16:12:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9423488 +08/03/2026 16:12:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,950525952 +08/03/2026 16:12:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:12:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9222344 +08/03/2026 16:12:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,950530048 +08/03/2026 16:12:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9089656 +08/03/2026 16:12:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,950530048 +08/03/2026 16:12:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:12:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8465088 +08/03/2026 16:12:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,950530048 +08/03/2026 16:12:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9602256 +08/03/2026 16:12:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,950530048 +08/03/2026 16:12:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10207656 +08/03/2026 16:12:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,950530048 +08/03/2026 16:12:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8871568 +08/03/2026 16:12:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,950521856 +08/03/2026 16:12:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10269816 +08/03/2026 16:12:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,952094720 +08/03/2026 16:12:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9131912 +08/03/2026 16:12:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,956043264 +08/03/2026 16:12:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8104416 +08/03/2026 16:12:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,959778816 +08/03/2026 16:12:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9442632 +08/03/2026 16:12:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,965668864 +08/03/2026 16:12:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,906731520 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10912912 +08/03/2026 16:12:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,972484608 +08/03/2026 16:12:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,184824816 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,227860088 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,306681792 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:12:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,183770408 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,124733464 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,119232208 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90751448 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10142584 +08/03/2026 16:12:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.016549000000000008 +08/03/2026 16:12:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.078125 +08/03/2026 16:12:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,989523968 +08/03/2026 16:12:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:12:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:12:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:12:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:12:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:12:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:12:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:12:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:12:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:12:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:12:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:12:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:13:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:13:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:13:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:13:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:13:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,989532160 +08/03/2026 16:13:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,989523968 +08/03/2026 16:13:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,989540352 +08/03/2026 16:13:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,945811456 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,989540352 +08/03/2026 16:13:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,322271952 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,29961448 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332961192 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,142616920 +08/03/2026 16:13:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,320902312 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1285224 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,71403792 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60105288 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,983379968 +08/03/2026 16:13:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.006061999999999984 +08/03/2026 16:13:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:13:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0015946000000000016 +08/03/2026 16:13:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,124 +08/03/2026 16:13:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,983379968 +08/03/2026 16:13:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:13:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:13:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,983384064 +08/03/2026 16:13:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,983384064 +08/03/2026 16:13:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:13:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:13:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:13:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:13:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:13:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,983339008 +08/03/2026 16:13:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:13:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,983343104 +08/03/2026 16:13:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,307156296 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,48876360 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,305748168 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3358376 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89656856 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,981884928 +08/03/2026 16:13:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.006780000000000008 +08/03/2026 16:13:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,981884928 +08/03/2026 16:13:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:13:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,981889024 +08/03/2026 16:13:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,981889024 +08/03/2026 16:13:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:13:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,981893120 +08/03/2026 16:13:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:13:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:13:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,981889024 +08/03/2026 16:13:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:13:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:13:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:13:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,981889024 +08/03/2026 16:13:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:13:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,981897216 +08/03/2026 16:13:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:13:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,981901312 +08/03/2026 16:13:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:13:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:13:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:13:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:13:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:13:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:13:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,981901312 +08/03/2026 16:14:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,981909504 +08/03/2026 16:14:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:14:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.046875 +08/03/2026 16:14:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,981909504 +08/03/2026 16:14:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,981917696 +08/03/2026 16:14:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,981909504 +08/03/2026 16:14:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,981917696 +08/03/2026 16:14:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:14:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,981917696 +08/03/2026 16:14:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,981917696 +08/03/2026 16:14:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:14:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:14:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,981917696 +08/03/2026 16:14:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:14:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,982933504 +08/03/2026 16:14:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,983244800 +08/03/2026 16:14:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:14:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,983744512 +08/03/2026 16:14:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:14:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,983744512 +08/03/2026 16:14:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938119168 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,984039424 +08/03/2026 16:14:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,273764952 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,78449392 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,138715976 +08/03/2026 16:14:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,272468896 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4178656 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,57036648 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,982519808 +08/03/2026 16:14:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.008747000000000005 +08/03/2026 16:14:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,983171072 +08/03/2026 16:14:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,983699456 +08/03/2026 16:14:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:14:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.046875 +08/03/2026 16:14:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,984162304 +08/03/2026 16:14:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,984313856 +08/03/2026 16:14:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,984604672 +08/03/2026 16:14:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,984719360 +08/03/2026 16:14:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,985899008 +08/03/2026 16:14:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,985899008 +08/03/2026 16:14:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:14:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:14:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,986152960 +08/03/2026 16:14:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,986411008 +08/03/2026 16:14:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,987181056 +08/03/2026 16:14:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,987181056 +08/03/2026 16:14:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,988127232 +08/03/2026 16:14:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,988393472 +08/03/2026 16:14:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,988393472 +08/03/2026 16:14:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:14:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,988532736 +08/03/2026 16:14:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:14:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,988762112 +08/03/2026 16:14:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,989659136 +08/03/2026 16:14:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,989941760 +08/03/2026 16:14:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,989941760 +08/03/2026 16:14:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,990244864 +08/03/2026 16:14:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:14:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,990593024 +08/03/2026 16:14:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:14:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,990593024 +08/03/2026 16:14:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:14:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,991084544 +08/03/2026 16:14:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,991219712 +08/03/2026 16:14:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:14:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,991977472 +08/03/2026 16:14:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:14:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,938811392 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,992702464 +08/03/2026 16:14:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,241821192 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,111981352 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,332955264 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140919344 +08/03/2026 16:14:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:14:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:14:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:14:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,240738712 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5513552 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,88085384 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:14:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,27793808 diff --git a/src/ZeroGC/results/raw/gcperfsim-cache_workstation.csv b/src/ZeroGC/results/raw/gcperfsim-cache_workstation.csv new file mode 100644 index 00000000000..6652e32b2c5 --- /dev/null +++ b/src/ZeroGC/results/raw/gcperfsim-cache_workstation.csv @@ -0,0 +1,17213 @@ +Timestamp,Provider,Counter Name,Counter Type,Mean/Increment +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,305838576 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13253416 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,10529824 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,33092368 +08/03/2026 15:54:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,404971520 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,368717824 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24660032 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13231480 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,57160 +08/03/2026 15:54:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5184 +08/03/2026 15:54:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0705211 +08/03/2026 15:54:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,17494 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0034189999999999984 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8190488 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,315856720 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11969640 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,1930792 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,33975968 +08/03/2026 15:54:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:54:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,406077440 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,369668096 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24305048 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11937656 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,21976 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5312 +08/03/2026 15:54:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,129 +08/03/2026 15:54:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:54:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0465845 +08/03/2026 15:54:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,10110 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0019500000000000073 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9176616 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,315856720 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12665808 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3736648 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,35087648 +08/03/2026 15:54:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:54:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:54:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,411500544 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,374972416 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24305048 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12618528 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39296 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5504 +08/03/2026 15:54:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,66 +08/03/2026 15:54:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:54:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.040129199999999976 +08/03/2026 15:54:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,7992 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9874464 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,315856720 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12665808 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3736648 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,35087648 +08/03/2026 15:54:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:54:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:54:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,413286400 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,374972416 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24305048 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12618528 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39296 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5504 +08/03/2026 15:54:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,108 +08/03/2026 15:54:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.022290399999999988 +08/03/2026 15:54:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,3216 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0012709999999999944 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9422576 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,315856720 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8970720 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8288448 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,37608752 +08/03/2026 15:54:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:54:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,416235520 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,377495552 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24305048 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8936288 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2718832 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5824 +08/03/2026 15:54:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,36 +08/03/2026 15:54:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:54:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.034875199999999995 +08/03/2026 15:54:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,5177 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8773456 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,315856720 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8970720 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8288448 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,37608752 +08/03/2026 15:54:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 15:54:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,417095680 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,377495552 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24305048 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8936288 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2718832 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5824 +08/03/2026 15:54:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,74 +08/03/2026 15:54:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.002789600000000003 +08/03/2026 15:54:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,420 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0012910000000000005 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9234912 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,315856720 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13140368 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8288448 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,39306912 +08/03/2026 15:54:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:54:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,422293504 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,383385600 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24305048 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13081328 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,971952 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6144 +08/03/2026 15:54:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,7 +08/03/2026 15:54:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:54:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.001542200000000049 +08/03/2026 15:54:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,253 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9659176 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,315856720 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13140368 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8288448 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,39306912 +08/03/2026 15:54:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:54:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,423694336 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,383385600 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24305048 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13081328 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,971952 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6144 +08/03/2026 15:54:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,6 +08/03/2026 15:54:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.010725999999999958 +08/03/2026 15:54:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1249 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003240999999999994 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9312800 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,321984688 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16651776 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4094392 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,41421472 +08/03/2026 15:54:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:54:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,424796160 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,385499136 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,23252088 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16563928 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2325648 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6464 +08/03/2026 15:54:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,16 +08/03/2026 15:54:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:54:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0062770000000000326 +08/03/2026 15:54:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1696 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8414952 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,321984688 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16651776 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4094392 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,41421472 +08/03/2026 15:54:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:54:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:54:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,425119744 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,385499136 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,23252088 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16563928 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2325648 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6464 +08/03/2026 15:54:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,26 +08/03/2026 15:54:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0012861000000000122 +08/03/2026 15:54:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,224 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016670000000000018 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9951080 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,321984688 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16651776 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4094392 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,42759104 +08/03/2026 15:54:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:54:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,426766336 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,386904064 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,23252088 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16536512 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,521064 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6656 +08/03/2026 15:54:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,4 +08/03/2026 15:54:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:54:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.002904199999999968 +08/03/2026 15:54:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,694 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0012889999999999985 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8732192 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,321984688 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12506632 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8337456 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,44913920 +08/03/2026 15:54:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:54:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:54:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,427356160 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,389124096 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,23252088 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12395408 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2921576 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6976 +08/03/2026 15:54:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,8 +08/03/2026 15:54:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:54:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.00045919999999999295 +08/03/2026 15:54:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,59 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8563944 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,321984688 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12506632 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8337456 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,44913920 +08/03/2026 15:54:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:54:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,427778048 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,389124096 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,23252088 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12395408 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2921576 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,6976 +08/03/2026 15:54:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:54:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0006044000000000049 +08/03/2026 15:54:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,59 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014070000000000055 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9375552 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,321984688 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7693568 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16638240 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,46444192 +08/03/2026 15:54:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:54:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:54:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,433070080 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,394784768 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,23252088 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7649544 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9302376 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7232 +08/03/2026 15:54:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,5 +08/03/2026 15:54:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:54:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9991336 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,321984688 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7693568 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16638240 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,46444192 +08/03/2026 15:54:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:54:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,437739520 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,394784768 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,23252088 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7649544 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9302376 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7232 +08/03/2026 15:54:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:54:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.001968100000000028 +08/03/2026 15:54:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,318 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003359000000000001 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9184624 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,335289720 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9479560 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8299056 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,48911552 +08/03/2026 15:54:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:54:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:54:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,444407808 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,405573632 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29347912 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9450728 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6502064 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7616 +08/03/2026 15:54:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,7 +08/03/2026 15:54:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:54:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0035908999999999525 +08/03/2026 15:54:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1125 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8897312 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,335289720 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9479560 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8299056 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,48911552 +08/03/2026 15:54:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 15:54:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:54:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,445259776 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,405573632 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29347912 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9450728 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6502064 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7616 +08/03/2026 15:54:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:54:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:54:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,15 +08/03/2026 15:54:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:54:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.006349500000000008 +08/03/2026 15:55:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1216 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016660000000000008 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8903528 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12767104 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4129408 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,50778688 +08/03/2026 15:55:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,449904640 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,411635712 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31780592 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12720928 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2303552 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7936 +08/03/2026 15:55:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,12 +08/03/2026 15:55:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0002647000000000066 +08/03/2026 15:55:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,7 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8908440 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12767104 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4129408 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,50778688 +08/03/2026 15:55:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 15:55:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,450678784 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,411635712 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31780592 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12720928 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2303552 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7936 +08/03/2026 15:55:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:55:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0009533999999999931 +08/03/2026 15:55:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,163 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001471 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8632928 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13750600 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4129408 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,51574192 +08/03/2026 15:55:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:55:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,451063808 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,412430336 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31780592 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13679912 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,551728 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8064 +08/03/2026 15:55:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,2 +08/03/2026 15:55:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0012385000000000312 +08/03/2026 15:55:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,186 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9273192 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13750600 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4129408 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,51574192 +08/03/2026 15:55:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,452136960 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,412430336 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31780592 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13679912 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,551728 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8064 +08/03/2026 15:55:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,2 +08/03/2026 15:55:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0045835999999999655 +08/03/2026 15:55:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,370 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0012869999999999965 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8756688 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10547304 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7717328 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,52999120 +08/03/2026 15:55:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,452554752 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,413921280 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31780592 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10489112 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2251576 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8256 +08/03/2026 15:55:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,6 +08/03/2026 15:55:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.00014030000000003762 +08/03/2026 15:55:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,6 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001348000000000002 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9293688 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12596448 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7717328 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,53784832 +08/03/2026 15:55:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,457674752 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,418836480 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31780592 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12518720 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,390568 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8384 +08/03/2026 15:55:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:55:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9686936 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12596448 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7717328 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,53784832 +08/03/2026 15:55:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,459223040 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,418836480 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31780592 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12518720 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,390568 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8384 +08/03/2026 15:55:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0029620000000000063 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10288024 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,17588784 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4129408 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,57614336 +08/03/2026 15:55:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,461369344 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,422731776 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24671184 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,17455824 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2257736 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9024 +08/03/2026 15:55:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8753416 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,17588784 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,4129408 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,57614336 +08/03/2026 15:55:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,461959168 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,422731776 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24671184 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,17455824 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2257736 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9024 +08/03/2026 15:55:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0013769999999999893 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10036368 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9896112 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11822080 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,59299984 +08/03/2026 15:55:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,463646720 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,424415232 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24671184 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9824712 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8057712 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9344 +08/03/2026 15:55:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8920368 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9896112 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11822080 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,59299984 +08/03/2026 15:55:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:55:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,465965056 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,424415232 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24671184 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9824712 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8057712 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9344 +08/03/2026 15:55:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0013179999999999997 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8894000 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7385848 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15739520 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,61152896 +08/03/2026 15:55:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,469483520 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,430465024 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24671184 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7337816 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10167760 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9664 +08/03/2026 15:55:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.001521899999999965 +08/03/2026 15:55:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,139 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8896848 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7385848 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15739520 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,61152896 +08/03/2026 15:55:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,473325568 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,430465024 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24671184 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7337816 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10167760 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9664 +08/03/2026 15:55:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,9 +08/03/2026 15:55:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0102236 +08/03/2026 15:55:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1916 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0013390000000000069 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8979440 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,339459368 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10393832 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15739520 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,62592720 +08/03/2026 15:55:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,475082752 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,436031488 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,24671184 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10330640 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8350440 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9920 +08/03/2026 15:55:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,36 +08/03/2026 15:55:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.012309100000000017 +08/03/2026 15:55:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1985 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0033089999999999925 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8742784 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8813080 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7453448 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,64060320 +08/03/2026 15:55:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,475865088 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,437567488 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8764688 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5562592 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10176 +08/03/2026 15:55:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,49 +08/03/2026 15:55:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.00032890000000002084 +08/03/2026 15:55:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,33 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8655424 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8813080 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7453448 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,64060320 +08/03/2026 15:55:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,476278784 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,437567488 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8764688 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5562592 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10176 +08/03/2026 15:55:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:55:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001482000000000011 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8786432 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12390864 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7453448 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,64479232 +08/03/2026 15:55:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:55:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,480903168 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,442114048 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12313944 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3676312 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10240 +08/03/2026 15:55:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9075384 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12390864 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7453448 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,64479232 +08/03/2026 15:55:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 15:55:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,481705984 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,442114048 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12313944 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3676312 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10240 +08/03/2026 15:55:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0013069999999999887 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10000840 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16103336 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7453448 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,66526416 +08/03/2026 15:55:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,483598336 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,444227584 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15997408 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1918672 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10560 +08/03/2026 15:55:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9558480 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16103336 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7453448 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,66526416 +08/03/2026 15:55:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 15:55:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,484909056 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,444227584 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15997408 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1918672 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10560 +08/03/2026 15:55:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001350000000000004 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9355240 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8189520 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15779680 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,69268240 +08/03/2026 15:55:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:55:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,486375424 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,446971904 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8153224 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8298712 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10944 +08/03/2026 15:55:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9267864 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,351767680 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8189520 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15779680 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,69268240 +08/03/2026 15:55:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,493854720 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,446971904 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29722624 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8153224 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8298712 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10944 +08/03/2026 15:55:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003170000000000006 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8793440 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,363993856 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15579520 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,71544656 +08/03/2026 15:55:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,496168960 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,457572352 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34645248 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15514936 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1723192 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,11264 +08/03/2026 15:55:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014349999999999918 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9339016 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,363993856 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11559480 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7900320 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,73038768 +08/03/2026 15:55:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,497340416 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,459128832 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34645248 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11519304 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4159680 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,11520 +08/03/2026 15:55:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9568328 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,363993856 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11559480 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7900320 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,73038768 +08/03/2026 15:55:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,498921472 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,459128832 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34645248 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11519304 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4159680 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,11520 +08/03/2026 15:55:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001355000000000009 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9235424 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,363993856 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14575984 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7900320 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,75457760 +08/03/2026 15:55:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,504131584 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,465678336 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34645248 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14519968 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2346752 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,11936 +08/03/2026 15:55:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9700048 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,363993856 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14575984 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7900320 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,75457760 +08/03/2026 15:55:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 15:55:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,505561088 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,465678336 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34645248 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14519968 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2346752 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,11936 +08/03/2026 15:55:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0013169999999999987 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9602400 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,363993856 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15005240 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7900320 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,77822384 +08/03/2026 15:55:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:55:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,506789888 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,468041728 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34645248 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14934080 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,525472 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12288 +08/03/2026 15:55:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8749528 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,363993856 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15005240 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7900320 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,77822384 +08/03/2026 15:55:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 15:55:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,507117568 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,468041728 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34645248 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14934080 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,525472 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12288 +08/03/2026 15:55:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0033159999999999995 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8973832 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,368152208 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15084320 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,79058560 +08/03/2026 15:55:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 15:55:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,507973632 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,469344256 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31550320 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14985152 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1700992 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12480 +08/03/2026 15:55:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9505704 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,368152208 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15084320 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,79058560 +08/03/2026 15:55:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,509390848 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,469344256 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31550320 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14985152 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1700992 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12480 +08/03/2026 15:55:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0013979999999999965 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8395648 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,368152208 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10978056 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7768464 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,81218272 +08/03/2026 15:55:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,509652992 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,471502848 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31550320 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10897616 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4111592 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12864 +08/03/2026 15:55:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0002605999999999997 +08/03/2026 15:55:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,24 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9349392 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,368152208 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10978056 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7768464 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,81218272 +08/03/2026 15:55:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,514363392 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,471502848 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31550320 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10897616 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4111592 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12864 +08/03/2026 15:55:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:55:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014040000000000025 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8793592 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,368152208 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8931488 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11781776 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,82357520 +08/03/2026 15:55:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,515358720 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,476835840 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31550320 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8878976 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6264872 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12992 +08/03/2026 15:55:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001354999999999995 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8203360 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,368152208 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7262792 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15730016 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,82730112 +08/03/2026 15:55:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,519532544 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,481402880 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31550320 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7239264 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8402472 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,13056 +08/03/2026 15:55:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10467176 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,368152208 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7262792 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15730016 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,82730112 +08/03/2026 15:55:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,521752576 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,481402880 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,31550320 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7239264 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8402472 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,13056 +08/03/2026 15:55:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003145000000000009 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8648856 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10939568 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,85168160 +08/03/2026 15:55:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,526655488 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,487972864 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36409240 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10900648 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1716704 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,13504 +08/03/2026 15:55:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8795616 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10939568 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,85168160 +08/03/2026 15:55:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,527306752 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,487972864 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36409240 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10900648 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1716704 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,13504 +08/03/2026 15:55:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014289999999999997 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8832352 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12992656 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3686440 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,86400656 +08/03/2026 15:55:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:55:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,527704064 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,489205760 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36409240 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12935688 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,46616 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,13760 +08/03/2026 15:55:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9393888 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12992656 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3686440 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,86400656 +08/03/2026 15:55:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,528908288 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,489205760 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36409240 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12935688 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,46616 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,13760 +08/03/2026 15:55:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0013009999999999966 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8898384 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9617144 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7651432 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,87994880 +08/03/2026 15:55:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,529825792 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,490864640 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36409240 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9583320 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2164952 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,14016 +08/03/2026 15:55:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0003313999999999817 +08/03/2026 15:55:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,33 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9812792 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9617144 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7651432 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,87994880 +08/03/2026 15:55:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,534310912 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,490864640 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36409240 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9583320 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2164952 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,14016 +08/03/2026 15:55:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:55:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0014523000000000175 +08/03/2026 15:55:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,139 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0019389999999999963 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8978160 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10564304 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7651432 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,90583648 +08/03/2026 15:55:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:55:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,536264704 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,497582080 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36409240 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10518304 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,318320 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,14400 +08/03/2026 15:55:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,9 +08/03/2026 15:55:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.009487199999999973 +08/03/2026 15:55:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1716 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0031920000000000004 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9089680 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19205744 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,91680072 +08/03/2026 15:55:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,537088000 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,498741248 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19088656 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1693840 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,14560 +08/03/2026 15:55:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,31 +08/03/2026 15:55:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.011640800000000007 +08/03/2026 15:55:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,1435 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8756384 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19205744 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,91680072 +08/03/2026 15:55:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,537702400 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,498741248 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19088656 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1693840 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,14560 +08/03/2026 15:55:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,33 +08/03/2026 15:55:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014540000000000108 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10004080 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15745336 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7141800 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,92966944 +08/03/2026 15:55:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,539447296 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,500031488 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15648608 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3458808 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,14784 +08/03/2026 15:55:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8835160 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15745336 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7141800 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,92966944 +08/03/2026 15:55:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 15:55:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,540274688 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,500031488 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15648608 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3458808 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,14784 +08/03/2026 15:55:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014239999999999808 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8222760 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15750096 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7141800 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,95092704 +08/03/2026 15:55:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,540307456 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,502157312 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15640768 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1609456 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15104 +08/03/2026 15:55:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9047976 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15750096 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7141800 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,95092704 +08/03/2026 15:55:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,541020160 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,502157312 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15640768 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1609456 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15104 +08/03/2026 15:55:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001475000000000004 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8751912 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12129856 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11393696 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,96018680 +08/03/2026 15:55:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,541569024 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,503083008 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12031328 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4009992 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15264 +08/03/2026 15:55:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8592136 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,380220024 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12129856 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11393696 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,96018680 +08/03/2026 15:55:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,544399360 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,503083008 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29257784 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12031328 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4009992 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15264 +08/03/2026 15:55:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003280000000000005 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9603056 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,387634128 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8054648 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11485672 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,96939168 +08/03/2026 15:55:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:55:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,547475456 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,508194816 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29450872 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8020640 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9575752 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15424 +08/03/2026 15:55:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9724632 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,387634128 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8054648 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11485672 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,96939168 +08/03/2026 15:55:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:55:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,557367296 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,508194816 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,29450872 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8020640 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9575752 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15424 +08/03/2026 15:55:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018960000000000088 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8230992 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,395595880 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15141296 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,99896784 +08/03/2026 15:55:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,557535232 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,519475200 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,35541344 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15080560 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1692920 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15872 +08/03/2026 15:55:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:55:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015979999999999883 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8706960 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,395595880 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15448920 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3673816 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100172080 +08/03/2026 15:55:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,558100480 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,519753728 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,35541344 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15361320 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,44472 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15936 +08/03/2026 15:55:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8930048 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,395595880 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15448920 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3673816 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,100172080 +08/03/2026 15:55:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:55:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,558829568 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,519753728 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,35541344 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15361320 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,44472 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15936 +08/03/2026 15:55:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001350999999999991 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9351488 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,395595880 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11413432 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8370232 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,101172272 +08/03/2026 15:55:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,559898624 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,520822784 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,35541344 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11347344 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2918208 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,16064 +08/03/2026 15:55:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8960952 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,395595880 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11413432 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8370232 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,101172272 +08/03/2026 15:55:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:55:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,560816128 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,520822784 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,35541344 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11347344 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2918208 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,16064 +08/03/2026 15:55:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014560000000000128 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9097256 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,395595880 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14387608 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8370232 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,103739488 +08/03/2026 15:55:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:55:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,565587968 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,527581184 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,35541344 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14299864 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1176120 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,16448 +08/03/2026 15:55:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:55:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9069376 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,395595880 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14387608 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8370232 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,103739488 +08/03/2026 15:55:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:55:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 15:55:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:55:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,566521856 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,527581184 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,35541344 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14299864 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1176120 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,16448 +08/03/2026 15:55:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:55:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:55:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:55:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0032310000000000116 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9271704 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,399773664 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10895960 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7543080 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,105032064 +08/03/2026 15:56:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,567545856 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,528875520 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,32661856 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10829608 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5670064 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,16704 +08/03/2026 15:56:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8955976 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,399773664 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10895960 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7543080 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,105032064 +08/03/2026 15:56:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,571805696 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,528875520 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,32661856 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10829608 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5670064 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,16704 +08/03/2026 15:56:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018159999999999843 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8817928 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,403792824 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9330760 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7391328 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,106559472 +08/03/2026 15:56:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,573067264 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,534597632 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,34849456 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9288240 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5565864 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17024 +08/03/2026 15:56:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018710000000000115 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8342824 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12312704 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,107051664 +08/03/2026 15:56:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,577232896 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,539217920 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12244760 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1655784 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17088 +08/03/2026 15:56:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9309728 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12312704 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,107051664 +08/03/2026 15:56:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,578306048 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,539217920 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12244760 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1655784 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17088 +08/03/2026 15:56:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015409999999999868 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9038000 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9966744 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7824816 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,108625504 +08/03/2026 15:56:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,579166208 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,540856320 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9928000 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4049688 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17344 +08/03/2026 15:56:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10669640 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9966744 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7824816 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,108625504 +08/03/2026 15:56:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 15:56:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,581443584 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,540856320 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9928000 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4049688 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17344 +08/03/2026 15:56:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001483000000000012 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8991184 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11540928 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7824816 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,111563920 +08/03/2026 15:56:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,586256384 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,547926016 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11491288 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2200560 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17856 +08/03/2026 15:56:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9221600 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11540928 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7824816 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,111563920 +08/03/2026 15:56:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,587378688 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,547926016 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11491288 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2200560 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17856 +08/03/2026 15:56:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001469999999999999 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9042544 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16227224 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7824816 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,113069856 +08/03/2026 15:56:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,588152832 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,549429248 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16147216 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,391800 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,18112 +08/03/2026 15:56:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9408496 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,407660232 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16227224 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7824816 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,113069856 +08/03/2026 15:56:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,589402112 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,549429248 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,36935696 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16147216 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,391800 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,18112 +08/03/2026 15:56:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.001097500000000029 +08/03/2026 15:56:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,256 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004343999999999987 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9121920 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,411677416 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16337528 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:56:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,589828096 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,551063552 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,122786824 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15327992 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1708272 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,71971968 +08/03/2026 15:56:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:56:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014540000000000108 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9340056 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,411677416 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8351256 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11599960 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:56:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,589832192 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,551063552 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,122786824 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8306056 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7927088 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,71184472 +08/03/2026 15:56:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8885920 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,411677416 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8351256 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11599960 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,592388096 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,551063552 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,122786824 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8306056 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7927088 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,71184472 +08/03/2026 15:56:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015330000000000066 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9391600 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,411677416 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16512192 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11599960 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,598192128 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,559386624 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,122786824 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16449656 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6136048 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69191344 +08/03/2026 15:56:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10462320 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,411677416 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16512192 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11599960 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,598163456 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,559386624 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,122786824 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16449656 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6136048 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69191344 +08/03/2026 15:56:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001457999999999987 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8849280 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,411677416 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12322008 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15792832 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,598179840 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,559452160 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,122786824 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12283400 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8474208 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,66776728 +08/03/2026 15:56:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10135344 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,411677416 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12322008 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15792832 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,600367104 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,559452160 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,122786824 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12283400 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8474208 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,66776728 +08/03/2026 15:56:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0038749999999999896 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9376192 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15988904 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,602357760 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,563580928 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,127777104 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15930752 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1688680 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,64424248 +08/03/2026 15:56:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001375000000000015 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8396632 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16012992 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3648248 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,602382336 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,563646464 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,127777104 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15931848 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,45856 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63396952 +08/03/2026 15:56:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9936248 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16012992 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3648248 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,602390528 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,563646464 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,127777104 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15931848 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,45856 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63396952 +08/03/2026 15:56:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015539999999999998 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10699816 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11884768 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8349480 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,602435584 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,563646464 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,127777104 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11819048 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2946488 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59521224 +08/03/2026 15:56:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10210856 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11884768 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8349480 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,602451968 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,563646464 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,127777104 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11819048 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2946488 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59521224 +08/03/2026 15:56:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00157199999999999 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9084528 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11121696 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12491976 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,606654464 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,567840768 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,127777104 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11080128 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5203288 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,56797536 +08/03/2026 15:56:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8880824 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11121696 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12491976 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,606941184 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,567840768 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,127777104 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11080128 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5203288 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,56797536 +08/03/2026 15:56:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00384000000000001 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8434424 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,22861168 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,610820096 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,571969536 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,120753792 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,22711624 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1645616 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,55559448 +08/03/2026 15:56:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8415528 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,22861168 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:56:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,610824192 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,571969536 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,120753792 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,22711624 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1645616 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,55559448 +08/03/2026 15:56:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015109999999999846 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9657808 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10496760 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16102440 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,610840576 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,571969536 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,120753792 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10460736 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12267880 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,54415008 +08/03/2026 15:56:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8753176 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10496760 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16102440 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,614326272 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,571969536 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,120753792 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10460736 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12267880 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,54415008 +08/03/2026 15:56:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014650000000000218 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8716608 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13595432 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16102440 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,615051264 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,576163840 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,120753792 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13528664 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10443448 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,52865528 +08/03/2026 15:56:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015889999999999793 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8841416 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10478160 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,20106000 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,615092224 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,576229376 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,120753792 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10434624 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12581904 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,51597576 +08/03/2026 15:56:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8613968 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,423856560 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10478160 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,20106000 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,615043072 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,576229376 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,120753792 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10434624 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12581904 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,51597576 +08/03/2026 15:56:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0038660000000000083 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9667096 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15603280 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:56:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,619225088 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,580358144 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15537976 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1734048 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,49659896 +08/03/2026 15:56:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8347312 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15603280 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,619225088 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,580358144 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15537976 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1734048 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,49659896 +08/03/2026 15:56:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015060000000000073 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9031704 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15824016 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3700320 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,619249664 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,580423680 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15727160 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,44160 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,49226984 +08/03/2026 15:56:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9722968 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15824016 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3700320 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,619261952 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,580423680 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15727160 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,44160 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,49226984 +08/03/2026 15:56:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001459999999999989 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9020136 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11967256 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8254456 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,619311104 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,580423680 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11894568 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2734856 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,47070640 +08/03/2026 15:56:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8338288 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11967256 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8254456 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,622071808 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,580423680 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11894568 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2734856 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,47070640 +08/03/2026 15:56:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015680000000000138 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9518688 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10810944 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12432184 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,623505408 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,584617984 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10746568 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5083384 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,46186024 +08/03/2026 15:56:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9651512 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,440224528 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10810944 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12432184 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,627585024 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,584617984 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,129737984 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10746568 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5083384 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,46186024 +08/03/2026 15:56:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0038910000000000056 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9223904 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,448463240 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9624576 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7490776 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,627703808 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,588812288 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,130761536 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9581384 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5604984 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,43065928 +08/03/2026 15:56:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001464999999999994 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8169072 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,448463240 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8882232 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11399264 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,631885824 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,592941056 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,130761536 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8853696 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7634120 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,41832136 +08/03/2026 15:56:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8894360 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,448463240 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8882232 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11399264 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,631885824 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,592941056 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,130761536 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8853696 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7634120 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,41832136 +08/03/2026 15:56:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014029999999999876 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9545736 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,448463240 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12213680 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11399264 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,636080128 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,597135360 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,130761536 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12157816 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5819256 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,40813336 +08/03/2026 15:56:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9730360 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,448463240 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12213680 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11399264 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,636096512 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,597135360 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,130761536 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12157816 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5819256 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,40813336 +08/03/2026 15:56:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015219999999999956 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9360672 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,448463240 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15903352 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11399264 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,636133376 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,597135360 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,130761536 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15819392 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4034808 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,38239368 +08/03/2026 15:56:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8683696 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,448463240 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15903352 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11399264 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,636133376 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,597135360 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,130761536 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15819392 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4034808 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,38239368 +08/03/2026 15:56:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003692000000000001 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8891128 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,456338584 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15977800 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:56:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,636162048 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,597200896 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,131403008 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15858192 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1726352 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,36662664 +08/03/2026 15:56:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9516904 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,456338584 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15977800 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,636166144 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,597200896 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,131403008 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15858192 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1726352 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,36662664 +08/03/2026 15:56:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001472000000000001 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10379968 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,456338584 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7956536 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838376 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,636231680 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,597266432 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,131403008 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7899848 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8168616 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,34606696 +08/03/2026 15:56:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001467999999999997 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9672760 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,456338584 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14381744 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838376 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,644567040 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,605523968 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,131403008 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14304640 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6339408 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30955208 +08/03/2026 15:56:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9806144 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,456338584 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14381744 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838376 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,644575232 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,605523968 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,131403008 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14304640 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6339408 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,30955208 +08/03/2026 15:56:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015080000000000093 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8639016 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,456338584 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15019992 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838376 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,644595712 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,605589504 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,131403008 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14925160 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4506784 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,29309880 +08/03/2026 15:56:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0002982999999999736 +08/03/2026 15:56:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,24 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8587520 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,456338584 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15019992 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838376 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:56:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,644636672 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,605589504 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,131403008 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14925160 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4506784 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,29309880 +08/03/2026 15:56:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 15:56:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0036559999999999926 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9889392 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,460443024 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11184736 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11683624 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:56:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,644661248 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,605589504 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,128389872 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11115688 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9732816 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,28419568 +08/03/2026 15:56:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9691944 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,460443024 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11184736 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11683624 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,645693440 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,605589504 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,128389872 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11115688 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9732816 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,28419568 +08/03/2026 15:56:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001912999999999998 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9313560 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,468602728 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9393032 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7648296 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:56:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:56:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,648835072 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,609783808 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134620744 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9350232 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5757880 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,24621504 +08/03/2026 15:56:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9100928 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,468602728 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9393032 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7648296 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:56:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,651423744 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,609783808 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134620744 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9350232 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5757880 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,24621504 +08/03/2026 15:56:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018830000000000235 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9453640 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,472727104 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15941016 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,652992512 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,613912576 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,136874672 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15878656 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1753744 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,22882296 +08/03/2026 15:56:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:56:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:56:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016519999999999868 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8941656 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,472727104 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16020024 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3647928 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:56:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:56:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:56:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,653033472 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,613978112 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,136874672 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15928672 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,35448 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,21499672 +08/03/2026 15:56:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:56:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:56:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:56:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9787112 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,472727104 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16020024 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3647928 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,653037568 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,613978112 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,136874672 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15928672 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,35448 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,21499672 +08/03/2026 15:57:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014879999999999893 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8800576 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,472727104 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12156008 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8131416 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:57:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,653082624 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,613978112 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,136874672 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12080272 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2639768 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,19115136 +08/03/2026 15:57:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9923480 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,472727104 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12156008 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8131416 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:57:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,653094912 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,613978112 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,136874672 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12080272 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2639768 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,19115136 +08/03/2026 15:57:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001605000000000023 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9174200 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,472727104 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11737944 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12103704 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,657293312 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,618172416 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,136874672 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11677944 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4795528 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17136232 +08/03/2026 15:57:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8924376 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,472727104 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11737944 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12103704 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,658210816 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,618172416 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,136874672 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11677944 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4795528 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,17136232 +08/03/2026 15:57:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0034049999999999914 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9950392 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,476699392 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18935216 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,661491712 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,622366720 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,133702224 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18824392 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1709136 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15245208 +08/03/2026 15:57:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8726248 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,476699392 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18935216 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,661483520 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,622366720 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,133702224 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18824392 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1709136 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,15245208 +08/03/2026 15:57:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016160000000000063 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8874008 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,476699392 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10751496 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11802536 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,661491712 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,622366720 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,133702224 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10691800 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8132488 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,13770040 +08/03/2026 15:57:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001585000000000003 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8798664 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,476699392 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10143632 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15741920 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,665686016 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,626495488 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,133702224 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10094632 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10246984 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12722312 +08/03/2026 15:57:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8706232 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,476699392 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10143632 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15741920 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,665694208 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,626495488 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,133702224 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10094632 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10246984 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,12722312 +08/03/2026 15:57:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015389999999999848 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10246200 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,476699392 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14670536 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15741920 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,669900800 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,630689792 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,133702224 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14599472 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8536120 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10056984 +08/03/2026 15:57:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8996624 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,476699392 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14670536 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15741920 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:57:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,669900800 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,630689792 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,133702224 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14599472 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8536120 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,10056984 +08/03/2026 15:57:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0035390000000000144 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8341064 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,484757360 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15906520 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7545104 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,669933568 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,630755328 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134739488 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15812136 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5642288 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9211928 +08/03/2026 15:57:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8642800 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,484757360 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15906520 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7545104 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,669937664 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,630755328 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134739488 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15812136 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5642288 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,9211928 +08/03/2026 15:57:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001473000000000002 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8610584 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,484757360 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12042000 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11610240 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,669962240 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,630755328 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134739488 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11963144 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7898096 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8254152 +08/03/2026 15:57:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9135944 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,484757360 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12042000 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11610240 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,672026624 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,630755328 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134739488 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11963144 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7898096 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,8254152 +08/03/2026 15:57:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015209999999999946 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9164792 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,484757360 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15419552 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11610240 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,674160640 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,634949632 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134739488 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15313552 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6100184 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7420600 +08/03/2026 15:57:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8862184 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,484757360 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15419552 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11610240 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,674164736 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,634949632 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134739488 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15313552 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6100184 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,7420600 +08/03/2026 15:57:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0020639999999999825 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9076248 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,484757360 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11531224 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15560576 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,674209792 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,634949632 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,134739488 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11451824 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8177312 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,5746056 +08/03/2026 15:57:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0035660000000000136 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8594416 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,496794016 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10001240 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7576816 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,678391808 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,639143936 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,139533376 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9944560 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5814696 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4290984 +08/03/2026 15:57:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8417864 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,496794016 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10001240 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7576816 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,678400000 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,639143936 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,139533376 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9944560 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5814696 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,4290984 +08/03/2026 15:57:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018940000000000068 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8405512 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,500846912 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8271816 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7623392 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,682586112 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,643338240 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141837760 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8238936 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5819904 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3582232 +08/03/2026 15:57:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9077648 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,500846912 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8271816 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7623392 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,114336880 +08/03/2026 15:57:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,682848256 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,643338240 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141837760 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8238936 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5819904 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3582232 +08/03/2026 15:57:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0019589999999999885 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9357912 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13805232 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,115715256 +08/03/2026 15:57:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:57:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,687783936 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,648069120 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144141632 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13751120 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1716808 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3582392 +08/03/2026 15:57:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8925688 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13805232 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,115715256 +08/03/2026 15:57:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,688545792 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,648069120 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144141632 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13751120 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1716808 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3582392 +08/03/2026 15:57:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016130000000000033 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9329032 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15648040 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3645936 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,117361352 +08/03/2026 15:57:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,689696768 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,649605120 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144141632 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15575544 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37696 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3366528 +08/03/2026 15:57:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9263720 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15648040 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3645936 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,117361352 +08/03/2026 15:57:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,690405376 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,649605120 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144141632 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15575544 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37696 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3366528 +08/03/2026 15:57:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001570999999999989 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8915296 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11874184 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8084968 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,119134360 +08/03/2026 15:57:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,691183616 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,651444224 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144141632 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11820224 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2647632 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3163616 +08/03/2026 15:57:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8676072 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11874184 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8084968 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,119134360 +08/03/2026 15:57:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,695558144 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,651444224 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144141632 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11820224 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2647632 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3163616 +08/03/2026 15:57:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016710000000000058 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8682408 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14843336 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8084968 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,120332664 +08/03/2026 15:57:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,696414208 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,656773120 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144141632 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14760256 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,832608 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3163776 +08/03/2026 15:57:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003477000000000008 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9598208 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18772200 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,121635000 +08/03/2026 15:57:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,697970688 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,658141184 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18630424 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1728648 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3164000 +08/03/2026 15:57:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9722320 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18772200 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,121635000 +08/03/2026 15:57:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,699727872 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,658141184 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18630424 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1728648 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3164000 +08/03/2026 15:57:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001590000000000008 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8596600 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11065608 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11348896 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,124649112 +08/03/2026 15:57:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,700317696 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,661151744 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10981280 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7657968 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3164480 +08/03/2026 15:57:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10329800 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11065608 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11348896 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,124649112 +08/03/2026 15:57:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,702328832 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,661151744 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10981280 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7657968 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3164480 +08/03/2026 15:57:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016169999999999796 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8505920 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11401040 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15292104 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,126809800 +08/03/2026 15:57:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,706834432 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,667508736 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11340888 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9734008 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3164800 +08/03/2026 15:57:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9851368 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11401040 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15292104 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,126809800 +08/03/2026 15:57:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:57:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,709554176 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,667508736 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11340888 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9734008 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3164800 +08/03/2026 15:57:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016630000000000256 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9958432 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11628384 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19416232 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,129284672 +08/03/2026 15:57:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,714252288 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,674177024 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11596120 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11979056 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3165184 +08/03/2026 15:57:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9507168 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,504946384 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11628384 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19416232 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,129284672 +08/03/2026 15:57:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,718548992 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,674177024 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,137051096 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11596120 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11979056 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3165184 +08/03/2026 15:57:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004036999999999957 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9190816 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,516829072 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19116128 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,131759096 +08/03/2026 15:57:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,720822272 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,680779776 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141690704 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19022392 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1701968 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3165504 +08/03/2026 15:57:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015390000000000126 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8670496 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,516829072 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15224888 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7560344 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,133039800 +08/03/2026 15:57:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,721367040 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,682061824 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141690704 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15150280 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3875440 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3165696 +08/03/2026 15:57:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9390848 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,516829072 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15224888 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7560344 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,133039800 +08/03/2026 15:57:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:57:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,722444288 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,682061824 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141690704 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15150280 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3875440 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3165696 +08/03/2026 15:57:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001593000000000011 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9553856 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,516829072 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11075040 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11753360 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,135122912 +08/03/2026 15:57:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:57:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,723996672 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,684212224 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141690704 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11021344 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6206888 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166080 +08/03/2026 15:57:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9373592 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,516829072 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11075040 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11753360 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,135122912 +08/03/2026 15:57:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,725204992 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,684212224 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141690704 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11021344 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6206888 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166080 +08/03/2026 15:57:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017220000000000013 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9529728 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,516829072 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13554792 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11753360 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,137867664 +08/03/2026 15:57:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,730697728 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,691085312 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141690704 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13486808 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4434280 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166560 +08/03/2026 15:57:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9128184 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,516829072 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13554792 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11753360 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,137867664 +08/03/2026 15:57:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:57:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,731676672 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,691085312 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,141690704 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13486808 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4434280 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166560 +08/03/2026 15:57:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003595000000000015 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8194928 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,520720312 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18068448 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,139504824 +08/03/2026 15:57:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,731844608 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,692785152 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138450312 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,17938496 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1740312 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166784 +08/03/2026 15:57:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8231608 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,520720312 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18068448 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,139504824 +08/03/2026 15:57:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,732065792 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,692785152 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138450312 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,17938496 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1740312 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166784 +08/03/2026 15:57:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016120000000000023 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9877608 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,520720312 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9882816 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838016 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140227216 +08/03/2026 15:57:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,733851648 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,693510144 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138450312 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9818856 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8128296 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166912 +08/03/2026 15:57:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10005416 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,520720312 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9882816 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838016 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,140227216 +08/03/2026 15:57:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,738856960 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,693510144 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138450312 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9818856 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8128296 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3166912 +08/03/2026 15:57:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016459999999999808 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8806224 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,520720312 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15522776 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11838016 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,143214272 +08/03/2026 15:57:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,740384768 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,700690432 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138450312 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15439640 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6308192 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3167392 +08/03/2026 15:57:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017770000000000286 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8580744 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,520720312 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8119712 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19590832 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,144044520 +08/03/2026 15:57:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,740855808 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,701521920 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138450312 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8086912 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12175296 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3167520 +08/03/2026 15:57:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8499416 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,520720312 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8119712 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19590832 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,144044520 +08/03/2026 15:57:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,742576128 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,701521920 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,138450312 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8086912 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12175296 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3167520 +08/03/2026 15:57:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003554999999999975 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8691648 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14845784 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,145125144 +08/03/2026 15:57:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:57:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,750096384 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,710926336 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14792104 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1740728 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3167712 +08/03/2026 15:57:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:57:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10067976 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14845784 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,145125144 +08/03/2026 15:57:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,752189440 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,710926336 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14792104 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1740728 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3167712 +08/03/2026 15:57:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015919999999999823 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8397904 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16229704 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3634824 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,147366952 +08/03/2026 15:57:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:57:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:57:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,752222208 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,713232384 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16148224 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39888 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168064 +08/03/2026 15:57:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8748656 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16229704 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3634824 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,147366952 +08/03/2026 15:57:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:57:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,752734208 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,713232384 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16148224 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39888 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168064 +08/03/2026 15:57:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0022130000000000205 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8882664 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12279864 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8241968 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,148145752 +08/03/2026 15:57:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,753418240 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,714010624 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12214000 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2792024 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168192 +08/03/2026 15:57:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8752984 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12279864 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8241968 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,148145752 +08/03/2026 15:57:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:57:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,756383744 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,714010624 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12214000 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2792024 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168192 +08/03/2026 15:57:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.002155000000000018 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8682824 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15906640 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8241968 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,149213416 +08/03/2026 15:57:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,758706176 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,719273984 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15806712 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,993472 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168384 +08/03/2026 15:57:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:57:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10013640 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,536658760 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15906640 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8241968 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,149213416 +08/03/2026 15:57:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:57:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:57:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,760655872 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,719273984 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147129968 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15806712 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,993472 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168384 +08/03/2026 15:57:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:57:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:57:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:57:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003475999999999979 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8722648 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,540706800 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15988592 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,151649896 +08/03/2026 15:58:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:58:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,761217024 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,721711104 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144018768 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15865728 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1726552 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168768 +08/03/2026 15:58:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001552999999999971 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8333120 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,540706800 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7664304 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11959200 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,152308680 +08/03/2026 15:58:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,761364480 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,722432000 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144018768 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7603064 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8272720 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168864 +08/03/2026 15:58:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9225128 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,540706800 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7664304 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11959200 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,152308680 +08/03/2026 15:58:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:58:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,764563456 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,722432000 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144018768 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7603064 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8272720 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3168864 +08/03/2026 15:58:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016240000000000143 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8912392 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,540706800 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8935216 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15993304 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,153446520 +08/03/2026 15:58:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,771297280 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,731828224 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144018768 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8897784 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10469400 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3169024 +08/03/2026 15:58:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9559960 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,540706800 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8935216 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15993304 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,153446520 +08/03/2026 15:58:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,772800512 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,731828224 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144018768 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8897784 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10469400 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3169024 +08/03/2026 15:58:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016700000000000048 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8950240 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,540706800 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12906120 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15993304 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,155723136 +08/03/2026 15:58:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,777547776 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,738299904 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144018768 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12853024 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8733120 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3169376 +08/03/2026 15:58:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8357048 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,540706800 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12906120 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15993304 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,155723136 +08/03/2026 15:58:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,777846784 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,738299904 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144018768 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12853024 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8733120 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3169376 +08/03/2026 15:58:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003504000000000007 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9470560 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,544740904 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,22684824 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,156823160 +08/03/2026 15:58:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,779096064 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,739401728 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,140984968 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,22534744 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1732328 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3169568 +08/03/2026 15:58:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9351416 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,544740904 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,22684824 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,156823160 +08/03/2026 15:58:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,780357632 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,739401728 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,140984968 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,22534744 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1732328 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3169568 +08/03/2026 15:58:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015780000000000238 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8751368 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,544740904 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10726912 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15520016 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,158833720 +08/03/2026 15:58:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,780611584 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,741408768 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,140984968 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10688880 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11855088 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3169984 +08/03/2026 15:58:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016519999999999868 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8454088 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,544740904 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12331720 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15520016 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,159325912 +08/03/2026 15:58:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,785043456 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,746098688 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,140984968 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12270208 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10000992 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3170048 +08/03/2026 15:58:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8984904 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,544740904 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12331720 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15520016 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,159325912 +08/03/2026 15:58:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,785715200 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,746098688 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,140984968 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12270208 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10000992 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3170048 +08/03/2026 15:58:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017229999999999746 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9135744 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,544740904 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13063488 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15520016 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,160654080 +08/03/2026 15:58:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,786731008 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,747491328 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,140984968 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12989272 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8156944 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3170272 +08/03/2026 15:58:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9980272 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,544740904 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13063488 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15520016 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,160654080 +08/03/2026 15:58:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,788434944 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,747491328 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,140984968 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12989272 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8156944 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3170272 +08/03/2026 15:58:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003758000000000039 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9602128 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,556698816 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13289960 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,163560504 +08/03/2026 15:58:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,789725184 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,750395392 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,145684976 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13185752 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1671920 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3170784 +08/03/2026 15:58:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8854856 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,556698816 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13289960 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,163560504 +08/03/2026 15:58:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,790474752 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,750395392 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,145684976 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13185752 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1671920 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3170784 +08/03/2026 15:58:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001568999999999987 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9161424 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,556698816 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9316696 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7865160 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,165206352 +08/03/2026 15:58:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,791293952 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,752041984 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,145684976 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9231688 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4166096 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3171040 +08/03/2026 15:58:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9813504 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,556698816 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9316696 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7865160 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,165206352 +08/03/2026 15:58:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,796151808 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,752041984 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,145684976 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9231688 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4166096 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3171040 +08/03/2026 15:58:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016160000000000063 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8602088 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,556698816 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,5889664 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11940400 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,167123368 +08/03/2026 15:58:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,797536256 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,758153216 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,145684976 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,5828088 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6392744 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3171360 +08/03/2026 15:58:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016979999999999773 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9425792 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,556698816 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,5237408 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16037344 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168730576 +08/03/2026 15:58:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,802779136 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,763961344 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,145684976 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,5206072 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8629152 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3171552 +08/03/2026 15:58:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9244304 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,556698816 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,5237408 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16037344 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168730576 +08/03/2026 15:58:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,803688448 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,763961344 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,145684976 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,5206072 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8629152 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3171552 +08/03/2026 15:58:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00372100000000003 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9660864 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,564871000 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12941704 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,170752736 +08/03/2026 15:58:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,809181184 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,770109440 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,146623184 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12856448 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1724256 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3171872 +08/03/2026 15:58:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9023880 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,564871000 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12941704 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,170752736 +08/03/2026 15:58:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,810041344 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,770109440 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,146623184 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12856448 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1724256 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3171872 +08/03/2026 15:58:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001574999999999993 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9950920 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,564871000 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11672544 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7797248 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,173242312 +08/03/2026 15:58:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,811798528 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,772599808 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,146623184 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11606696 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4147696 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3172256 +08/03/2026 15:58:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9968528 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,564871000 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11672544 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7797248 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,173242312 +08/03/2026 15:58:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,813178880 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,772599808 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,146623184 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11606696 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4147696 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3172256 +08/03/2026 15:58:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016579999999999928 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9738424 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,564871000 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15643632 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7797248 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175336840 +08/03/2026 15:58:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 15:58:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,814632960 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,774758400 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,146623184 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15541792 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2365016 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3172608 +08/03/2026 15:58:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8370216 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,564871000 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15643632 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7797248 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175336840 +08/03/2026 15:58:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 15:58:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,814825472 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,774758400 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,146623184 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15541792 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2365016 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3172608 +08/03/2026 15:58:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018179999999999863 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8988840 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,564871000 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12040936 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11872776 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,176628248 +08/03/2026 15:58:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,815661056 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,776052736 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,146623184 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11955672 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4624384 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3172800 +08/03/2026 15:58:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0038369999999999793 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,11089456 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16492728 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,180024168 +08/03/2026 15:58:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,822685696 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,783642624 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16391160 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1732640 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3173280 +08/03/2026 15:58:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10554264 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16492728 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,180024168 +08/03/2026 15:58:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,824913920 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,783642624 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16391160 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1732640 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3173280 +08/03/2026 15:58:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00170300000000001 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8936064 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12384152 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7775360 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,183000328 +08/03/2026 15:58:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,825765888 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,786681856 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12308616 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4100680 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3173664 +08/03/2026 15:58:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9487248 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12384152 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7775360 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,183000328 +08/03/2026 15:58:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,826990592 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,786681856 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12308616 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4100680 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3173664 +08/03/2026 15:58:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016980000000000328 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8431472 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11958144 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11934848 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,184621384 +08/03/2026 15:58:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,831348736 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,792432640 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11892992 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6370104 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3173888 +08/03/2026 15:58:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8244704 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11958144 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11934848 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,184621384 +08/03/2026 15:58:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,832851968 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,792432640 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11892992 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6370104 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3173888 +08/03/2026 15:58:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001807000000000003 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9441968 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11009680 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16103688 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,185385472 +08/03/2026 15:58:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,837132288 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,797392896 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10973376 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8688528 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174048 +08/03/2026 15:58:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9128800 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,573116856 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11009680 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16103688 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,185385472 +08/03/2026 15:58:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,840974336 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,797392896 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,147745176 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10973376 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8688528 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174048 +08/03/2026 15:58:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004430999999999963 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8568656 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,581394272 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18672384 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,187315752 +08/03/2026 15:58:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,842637312 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,803450880 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148791216 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18576704 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1706392 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174336 +08/03/2026 15:58:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00170300000000001 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8740976 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,581394272 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14512896 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7865672 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,188293912 +08/03/2026 15:58:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,843132928 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,804429824 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148791216 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14435520 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4147808 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174496 +08/03/2026 15:58:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8960960 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,581394272 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14512896 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7865672 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,188293912 +08/03/2026 15:58:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,843862016 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,804429824 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148791216 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14435520 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4147808 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174496 +08/03/2026 15:58:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017800000000000038 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9522912 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,581394272 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14914888 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7865672 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,189775248 +08/03/2026 15:58:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,845213696 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,805974016 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148791216 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14809352 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2393888 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174688 +08/03/2026 15:58:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8397752 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,581394272 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14914888 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7865672 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,189775248 +08/03/2026 15:58:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,845389824 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,805974016 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148791216 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14809352 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2393888 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174688 +08/03/2026 15:58:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017920000000000158 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8910360 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,581394272 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10911336 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11991384 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,190738320 +08/03/2026 15:58:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,845852672 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806940672 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148791216 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10833728 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4615280 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174816 +08/03/2026 15:58:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9596008 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,581394272 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10911336 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11991384 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,190738320 +08/03/2026 15:58:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:58:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,848183296 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,806940672 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148791216 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10833728 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4615280 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3174816 +08/03/2026 15:58:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003817999999999988 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9109176 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,589679472 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9145432 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7518448 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,192711720 +08/03/2026 15:58:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:58:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,852475904 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,813105152 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,149807808 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9092360 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5648496 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3175136 +08/03/2026 15:58:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8351864 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,589679472 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9145432 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7518448 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,192711720 +08/03/2026 15:58:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,854982656 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,813105152 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,149807808 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9092360 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5648496 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3175136 +08/03/2026 15:58:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0021720000000000073 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8979576 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,593674000 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11376992 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,193996280 +08/03/2026 15:58:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,857907200 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818585600 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,151946280 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11303800 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1668912 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3175360 +08/03/2026 15:58:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9954456 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,593674000 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11376992 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,193996280 +08/03/2026 15:58:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,859873280 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,818585600 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,151946280 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11303800 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1668912 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3175360 +08/03/2026 15:58:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001811000000000007 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9846480 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,593674000 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9362248 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7353928 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,196821736 +08/03/2026 15:58:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,861519872 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,821411840 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,151946280 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9311400 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3638032 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3175776 +08/03/2026 15:58:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017199999999999993 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8086376 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,593674000 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10309208 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7353928 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,198350808 +08/03/2026 15:58:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,865701888 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,827068416 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,151946280 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10234064 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1779936 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176000 +08/03/2026 15:58:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8437704 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,593674000 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10309208 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7353928 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,198350808 +08/03/2026 15:58:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,865910784 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,827068416 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,151946280 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10234064 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1779936 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176000 +08/03/2026 15:58:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001798999999999995 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9118912 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,593674000 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8717192 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11431288 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,199072672 +08/03/2026 15:58:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,866734080 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,827854848 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,151946280 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8658088 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3992408 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176096 +08/03/2026 15:58:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9704232 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,593674000 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8717192 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11431288 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,199072672 +08/03/2026 15:58:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,868356096 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,827854848 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,151946280 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8658088 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3992408 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176096 +08/03/2026 15:58:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0044159999999999755 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9710960 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,597622064 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12593912 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,201944120 +08/03/2026 15:58:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.0625 +08/03/2026 15:58:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,874086400 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,834924544 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148623360 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12463936 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1752008 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176544 +08/03/2026 15:58:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:58:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8854288 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,597622064 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12593912 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,201944120 +08/03/2026 15:58:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,874668032 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,834924544 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148623360 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12463936 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1752008 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176544 +08/03/2026 15:58:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017650000000000166 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8940248 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,597622064 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,4241904 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15010096 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,203409096 +08/03/2026 15:58:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:58:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:58:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,875319296 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,836386816 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148623360 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,4221144 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11276688 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176800 +08/03/2026 15:58:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9368664 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,597622064 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,4241904 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15010096 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,203409096 +08/03/2026 15:58:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,883392512 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,836386816 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148623360 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,4221144 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11276688 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3176800 +08/03/2026 15:58:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016740000000000088 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10082416 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,597622064 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15407504 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15010096 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,205310872 +08/03/2026 15:58:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,886775808 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,846614528 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148623360 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15367504 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9516616 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3177088 +08/03/2026 15:58:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018630000000000035 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9605976 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,597622064 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15841216 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15010096 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,208394504 +08/03/2026 15:58:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,888250368 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,849694720 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148623360 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15774880 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7705592 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3177536 +08/03/2026 15:58:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:58:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10066608 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,597622064 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15841216 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15010096 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,208394504 +08/03/2026 15:58:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:58:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,890109952 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,849694720 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,148623360 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15774880 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7705592 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3177536 +08/03/2026 15:58:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0038389999999999813 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8859608 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,23930032 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,210874984 +08/03/2026 15:58:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:58:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:58:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,890740736 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,852242432 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,23763872 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1685800 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3177920 +08/03/2026 15:58:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:58:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:58:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:58:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8790608 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,23930032 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,210874984 +08/03/2026 15:59:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,891330560 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,852242432 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,23763872 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1685800 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3177920 +08/03/2026 15:59:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016430000000000056 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9083728 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15975384 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11676648 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,211473688 +08/03/2026 15:59:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,892149760 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,852840448 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15867688 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7900328 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3177984 +08/03/2026 15:59:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9676976 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15975384 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11676648 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,211473688 +08/03/2026 15:59:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,893648896 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,852840448 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15867688 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7900328 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3177984 +08/03/2026 15:59:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017340000000000133 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10287064 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7794264 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19859400 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,214884584 +08/03/2026 15:59:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,895807488 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,856252416 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7754544 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14139456 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3178464 +08/03/2026 15:59:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8536592 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7794264 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19859400 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,214884584 +08/03/2026 15:59:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,902262784 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,856252416 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7754544 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,14139456 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3178464 +08/03/2026 15:59:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018179999999999863 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9561256 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12556384 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19859400 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,216846312 +08/03/2026 15:59:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,905859072 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,866537472 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12498592 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12379712 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3178752 +08/03/2026 15:59:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8647608 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,601050464 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12556384 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19859400 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,216846312 +08/03/2026 15:59:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,906444800 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,866537472 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,144987240 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12498592 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12379712 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3178752 +08/03/2026 15:59:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003792999999999991 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9822592 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,617187864 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14230920 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,218686312 +08/03/2026 15:59:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:59:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,908165120 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,868442112 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,153791224 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14154264 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1695344 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3179040 +08/03/2026 15:59:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016340000000000243 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9240456 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,617187864 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14364216 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3735904 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,220815312 +08/03/2026 15:59:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:59:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,909258752 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,870572032 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,153791224 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14259400 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37208 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3179424 +08/03/2026 15:59:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9666736 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,617187864 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14364216 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3735904 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,220815312 +08/03/2026 15:59:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,910434304 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,870572032 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,153791224 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14259400 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37208 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3179424 +08/03/2026 15:59:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001697000000000004 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8943520 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,617187864 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6463264 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12246288 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,222804080 +08/03/2026 15:59:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,911007744 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872558592 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,153791224 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6423048 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6702840 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3179808 +08/03/2026 15:59:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9251608 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,617187864 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6463264 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12246288 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,222804080 +08/03/2026 15:59:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,916086784 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872558592 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,153791224 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6423048 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6702840 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3179808 +08/03/2026 15:59:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001784999999999981 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9730568 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,617187864 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9762040 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12246288 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,224471080 +08/03/2026 15:59:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,921845760 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,882544640 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,153791224 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9697552 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4890576 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3180032 +08/03/2026 15:59:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9013576 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,617187864 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9762040 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12246288 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,224471080 +08/03/2026 15:59:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,922578944 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,882544640 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,153791224 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9697552 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4890576 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3180032 +08/03/2026 15:59:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0037539999999999796 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8582552 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,625240696 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12113664 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,226202632 +08/03/2026 15:59:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,923082752 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,884346880 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,154612192 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12034480 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1704088 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3180320 +08/03/2026 15:59:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8959960 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,625240696 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12113664 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,226202632 +08/03/2026 15:59:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:59:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,923734016 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,884346880 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,154612192 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12034480 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1704088 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,3180320 +08/03/2026 15:59:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0024100000000000232 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8592824 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,611944104 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9630800 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7673072 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.046875 +08/03/2026 15:59:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,894816256 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,855425024 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323889088 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9294112 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4042576 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,159581288 +08/03/2026 15:59:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001699000000000006 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9846896 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,611944104 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10280000 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7673072 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,898846720 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,859422720 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323889088 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10220192 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2305640 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,157238416 +08/03/2026 15:59:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9868056 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,611944104 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10280000 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7673072 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,898850816 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,859422720 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323889088 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10220192 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2305640 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,157238416 +08/03/2026 15:59:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018559999999999688 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8332696 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,611944104 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16249904 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7673072 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,898998272 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,859615232 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323889088 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16165160 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,504072 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,155824064 +08/03/2026 15:59:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8681704 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,611944104 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16249904 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7673072 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:59:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:59:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,898998272 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,859615232 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323889088 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16165160 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,504072 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,155824064 +08/03/2026 15:59:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0040240000000000276 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8648248 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,615984288 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12332000 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7530896 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,899026944 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,859619328 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320868720 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12260696 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5682328 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,155035504 +08/03/2026 15:59:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8679304 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,615984288 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12332000 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7530896 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,900476928 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,859619328 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320868720 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12260696 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5682328 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,155035504 +08/03/2026 15:59:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0021059999999999968 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9244440 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,619991264 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16022512 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,903225344 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,863813632 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323040952 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15929080 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1725624 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,154032736 +08/03/2026 15:59:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8780976 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,619991264 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16022512 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 15:59:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,903229440 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,863813632 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323040952 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15929080 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1725624 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,154032736 +08/03/2026 15:59:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001923000000000008 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9273504 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,619991264 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8082272 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11870384 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,903249920 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,863813632 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323040952 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8051288 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8177328 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,152797192 +08/03/2026 15:59:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016959999999999753 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8580952 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,619991264 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15142864 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11870384 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,911568896 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872132608 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323040952 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15104240 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6435744 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,151215064 +08/03/2026 15:59:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8555080 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,619991264 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15142864 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11870384 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,911568896 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872132608 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323040952 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15104240 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6435744 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,151215064 +08/03/2026 15:59:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0020080000000000098 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8511728 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,619991264 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15443504 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11870384 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,911577088 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872132608 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323040952 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15379752 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4712568 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,150361800 +08/03/2026 15:59:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8827736 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,619991264 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15443504 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11870384 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:59:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,911585280 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872132608 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,323040952 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15379752 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4712568 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,150361800 +08/03/2026 15:59:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004037999999999986 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9170216 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,624127376 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19534216 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,911626240 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872198144 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320166232 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19407640 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1714240 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,149104688 +08/03/2026 15:59:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9295984 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,624127376 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19534216 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 15:59:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,911638528 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872198144 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320166232 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19407640 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1714240 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,149104688 +08/03/2026 15:59:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001705000000000012 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9290976 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,624127376 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15443504 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7745192 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,911638528 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872198144 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320166232 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15341960 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4084400 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,147159008 +08/03/2026 15:59:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9046368 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,624127376 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15443504 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7745192 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,911642624 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872198144 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320166232 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15341960 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4084400 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,147159008 +08/03/2026 15:59:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001705000000000012 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8936696 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,624127376 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7361232 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15827464 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,911695872 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872202240 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320166232 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7319112 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10308888 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,145321536 +08/03/2026 15:59:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8825808 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,624127376 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7361232 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15827464 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,919052288 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,872202240 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320166232 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7319112 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10308888 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,145321536 +08/03/2026 15:59:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018599999999999728 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8531640 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,624127376 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11048664 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15827464 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,919990272 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,880521216 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,320166232 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10984424 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8481688 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,143780128 +08/03/2026 15:59:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004202000000000039 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9265784 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13122680 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:59:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,920043520 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,880590848 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13044744 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1724064 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,142737168 +08/03/2026 15:59:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10013744 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13122680 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,920047616 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,880590848 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13044744 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1724064 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,142737168 +08/03/2026 15:59:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016319999999999668 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9054240 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13264592 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3656144 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,920051712 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,880590848 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13165384 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39264 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,139643888 +08/03/2026 15:59:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9200456 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13264592 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3656144 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:59:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,920051712 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,880590848 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13165384 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39264 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,139643888 +08/03/2026 15:59:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016550000000000176 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9462696 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11826528 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8349048 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,920252416 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,880590848 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11744088 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2884000 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,137304016 +08/03/2026 15:59:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9200888 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11826528 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8349048 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:59:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,920977408 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,880590848 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11744088 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2884000 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,137304016 +08/03/2026 15:59:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017269999999999786 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10377760 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9282296 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11997080 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 15:59:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,924413952 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,884785152 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9221096 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4640536 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,135362560 +08/03/2026 15:59:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10039920 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,636300360 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9282296 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11997080 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 15:59:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 15:59:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,927010816 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,884785152 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325126240 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9221096 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4640536 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,135362560 +08/03/2026 15:59:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004103000000000023 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8613536 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,639948392 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,20162496 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,928604160 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,888975360 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,321609000 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,20035752 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1718088 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,132355424 +08/03/2026 15:59:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016160000000000063 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8741864 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,639948392 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11990672 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11817064 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,928612352 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,888975360 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,321609000 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11931672 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8105872 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,131266408 +08/03/2026 15:59:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8865040 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,639948392 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11990672 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11817064 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,928620544 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,888975360 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,321609000 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11931672 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8105872 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,131266408 +08/03/2026 15:59:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001676999999999984 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9545672 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,639948392 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15500176 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11817064 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,932827136 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,893169664 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,321609000 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15431800 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6267760 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,129132232 +08/03/2026 15:59:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9933296 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,639948392 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15500176 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11817064 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,932843520 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,893169664 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,321609000 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15431800 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6267760 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,129132232 +08/03/2026 15:59:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017329999999999846 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9072504 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,639948392 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12081456 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15983528 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,932872192 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,893173760 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,321609000 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12029056 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8620720 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,126546296 +08/03/2026 15:59:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9374696 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,639948392 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12081456 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15983528 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,932876288 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,893173760 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,321609000 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12029056 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8620720 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,126546296 +08/03/2026 15:59:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003964999999999996 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8662168 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,652286680 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16096536 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,937066496 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,897368064 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,326746976 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16029856 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1739968 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,124760792 +08/03/2026 15:59:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 15:59:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8135832 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,652286680 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16096536 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,937070592 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,897368064 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,326746976 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16029856 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1739968 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,124760792 +08/03/2026 15:59:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001629000000000047 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9221552 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,652286680 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11988240 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7737944 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,937086976 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,897368064 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,326746976 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11924984 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4104888 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,124377856 +08/03/2026 15:59:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9558176 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,652286680 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11988240 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7737944 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,939667456 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,897368064 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,326746976 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11924984 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4104888 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,124377856 +08/03/2026 15:59:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016069999999999696 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9538336 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,652286680 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10800952 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11741160 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 15:59:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,941289472 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,901562368 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,326746976 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10761472 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6210656 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,121077600 +08/03/2026 15:59:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016800000000000148 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8441904 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,652286680 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13749408 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11741160 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 15:59:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,945467392 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905687040 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,326746976 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13685344 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4415376 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,120072016 +08/03/2026 15:59:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 15:59:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8864608 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,652286680 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13749408 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11741160 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,945475584 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905687040 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,326746976 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13685344 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4415376 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,120072016 +08/03/2026 15:59:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0038980000000000126 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8367584 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14762032 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 15:59:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 15:59:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 15:59:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,945491968 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905756672 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14671656 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1766944 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,119106736 +08/03/2026 15:59:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 15:59:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 15:59:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 15:59:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10174600 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14762032 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,945508352 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905756672 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14671656 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1766944 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,119106736 +08/03/2026 16:00:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016029999999999656 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8442848 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14762032 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3616312 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,945541120 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905756672 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14652808 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37248 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116750128 +08/03/2026 16:00:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8338200 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14762032 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3616312 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,945545216 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905756672 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14652808 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37248 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116750128 +08/03/2026 16:00:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001605000000000023 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9032000 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6466728 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12488720 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,945557504 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905756672 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6429176 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6981464 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116231624 +08/03/2026 16:00:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8870528 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6466728 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12488720 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,951279616 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,905756672 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6429176 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6981464 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116231624 +08/03/2026 16:00:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016879999999999673 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8347912 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14690144 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12488720 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:00:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,953880576 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,914075648 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14628616 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5170760 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,114903984 +08/03/2026 16:00:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9656568 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,660400184 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14690144 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12488720 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,953888768 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,914075648 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,327678704 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14628616 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5170760 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,114903984 +08/03/2026 16:00:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003959000000000046 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9473000 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,668695488 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16175616 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,953933824 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,914145280 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328748848 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16102424 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1722960 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113086048 +08/03/2026 16:00:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015459999999999918 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8211800 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,668695488 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16175616 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3635512 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,953950208 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,914145280 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328748848 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16075824 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37992 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111946816 +08/03/2026 16:00:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8717432 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,668695488 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16175616 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3635512 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,953942016 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,914145280 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328748848 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16075824 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37992 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111946816 +08/03/2026 16:00:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015479999999999938 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9099776 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,668695488 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12344944 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8024248 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:00:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,953982976 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,914145280 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328748848 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12258352 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2620784 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110901744 +08/03/2026 16:00:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9635792 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,668695488 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12344944 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8024248 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,953991168 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,914145280 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328748848 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12258352 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2620784 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110901744 +08/03/2026 16:00:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017220000000000013 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8941072 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,668695488 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15729920 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8024248 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,958189568 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,918335488 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328748848 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15619160 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,895960 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108685824 +08/03/2026 16:00:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8626784 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,668695488 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15729920 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8024248 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,958189568 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,918335488 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328748848 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15619160 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,895960 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108685824 +08/03/2026 16:00:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0041180000000000105 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9176520 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,672526160 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7490552 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11809848 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:00:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:00:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,958222336 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,918339584 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325548536 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7443480 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9941592 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,107801856 +08/03/2026 16:00:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9416880 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,672526160 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7490552 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11809848 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,964947968 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,918339584 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,325548536 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7443480 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9941592 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,107801856 +08/03/2026 16:00:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0022849999999999815 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8691808 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,680812088 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13271136 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,966561792 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,926662656 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,331976304 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13207600 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1742912 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,105634968 +08/03/2026 16:00:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017289999999999806 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8801960 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,680812088 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11363208 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7741032 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,966574080 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,926728192 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,331976304 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11328664 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4088880 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,104793152 +08/03/2026 16:00:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8560840 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,680812088 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11363208 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7741032 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,966574080 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,926728192 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,331976304 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11328664 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4088880 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,104793152 +08/03/2026 16:00:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015420000000000433 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9337952 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,680812088 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15549968 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7741032 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,970760192 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930852864 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,331976304 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15493848 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2244144 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,103870320 +08/03/2026 16:00:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9158240 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,680812088 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15549968 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7741032 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,970764288 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930852864 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,331976304 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15493848 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2244144 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,103870320 +08/03/2026 16:00:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016309999999999936 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10164528 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,680812088 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16296584 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7741032 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:00:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,970784768 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930852864 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,331976304 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16216232 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,387416 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101105192 +08/03/2026 16:00:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9127856 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,680812088 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16296584 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7741032 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:00:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,970792960 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930852864 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,331976304 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16216232 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,387416 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101105192 +08/03/2026 16:00:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004100999999999966 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8952536 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,684917664 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16296584 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,970817536 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930922496 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328855224 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16192656 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1733312 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99338952 +08/03/2026 16:00:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9453752 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,684917664 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16296584 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,970817536 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930922496 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328855224 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16192656 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1733312 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99338952 +08/03/2026 16:00:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015630000000000366 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9374416 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,684917664 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16300336 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3641800 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,970854400 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930922496 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328855224 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16166184 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37560 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,97375400 +08/03/2026 16:00:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001544999999999963 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8989040 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,684917664 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8010096 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12482240 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,970887168 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930988032 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328855224 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7942960 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6998992 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,95653440 +08/03/2026 16:00:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9164624 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,684917664 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8010096 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12482240 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,971943936 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,930988032 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328855224 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7942960 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6998992 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,95653440 +08/03/2026 16:00:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0029609999999999914 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9213800 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,684917664 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10777056 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16590000 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,979226624 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,939311104 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328855224 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10744304 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9255800 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,93863576 +08/03/2026 16:00:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9287936 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,684917664 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10777056 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,16590000 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,209637736 +08/03/2026 16:00:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,979226624 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,939311104 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,328855224 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10744304 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9255800 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,93863576 +08/03/2026 16:00:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.0011624000000000079 +08/03/2026 16:00:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,256 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004749000000000003 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10060336 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,683776768 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14453272 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.046875 +08/03/2026 16:00:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,967827456 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,927539200 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393978504 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14166944 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1710568 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,123565976 +08/03/2026 16:00:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:00:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9168032 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,683776768 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14453272 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,967827456 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,927539200 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393978504 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14166944 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1710568 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,123565976 +08/03/2026 16:00:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001591000000000009 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9981704 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,683776768 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11103440 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7542440 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,967843840 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,927539200 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393978504 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11060320 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3895128 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,120812168 +08/03/2026 16:00:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9078880 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,683776768 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11103440 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7542440 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,970407936 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,927539200 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393978504 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11060320 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3895128 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,120812168 +08/03/2026 16:00:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017480000000000273 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8712568 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,683776768 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14205144 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7542440 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:00:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,972029952 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,931729408 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393978504 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14140968 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2111464 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,119197104 +08/03/2026 16:00:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001589000000000007 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10461216 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,683776768 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14644592 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7542440 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,972054528 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,931794944 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393978504 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14561936 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,354872 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116651408 +08/03/2026 16:00:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10795688 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,683776768 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14644592 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7542440 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,972058624 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,931794944 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393978504 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14561936 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,354872 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116651408 +08/03/2026 16:00:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004196999999999951 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9430992 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,687680424 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10557840 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7656784 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:00:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:00:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,972075008 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,931799040 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,390831384 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10494648 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5759528 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113004192 +08/03/2026 16:00:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9089688 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,687680424 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10557840 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7656784 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,972075008 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,931799040 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,390831384 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10494648 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5759528 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113004192 +08/03/2026 16:00:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0021090000000000275 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8795680 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,691813288 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13645888 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,976252928 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,935993344 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393084872 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13563408 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1669008 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111205056 +08/03/2026 16:00:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8435864 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,691813288 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13645888 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,976252928 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,935993344 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393084872 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13563408 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1669008 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111205056 +08/03/2026 16:00:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001709000000000016 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9060216 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,691813288 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10524048 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7511976 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:00:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,976277504 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,935993344 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393084872 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10461000 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3810656 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110682440 +08/03/2026 16:00:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9408480 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,691813288 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10524048 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7511976 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,978366464 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,935993344 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393084872 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10461000 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3810656 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110682440 +08/03/2026 16:00:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015859999999999763 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8587944 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,691813288 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11999576 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11627952 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,980471808 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,940187648 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393084872 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11962208 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6047392 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108735416 +08/03/2026 16:00:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8629256 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,691813288 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11999576 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11627952 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,984145920 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,940187648 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393084872 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11962208 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6047392 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108735416 +08/03/2026 16:00:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016019999999999923 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9009904 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,691813288 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16295504 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11627952 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,984641536 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,944312320 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393084872 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16239712 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4206208 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,107823088 +08/03/2026 16:00:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0044600000000000195 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8827592 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16299368 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:00:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,984657920 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,944381952 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16213840 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1737136 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,106229808 +08/03/2026 16:00:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9050176 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16299368 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,984657920 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,944381952 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16213840 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1737136 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,106229808 +08/03/2026 16:00:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015180000000000193 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8572368 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12130824 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7816376 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,984694784 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,944381952 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12069104 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4159768 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,105305504 +08/03/2026 16:00:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9259840 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12130824 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7816376 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,984694784 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,944381952 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12069104 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4159768 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,105305504 +08/03/2026 16:00:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015499999999999958 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9192848 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15105400 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7816376 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,988831744 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,948572160 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15014784 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2317688 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,103662448 +08/03/2026 16:00:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9037408 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15105400 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7816376 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:00:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,988831744 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,948572160 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15014784 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2317688 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,103662448 +08/03/2026 16:00:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015620000000000078 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8318424 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15120536 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7816376 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,988868608 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,948572160 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15004864 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,492224 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101986768 +08/03/2026 16:00:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9734352 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,699747064 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15120536 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7816376 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,988868608 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,948572160 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393718688 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15004864 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,492224 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101986768 +08/03/2026 16:00:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003995000000000026 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9930464 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,703915608 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6853888 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11790568 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,988901376 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,948641792 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,390674504 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6795888 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9878720 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99557600 +08/03/2026 16:00:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8871768 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,703915608 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6853888 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11790568 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,996904960 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,948641792 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,390674504 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6795888 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9878720 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99557600 +08/03/2026 16:00:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0019729999999998915 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8103264 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,712182256 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6801896 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7401272 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,997277696 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,956899328 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397039144 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6769504 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5502264 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,97477744 +08/03/2026 16:00:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:00:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018040000000000278 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9077976 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,712182256 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14717240 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7401272 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001451520 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961089536 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397039144 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14666984 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3683032 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,96968344 +08/03/2026 16:00:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9191920 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,712182256 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14717240 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7401272 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:00:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:00:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001447424 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961089536 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397039144 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14666984 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3683032 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,96968344 +08/03/2026 16:00:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:00:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015279999999999738 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9797528 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,712182256 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14871208 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7401272 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:00:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:00:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:00:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001472000 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961089536 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397039144 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14797488 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1906544 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,94618576 +08/03/2026 16:00:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:00:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:00:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:00:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9293064 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,712182256 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14871208 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7401272 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001472000 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961089536 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397039144 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14797488 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1906544 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,94618576 +08/03/2026 16:01:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015450000000000186 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8872096 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,712182256 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16126528 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7416016 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001496576 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961155072 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397039144 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16036328 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,87112 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,92684960 +08/03/2026 16:01:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9308560 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,712182256 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16126528 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7416016 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001496576 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961155072 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397039144 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16036328 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,87112 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,92684960 +08/03/2026 16:01:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0038320000000000576 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10007696 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,716059608 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16126528 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:01:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001525248 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961159168 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393705664 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16019744 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1780568 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,91133720 +08/03/2026 16:01:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9840656 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,716059608 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16126528 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001525248 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961159168 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393705664 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16019744 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1780568 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,91133720 +08/03/2026 16:01:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016249999999999876 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9200384 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,716059608 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8158360 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11573880 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,1001549824 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,961159168 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393705664 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8103512 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7920144 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,87606832 +08/03/2026 16:01:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014859999999999873 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9852000 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,716059608 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14987400 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11573880 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.046875 +08/03/2026 16:01:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,1009872896 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,969478144 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393705664 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14911296 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6093576 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,85074288 +08/03/2026 16:01:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8660272 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,716059608 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14987400 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11573880 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,1009872896 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,969478144 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393705664 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14911296 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6093576 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,85074288 +08/03/2026 16:01:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015220000000000233 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8710576 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,716059608 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12236304 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15708000 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,1009905664 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,969547776 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393705664 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12191216 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8322944 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,84356848 +08/03/2026 16:01:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9505896 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,716059608 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12236304 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15708000 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,1009905664 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,969547776 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393705664 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12191216 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8322944 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,84356848 +08/03/2026 16:01:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003819000000000017 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10115592 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,728161896 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11699688 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7585560 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,1014050816 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,973676544 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398572808 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11671224 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5688344 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81776864 +08/03/2026 16:01:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9061872 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,728161896 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11699688 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7585560 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,1014734848 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,973676544 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398572808 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11671224 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5688344 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81776864 +08/03/2026 16:01:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015459999999999363 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8862000 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,728161896 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15117352 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7585560 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:01:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,1018290176 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,977866752 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398572808 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15066776 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3930448 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,79667408 +08/03/2026 16:01:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9601440 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,728161896 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15117352 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7585560 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:01:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,1018306560 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,977866752 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398572808 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15066776 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3930448 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,79667408 +08/03/2026 16:01:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001458999999999988 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8809992 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,728161896 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15715848 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7585560 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,1018335232 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,977866752 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398572808 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15646648 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2115944 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,77764080 +08/03/2026 16:01:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9738400 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,728161896 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15715848 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7585560 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,1018355712 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,977866752 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398572808 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15646648 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2115944 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,77764080 +08/03/2026 16:01:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015129999999999866 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9230480 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,728161896 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15719928 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7585560 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,1018380288 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,977932288 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398572808 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15624200 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,222632 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,75415528 +08/03/2026 16:01:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003831000000000029 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9698496 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,732223536 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11669880 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7573968 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,1018413056 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,977936384 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,395389992 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11600416 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5763800 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,73570232 +08/03/2026 16:01:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8965408 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,732223536 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11669880 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7573968 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,1018413056 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,977936384 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,395389992 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11600416 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5763800 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,73570232 +08/03/2026 16:01:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0019090000000000495 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9450128 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,736273584 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14277928 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,1022582784 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,982130688 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397647752 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14182352 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1722400 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,72068072 +08/03/2026 16:01:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9627360 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,736273584 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14277928 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:01:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,1022595072 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,982130688 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397647752 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14182352 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1722400 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,72068072 +08/03/2026 16:01:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015809999999999436 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8486136 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,736273584 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10707864 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7771600 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,1022631936 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,982130688 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397647752 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10642448 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4123104 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69752000 +08/03/2026 16:01:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8905272 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,736273584 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10707864 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7771600 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,1025196032 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,982130688 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397647752 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10642448 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4123104 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,69752000 +08/03/2026 16:01:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014859999999999873 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8905072 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,736273584 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12781664 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7771600 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,1026752512 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,986320896 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397647752 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12700296 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2340888 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,68750792 +08/03/2026 16:01:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9145656 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,736273584 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12781664 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7771600 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,1026756608 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,986320896 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397647752 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12700296 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2340888 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,68750792 +08/03/2026 16:01:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015370000000000106 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10081800 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,736273584 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9980432 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11895120 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,1026781184 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,986324992 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,397647752 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9921472 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4679824 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,67119144 +08/03/2026 16:01:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00371100000000002 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8863208 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,744529120 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7260344 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7501920 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,1030963200 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,990519296 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398816552 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7230560 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5645488 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,64857536 +08/03/2026 16:01:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8562976 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,744529120 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7260344 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7501920 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,1030963200 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,990519296 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,398816552 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7230560 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5645488 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,64857536 +08/03/2026 16:01:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0019970000000000265 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8715848 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16204432 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,1035120640 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,994648064 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,400952336 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16134224 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1721448 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,64238192 +08/03/2026 16:01:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8446872 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16204432 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,1035120640 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,994648064 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,400952336 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16134224 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1721448 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,64238192 +08/03/2026 16:01:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015729999999999356 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9079400 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16231872 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3628224 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:01:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,1035165696 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,994713600 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,400952336 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16136368 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37456 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63482984 +08/03/2026 16:01:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8689632 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16231872 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3628224 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,1035169792 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,994713600 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,400952336 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16136368 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37456 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,63482984 +08/03/2026 16:01:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015330000000000066 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9366192 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12300616 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8122968 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:01:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,1035210752 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,994713600 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,400952336 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12223688 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2697088 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,61830664 +08/03/2026 16:01:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9270968 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12300616 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8122968 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,1039106048 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,994713600 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,400952336 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12223688 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2697088 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,61830664 +08/03/2026 16:01:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001595000000000013 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8550648 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15510920 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8122968 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,1039400960 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,998903808 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,400952336 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15402504 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,952040 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,60248536 +08/03/2026 16:01:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0036289999999999933 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8347968 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11890928 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11735504 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,1039433728 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,998907904 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393948896 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11810032 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9914576 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59395272 +08/03/2026 16:01:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8586304 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,748507120 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11890928 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11735504 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,175504440 +08/03/2026 16:01:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,1039433728 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,998907904 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,393948896 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11810032 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9914576 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,59395272 +08/03/2026 16:01:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0023440000000000127 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8931096 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,734122408 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15197552 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11735504 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,1030889472 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,989782016 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,446104496 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14870456 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8146632 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,124121408 +08/03/2026 16:01:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9135544 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,734122408 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15197552 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11735504 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:01:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,1030881280 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,989782016 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,446104496 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14870456 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8146632 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,124121408 +08/03/2026 16:01:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014960000000000528 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8950056 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,734122408 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11219120 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15827664 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,1030881280 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,989782016 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,446104496 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11143464 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10406160 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,122021768 +08/03/2026 16:01:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9639528 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,734122408 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11219120 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15827664 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:01:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,1031815168 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,989782016 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,446104496 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11143464 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10406160 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,122021768 +08/03/2026 16:01:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016359999999999708 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9017520 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,734122408 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10089944 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19812880 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,1035091968 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,993980416 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,446104496 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10039656 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12548024 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,120305296 +08/03/2026 16:01:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8932360 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,734122408 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10089944 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19812880 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,1037574144 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,993980416 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,446104496 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10039656 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12548024 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,120305296 +08/03/2026 16:01:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0039519999999999555 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8595888 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,750411368 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13206800 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,1039265792 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,998109184 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455214664 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13140632 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1690968 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,119005584 +08/03/2026 16:01:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8825032 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,750411368 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13206800 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,1039265792 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,998109184 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455214664 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13140632 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1690968 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,119005584 +08/03/2026 16:01:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00149100000000002 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9306080 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,750411368 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10357448 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7623664 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,1039290368 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,998174720 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455214664 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10306416 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3969056 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,117904640 +08/03/2026 16:01:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018930000000000335 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9723904 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,750411368 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12063408 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7623664 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,1043460096 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1002299392 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455214664 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11985872 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2164520 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,114882896 +08/03/2026 16:01:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8915984 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,750411368 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12063408 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7623664 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,1043460096 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1002299392 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455214664 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11985872 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2164520 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,114882896 +08/03/2026 16:01:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015650000000000386 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9750768 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,750411368 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13529336 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7623664 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,1043484672 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1002364928 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455214664 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13432328 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,345648 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113131424 +08/03/2026 16:01:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9061008 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,750411368 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13529336 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7623664 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,1043484672 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1002364928 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455214664 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13432328 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,345648 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113131424 +08/03/2026 16:01:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003782999999999981 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10163120 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,754392608 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9565096 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7520080 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,1043513344 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1002369024 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,452056056 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9482632 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5622464 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111004984 +08/03/2026 16:01:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9923672 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,754392608 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9565096 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7520080 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:01:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,1045028864 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1002369024 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,452056056 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9482632 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5622464 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111004984 +08/03/2026 16:01:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016019999999999923 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9046832 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,754392608 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7004408 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11687328 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,1047691264 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1006563328 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,452056056 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6945640 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7923392 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,107643456 +08/03/2026 16:01:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8942200 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,754392608 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7004408 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11687328 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,1050787840 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1006563328 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,452056056 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6945640 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7923392 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,107643456 +08/03/2026 16:01:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001487000000000016 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8904712 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,754392608 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6266968 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15611272 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:01:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,1051869184 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1010757632 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,452056056 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6234600 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9995896 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,106205128 +08/03/2026 16:01:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015849999999999476 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9143336 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,754392608 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15593392 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15611272 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:01:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:01:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,1056022528 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1014882304 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,452056056 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15530760 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8162144 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,104567344 +08/03/2026 16:01:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:01:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9971320 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,754392608 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15593392 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15611272 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:01:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,1056034816 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1014882304 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,452056056 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15530760 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8162144 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,104567344 +08/03/2026 16:01:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004202000000000039 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9344584 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,766479960 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11937136 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7443160 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,1056051200 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1014951936 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,456827928 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11894256 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5614448 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101679640 +08/03/2026 16:01:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:01:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9168712 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,766479960 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11937136 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7443160 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:01:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,1056051200 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1014951936 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,456827928 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11894256 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5614448 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101679640 +08/03/2026 16:01:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0020449999999999635 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9143840 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,770399200 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15876424 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:01:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:01:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:01:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,1060220928 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1019080704 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458929312 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15809120 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1745952 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99785336 +08/03/2026 16:01:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:01:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:01:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:01:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8370000 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,770399200 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15876424 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:02:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,1060220928 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1019080704 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458929312 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15809120 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1745952 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99785336 +08/03/2026 16:02:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018160000000000398 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8704832 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,770399200 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15876424 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3615728 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,1060245504 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1019146240 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458929312 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15787912 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37160 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99241640 +08/03/2026 16:02:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9602224 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,770399200 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15876424 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3615728 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,1060245504 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1019146240 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458929312 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15787912 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37160 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99241640 +08/03/2026 16:02:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015600000000000058 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9309912 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,770399200 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11710048 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8360448 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,1060274176 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1019146240 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458929312 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11631176 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2892576 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,96623320 +08/03/2026 16:02:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8974272 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,770399200 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11710048 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8360448 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:02:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,1063194624 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1019146240 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458929312 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11631176 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2892576 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,96623320 +08/03/2026 16:02:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016379999999999173 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8564488 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,770399200 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10208184 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12287824 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,1064468480 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1023340544 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458929312 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10149688 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4967624 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,94979960 +08/03/2026 16:02:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0036160000000000636 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8577752 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,778494464 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8187368 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7528312 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,1068625920 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1027469312 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,459849288 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8155960 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5695464 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,93969976 +08/03/2026 16:02:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9315584 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,778494464 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8187368 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7528312 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,1068625920 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1027469312 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,459849288 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8155960 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5695464 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,93969976 +08/03/2026 16:02:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001915 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9424992 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11658288 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,1072799744 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031663616 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11605968 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1726496 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,91733984 +08/03/2026 16:02:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8155184 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11658288 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,1072799744 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031663616 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11605968 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1726496 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,91733984 +08/03/2026 16:02:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00164299999999995 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8789384 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13778248 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3659680 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,1072824320 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031729152 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13709928 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36480 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,91108016 +08/03/2026 16:02:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9190000 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13778248 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3659680 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,1072824320 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031729152 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13709928 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36480 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,91108016 +08/03/2026 16:02:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001562999999999981 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8537896 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9943824 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8125168 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:02:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,1072848896 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031729152 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9882624 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2651376 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89915408 +08/03/2026 16:02:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8946336 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9943824 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8125168 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,1074790400 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031729152 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9882624 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2651376 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89915408 +08/03/2026 16:02:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016060000000001073 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9588296 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11035296 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8125168 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,1077030912 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1035919360 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10945888 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,845320 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,88828600 +08/03/2026 16:02:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8859320 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11035296 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8125168 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:02:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:02:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,1077030912 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1035919360 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,462037304 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10945888 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,845320 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,88828600 +08/03/2026 16:02:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0037569999999998993 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8645184 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,782498856 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12943552 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7583312 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:02:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,1077075968 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1035919360 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,454886064 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12830664 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5750272 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,86694040 +08/03/2026 16:02:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001976000000000089 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8817768 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,786558248 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,5042168 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11601464 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,1077112832 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1035988992 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,457130888 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,4994704 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9714144 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,85648968 +08/03/2026 16:02:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9349176 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,786558248 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,5042168 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11601464 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:02:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,1079021568 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1035988992 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,457130888 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,4994704 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9714144 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,85648968 +08/03/2026 16:02:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0021089999999999165 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9099976 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,794635792 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11695520 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7396096 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,1085419520 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1044246528 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,463338752 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11662968 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5614416 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,83846992 +08/03/2026 16:02:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8982384 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,794635792 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11695520 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7396096 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,1085419520 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1044246528 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,463338752 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11662968 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5614416 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,83846992 +08/03/2026 16:02:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0020610000000000905 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8801880 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15671648 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:02:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:02:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089593344 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1048440832 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,465438656 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15615008 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1755592 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,82688808 +08/03/2026 16:02:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9302248 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15671648 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089589248 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1048440832 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,465438656 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15615008 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1755592 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,82688808 +08/03/2026 16:02:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00160299999999991 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9326504 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16067960 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3616800 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:02:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089622016 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1048440832 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,465438656 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15989288 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39104 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,80689984 +08/03/2026 16:02:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8586136 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16067960 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3616800 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089622016 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1048440832 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,465438656 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15989288 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39104 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,80689984 +08/03/2026 16:02:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015890000000000626 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8564288 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11899616 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8135592 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089654784 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1048506368 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,465438656 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11841176 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2718376 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,79786440 +08/03/2026 16:02:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016760000000000108 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9081912 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15018496 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8135592 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:02:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,1093820416 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1052631040 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,465438656 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14938184 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,907104 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,78863184 +08/03/2026 16:02:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9545008 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15018496 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8135592 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,1093824512 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1052631040 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,465438656 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14938184 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,907104 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,78863184 +08/03/2026 16:02:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003485999999999989 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9646000 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19274632 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,1093853184 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1052696576 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458363648 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19139856 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1643208 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,76669416 +08/03/2026 16:02:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9265976 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19274632 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:02:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,1093853184 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1052696576 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458363648 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19139856 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1643208 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,76669416 +08/03/2026 16:02:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015880000000000338 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9074312 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6920232 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15962032 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:02:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,1093861376 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1052696576 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458363648 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6888992 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12151168 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,74223896 +08/03/2026 16:02:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9172304 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6920232 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15962032 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:02:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,1099087872 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1052696576 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458363648 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6888992 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12151168 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,74223896 +08/03/2026 16:02:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001598999999999906 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9352576 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11597856 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15962032 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,1102213120 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1061019648 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458363648 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11547544 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10329328 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,72525296 +08/03/2026 16:02:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9225480 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11597856 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15962032 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,1102217216 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1061019648 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458363648 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11547544 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10329328 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,72525296 +08/03/2026 16:02:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001655000000000073 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9480384 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,798507968 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13278376 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15962032 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:02:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,1102245888 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1061019648 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,458363648 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13207112 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8535584 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,70945856 +08/03/2026 16:02:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0036279999999999646 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9418040 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,802451696 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18785024 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7434304 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,1102188544 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1060950016 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455089480 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18649808 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5572248 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,68718200 +08/03/2026 16:02:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9116136 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,802451696 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18785024 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7434304 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:02:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:02:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,1102192640 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1060950016 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455089480 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18649808 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5572248 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,68718200 +08/03/2026 16:02:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016460000000000363 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9415416 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,802451696 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10483384 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15735944 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174474288 +08/03/2026 16:02:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,1102184448 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1060954112 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,455089480 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10413920 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,11998272 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,66769824 +08/03/2026 16:02:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0011099999999999444 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10198304 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,771442072 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10483384 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15735944 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:02:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:02:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,1072771072 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1030279168 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,484412032 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9296688 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12018392 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,122083624 +08/03/2026 16:02:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0027610000000000134 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9515592 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,783654096 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6358144 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7649160 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,1072771072 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031163904 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492918616 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6311120 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5816536 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,121165688 +08/03/2026 16:02:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9321432 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,783654096 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6358144 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7649160 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,1077862400 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1031163904 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492918616 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6311120 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5816536 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,121165688 +08/03/2026 16:02:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0020290000000000585 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8720536 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,787779336 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10417984 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,1080336384 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1038737408 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,495222216 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10359648 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1724072 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,118890960 +08/03/2026 16:02:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9511512 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,787779336 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10417984 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,1080336384 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1038737408 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,495222216 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10359648 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1724072 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,118890960 +08/03/2026 16:02:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001818999999999904 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10334032 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,787779336 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8349632 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7664864 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,1080352768 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1038802944 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,495222216 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8315440 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4044312 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,117163384 +08/03/2026 16:02:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016200000000000658 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9993800 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,787779336 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11778832 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7664864 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,1084518400 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042927616 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,495222216 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11729296 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2214136 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113343888 +08/03/2026 16:02:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9593848 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,787779336 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11778832 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7664864 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,1084518400 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042927616 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,495222216 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11729296 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2214136 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113343888 +08/03/2026 16:02:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001674999999999982 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9416288 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,787779336 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13603856 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7664864 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:02:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,1084538880 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042927616 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,495222216 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13525904 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,344008 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110962328 +08/03/2026 16:02:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8403320 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,787779336 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13603856 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7664864 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,1084538880 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042927616 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,495222216 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13525904 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,344008 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110962328 +08/03/2026 16:02:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0039399999999999435 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8468408 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,791828560 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13610008 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,1084575744 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042997248 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492102136 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13508296 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1741672 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110183568 +08/03/2026 16:02:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9299712 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,791828560 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13610008 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,1084575744 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042997248 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492102136 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13508296 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1741672 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,110183568 +08/03/2026 16:02:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016210000000000946 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8876616 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,791828560 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9538624 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7709320 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,1084600320 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042997248 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492102136 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9456240 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4055280 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108408472 +08/03/2026 16:02:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8642944 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,791828560 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,9538624 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7709320 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:02:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:02:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,1087021056 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1042997248 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492102136 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,9456240 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4055280 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108408472 +08/03/2026 16:02:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015499999999999403 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8728056 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,791828560 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6532024 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11706504 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:02:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,1088757760 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047191552 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492102136 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6471616 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6169480 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,107527536 +08/03/2026 16:02:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8879608 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,791828560 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6532024 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11706504 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:02:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,1092927488 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047191552 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492102136 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6471616 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,6169480 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,107527536 +08/03/2026 16:02:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017660000000000453 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9185560 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,791828560 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,5651904 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15566480 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,1092943872 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1051385856 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,492102136 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,5613992 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8193216 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,106521960 +08/03/2026 16:02:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003981000000000012 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8980160 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12621272 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,1097109504 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055514624 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12563008 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1707832 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,104806632 +08/03/2026 16:02:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:02:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8972056 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12621272 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:02:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,1097109504 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055514624 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12563008 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1707832 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,104806632 +08/03/2026 16:02:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001583000000000001 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9416056 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16117328 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3709320 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:02:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,1097134080 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055514624 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16042656 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,35992 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,103640080 +08/03/2026 16:02:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9049080 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,16117328 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3709320 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:02:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,1097084928 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055514624 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,16042656 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,35992 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,103640080 +08/03/2026 16:02:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:02:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001583000000000001 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8387544 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12020112 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8369104 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:02:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:02:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:02:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,1097109504 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055580160 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11952976 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2825384 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101487896 +08/03/2026 16:02:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:02:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:02:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:02:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9345976 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12020112 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8369104 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:03:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,1098686464 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055580160 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11952976 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2825384 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,101487896 +08/03/2026 16:03:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001714999999999911 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10249128 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15522192 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8369104 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:03:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:03:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,1101295616 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1059770368 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15435440 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1012712 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99979520 +08/03/2026 16:03:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8988792 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803757104 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15522192 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8369104 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,1101295616 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1059770368 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496787088 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15435440 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1012712 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,99979520 +08/03/2026 16:03:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004061000000000092 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8262432 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,807932888 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15553376 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,1101316096 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1059774464 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,493727848 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15445104 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1668784 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,97208056 +08/03/2026 16:03:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016619999999999413 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8489640 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,807932888 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11648328 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7683792 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,1101340672 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1059774464 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,493727848 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11560776 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3950448 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,96766504 +08/03/2026 16:03:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9470144 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,807932888 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11648328 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7683792 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,1101340672 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1059774464 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,493727848 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11560776 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3950448 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,96766504 +08/03/2026 16:03:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016340000000000243 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9695008 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,807932888 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6065480 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15830040 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:03:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,1105510400 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1063968768 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,493727848 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6042720 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10222648 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,94596160 +08/03/2026 16:03:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9257176 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,807932888 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,6065480 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15830040 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,1108381696 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1063968768 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,493727848 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,6042720 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10222648 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,94596160 +08/03/2026 16:03:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016599999999999948 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9165464 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,807932888 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11248320 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15830040 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:03:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,1113849856 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1072287744 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,493727848 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11207640 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8372224 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,92186088 +08/03/2026 16:03:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8980288 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,807932888 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11248320 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15830040 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,1113849856 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1072287744 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,493727848 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11207640 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,8372224 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,92186088 +08/03/2026 16:03:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0039559999999999595 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9562960 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,820038072 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12859096 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:03:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,1113862144 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1072291840 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498503784 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12799216 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1787896 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90914648 +08/03/2026 16:03:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9900744 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,820038072 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12859096 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,1113862144 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1072291840 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498503784 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12799216 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1787896 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,90914648 +08/03/2026 16:03:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001559000000000088 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9856600 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,820038072 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14218744 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3579336 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:03:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,1113886720 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1072357376 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498503784 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14128400 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,38704 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,87957656 +08/03/2026 16:03:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9610440 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,820038072 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14218744 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3579336 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,1113890816 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1072357376 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498503784 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14128400 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,38704 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,87957656 +08/03/2026 16:03:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016089999999999716 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9168280 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,820038072 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10244800 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8181856 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,1113931776 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1072357376 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498503784 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10177152 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2776720 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,85058776 +08/03/2026 16:03:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016439999999999788 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8468544 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,820038072 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7686744 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12108288 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,1118105600 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1076551680 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498503784 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7639176 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4824880 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,83857976 +08/03/2026 16:03:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9077248 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,820038072 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7686744 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,12108288 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:03:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,1118105600 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1076551680 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498503784 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7639176 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4824880 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,83857976 +08/03/2026 16:03:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00387000000000004 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9954632 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,827953184 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10398672 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,1122267136 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1080680448 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499288360 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10329336 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1644248 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81671304 +08/03/2026 16:03:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9542144 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,827953184 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10398672 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,1122275328 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1080680448 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499288360 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10329336 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1644248 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81671304 +08/03/2026 16:03:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015879999999999228 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9187048 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,827953184 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15769864 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3686712 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,1122299904 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1080745984 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499288360 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15667568 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37248 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,79168536 +08/03/2026 16:03:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9241824 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,827953184 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15769864 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3686712 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,1122299904 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1080745984 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499288360 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15667568 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37248 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,79168536 +08/03/2026 16:03:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015140000000000153 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9196560 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,827953184 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11797920 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8182632 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,1122340864 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1080745984 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499288360 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11724480 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2695568 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,77647120 +08/03/2026 16:03:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9415224 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,827953184 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11797920 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8182632 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,1125359616 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1080745984 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499288360 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11724480 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2695568 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,77647120 +08/03/2026 16:03:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017160000000000508 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9362368 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,827953184 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15720256 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8182632 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,1126502400 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1084936192 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499288360 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15624032 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,805664 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,75234600 +08/03/2026 16:03:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0041120000000000045 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9307680 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,831943152 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7820672 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11454488 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:03:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,1126531072 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1084940288 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496024248 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7788880 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9579064 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,73465360 +08/03/2026 16:03:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9259232 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,831943152 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7820672 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11454488 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,1128304640 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1084940288 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,496024248 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7788880 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9579064 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,73465360 +08/03/2026 16:03:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00214700000000001 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9576952 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,839873720 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13509448 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,1134858240 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1093263360 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502093064 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13457736 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1700408 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,71808144 +08/03/2026 16:03:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9346048 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,839873720 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13509448 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,174271272 +08/03/2026 16:03:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,1134858240 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1093263360 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502093064 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13457736 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1700408 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,71808144 +08/03/2026 16:03:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0024849999999999595 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8903960 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,789570568 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15940440 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3668336 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.046875 +08/03/2026 16:03:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,1109508096 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1040596992 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501458296 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15659352 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,54176 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,122972320 +08/03/2026 16:03:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8739072 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,789570568 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15940440 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3668336 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,1109508096 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1040596992 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501458296 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15659352 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,54176 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,122972320 +08/03/2026 16:03:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003078999999999943 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8697208 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,789570568 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12014856 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8247952 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089146880 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047302144 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501458296 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11967480 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2818128 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,122144352 +08/03/2026 16:03:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9028104 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,789570568 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12014856 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8247952 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089146880 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047302144 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501458296 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11967480 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2818128 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,122144352 +08/03/2026 16:03:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001759000000000066 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9500624 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,789570568 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15487384 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8247952 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.921875 +08/03/2026 16:03:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089146880 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047302144 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501458296 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15417312 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1067776 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,120610280 +08/03/2026 16:03:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004128999999999938 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9467416 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15769032 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089146880 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047306240 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15674736 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1734904 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,118027056 +08/03/2026 16:03:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8534048 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15769032 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:03:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089146880 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047306240 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15674736 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1734904 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,118027056 +08/03/2026 16:03:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016010000000000746 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8789064 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11592296 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7844040 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:03:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089146880 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047306240 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11527040 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4173152 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,117553592 +08/03/2026 16:03:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8569784 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11592296 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7844040 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,1089146880 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1047306240 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11527040 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4173152 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,117553592 +08/03/2026 16:03:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015720000000000178 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8744576 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14378184 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7844040 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:37,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:37,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:37,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:37,System.Runtime,dotnet.process.memory.working_set (By),Metric,1090846720 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1049047040 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14283544 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2402864 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116488712 +08/03/2026 16:03:37,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:37,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:37,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:37,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9054632 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14378184 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7844040 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:38,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:38,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:38,System.Runtime,dotnet.process.memory.working_set (By),Metric,1090846720 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1049047040 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14283544 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2402864 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116488712 +08/03/2026 16:03:38,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:38,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:38,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:38,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016259999999999053 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9097384 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10690552 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11833840 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:39,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:03:39,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:39,System.Runtime,dotnet.process.memory.working_set (By),Metric,1090879488 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1049051136 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10624584 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4570680 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,115361584 +08/03/2026 16:03:39,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:39,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:39,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:39,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8945056 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,793624752 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10690552 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11833840 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:40,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:40,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:40,System.Runtime,dotnet.process.memory.working_set (By),Metric,1093165056 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1049051136 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498446128 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10624584 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4570680 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,115361584 +08/03/2026 16:03:40,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:40,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:40,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:40,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.004713000000000078 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8742440 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,801791288 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8632040 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7653888 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:41,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:41,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:41,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:41,System.Runtime,dotnet.process.memory.working_set (By),Metric,1095032832 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1053245440 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499488480 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8589264 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5821160 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113681432 +08/03/2026 16:03:41,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:41,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:41,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:41,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:42,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8543744 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,801791288 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8632040 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7653888 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:42,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:42,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:42,System.Runtime,dotnet.process.memory.working_set (By),Metric,1098735616 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1053245440 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499488480 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8589264 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5821160 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113681432 +08/03/2026 16:03:42,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:42,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:42,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:42,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0022619999999999862 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8741408 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,805921256 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13821304 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:43,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:03:43,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:43,System.Runtime,dotnet.process.memory.working_set (By),Metric,1099202560 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1057374208 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501799160 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13756912 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1797272 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,112755376 +08/03/2026 16:03:43,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:43,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:43,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:43,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:44,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017279999999999518 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8630416 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,805921256 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15352528 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3545496 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:44,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:44,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:44,System.Runtime,dotnet.process.memory.working_set (By),Metric,1099227136 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1057439744 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501799160 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15269968 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39136 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111679208 +08/03/2026 16:03:44,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:44,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:44,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:44,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9511400 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,805921256 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15352528 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3545496 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:45,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:45,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:45,System.Runtime,dotnet.process.memory.working_set (By),Metric,1099227136 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1057439744 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501799160 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15269968 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,39136 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111679208 +08/03/2026 16:03:45,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:45,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:45,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:45,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016320000000000778 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8784168 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,805921256 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11714424 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7970472 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:46,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:46,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:46,System.Runtime,dotnet.process.memory.working_set (By),Metric,1099251712 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1057439744 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501799160 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11661704 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2600056 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,109631240 +08/03/2026 16:03:46,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:46,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:46,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:46,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9275784 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,805921256 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11714424 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7970472 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:47,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:47,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:47,System.Runtime,dotnet.process.memory.working_set (By),Metric,1099251712 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1057439744 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501799160 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11661704 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2600056 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,109631240 +08/03/2026 16:03:47,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:47,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:47,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:47,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017359999999999598 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9061368 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,805921256 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14571960 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7970472 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:48,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:48,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:48,System.Runtime,dotnet.process.memory.working_set (By),Metric,1103392768 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1061629952 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501799160 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14492136 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,832736 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108170088 +08/03/2026 16:03:48,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:48,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:48,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:48,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9067968 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,805921256 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14571960 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7970472 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:49,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:49,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:49,System.Runtime,dotnet.process.memory.working_set (By),Metric,1103392768 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1061629952 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,501799160 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14492136 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,832736 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,108170088 +08/03/2026 16:03:49,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:49,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:49,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:49,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.00380999999999998 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8788000 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,809697928 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11041160 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7499184 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:50,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:50,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:50,System.Runtime,dotnet.process.memory.working_set (By),Metric,1103417344 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1061634048 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498542184 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10981264 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5641592 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,106297560 +08/03/2026 16:03:50,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:50,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:50,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:50,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:51,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8844720 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,809697928 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11041160 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7499184 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:51,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:51,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:03:51,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:51,System.Runtime,dotnet.process.memory.working_set (By),Metric,1105965056 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1061634048 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498542184 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10981264 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5641592 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,106297560 +08/03/2026 16:03:51,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:51,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:51,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:51,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001979000000000064 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9209656 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,813673192 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12385352 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7571064 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:52,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:52,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:52,System.Runtime,dotnet.process.memory.working_set (By),Metric,1107587072 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1065828352 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,500687368 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12333984 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5740088 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,105394360 +08/03/2026 16:03:52,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:52,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:52,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:52,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:53,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10005152 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,813673192 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,12385352 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7571064 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:53,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:53,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:53,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:53,System.Runtime,dotnet.process.memory.working_set (By),Metric,1111568384 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1065828352 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,500687368 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,12333984 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5740088 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,105394360 +08/03/2026 16:03:53,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:53,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:53,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:53,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.002266999999999908 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8635560 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,817720336 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15862912 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:54,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:54,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:54,System.Runtime,dotnet.process.memory.working_set (By),Metric,1111773184 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1069957120 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502920688 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15790968 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1713408 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,102343104 +08/03/2026 16:03:54,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:54,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:54,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:54,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:03:55,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016400000000000858 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9370560 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,817720336 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11756240 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7790976 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:55,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:55,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:55,System.Runtime,dotnet.process.memory.working_set (By),Metric,1111801856 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1070022656 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502920688 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11697504 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4130624 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,100423400 +08/03/2026 16:03:55,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:55,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:55,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:55,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9669136 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,817720336 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11756240 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7790976 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:56,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:56,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:56,System.Runtime,dotnet.process.memory.working_set (By),Metric,1111801856 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1070022656 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502920688 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11697504 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4130624 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,100423400 +08/03/2026 16:03:56,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:56,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:56,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:56,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015239999999999698 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9244880 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,817720336 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15077672 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7790976 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:57,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:03:57,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:57,System.Runtime,dotnet.process.memory.working_set (By),Metric,1115971584 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1074147328 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502920688 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15002824 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2262160 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,98631328 +08/03/2026 16:03:57,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:57,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:57,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:57,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9482720 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,817720336 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15077672 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7790976 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:58,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:03:58,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:58,System.Runtime,dotnet.process.memory.working_set (By),Metric,1115971584 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1074147328 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502920688 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15002824 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2262160 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,98631328 +08/03/2026 16:03:58,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:58,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:58,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:03:58,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016129999999999756 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10063264 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,817720336 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15738616 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7790976 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:03:59,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:03:59,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:03:59,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:03:59,System.Runtime,dotnet.process.memory.working_set (By),Metric,1116000256 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1074212864 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502920688 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15645696 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,442024 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,95382288 +08/03/2026 16:03:59,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:03:59,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:03:59,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:03:59,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9103352 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,817720336 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15738616 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7790976 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:00,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:00,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:00,System.Runtime,dotnet.process.memory.working_set (By),Metric,1116004352 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1074212864 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,502920688 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15645696 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,442024 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,95382288 +08/03/2026 16:04:00,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:00,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:00,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:00,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003707000000000016 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8943872 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11586648 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7679080 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:01,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:01,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:01,System.Runtime,dotnet.process.memory.working_set (By),Metric,1116024832 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1074216960 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499847760 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11517576 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5828840 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,93945864 +08/03/2026 16:04:01,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:01,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:01,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:01,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:04:02,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8966672 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11586648 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7679080 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:02,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:02,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:02,System.Runtime,dotnet.process.memory.working_set (By),Metric,1119047680 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1074216960 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499847760 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11517576 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,5828840 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,93945864 +08/03/2026 16:04:02,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:02,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:02,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:02,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.002130999999999994 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9613664 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18455232 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:03,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:03,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:03,System.Runtime,dotnet.process.memory.working_set (By),Metric,1120194560 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1078407168 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498062448 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18339864 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1677976 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,92063288 +08/03/2026 16:04:03,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:03,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:03,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:03,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:04:04,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0017679999999999918 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9383960 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14329008 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7789704 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:04,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:04,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:04,System.Runtime,dotnet.process.memory.working_set (By),Metric,1120194560 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1078407168 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498062448 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14226600 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4121648 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89583752 +08/03/2026 16:04:04,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:04,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:04,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:04,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9214568 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14329008 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7789704 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:05,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:05,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.9375 +08/03/2026 16:04:05,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:05,System.Runtime,dotnet.process.memory.working_set (By),Metric,1120194560 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1078407168 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498062448 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14226600 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,4121648 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,89583752 +08/03/2026 16:04:05,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:05,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:05,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:05,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015570000000000306 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9534440 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8295592 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15648544 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:06,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:04:06,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:06,System.Runtime,dotnet.process.memory.working_set (By),Metric,1120227328 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1078411264 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498062448 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8248328 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10127168 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,87509824 +08/03/2026 16:04:06,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:06,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:06,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:06,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8465240 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,8295592 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15648544 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:07,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:07,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:07,System.Runtime,dotnet.process.memory.working_set (By),Metric,1123016704 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1078411264 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498062448 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,8248328 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10127168 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,87509824 +08/03/2026 16:04:07,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:07,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:07,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:07,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016140000000000043 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8111584 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11663480 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19789048 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:08,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:08,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:08,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:08,System.Runtime,dotnet.process.memory.working_set (By),Metric,1128562688 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1086734336 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498062448 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11643144 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12423424 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,86533616 +08/03/2026 16:04:08,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:08,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:08,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:08,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9116384 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,821857528 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11663480 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19789048 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:09,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:09,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:04:09,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:09,System.Runtime,dotnet.process.memory.working_set (By),Metric,1128562688 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1086734336 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,498062448 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11643144 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12423424 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,86533616 +08/03/2026 16:04:09,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:09,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:09,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:09,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0036209999999999853 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9896344 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14765920 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:10,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:10,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:10,System.Runtime,dotnet.process.memory.working_set (By),Metric,1132736512 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1090928640 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,506963008 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14720024 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1671864 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,83915296 +08/03/2026 16:04:10,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:10,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:10,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:10,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:04:11,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9291264 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14765920 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:11,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:04:11,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:11,System.Runtime,dotnet.process.memory.working_set (By),Metric,1132736512 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1090928640 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,506963008 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14720024 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1671864 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,83915296 +08/03/2026 16:04:11,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:11,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:11,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:11,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0018279999999999408 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8868216 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15144432 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3680168 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:12,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:04:12,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:12,System.Runtime,dotnet.process.memory.working_set (By),Metric,1132765184 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1090928640 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,506963008 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15071160 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37864 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,82473744 +08/03/2026 16:04:12,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:12,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:12,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:12,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8289336 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15144432 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3680168 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:13,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:13,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:13,System.Runtime,dotnet.process.memory.working_set (By),Metric,1132765184 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1090928640 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,506963008 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15071160 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,37864 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,82473744 +08/03/2026 16:04:13,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:13,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:13,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:13,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0014930000000000776 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9225976 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10989344 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8348776 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:14,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:14,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:14,System.Runtime,dotnet.process.memory.working_set (By),Metric,1132789760 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1090994176 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,506963008 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10928976 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2883544 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,81377104 +08/03/2026 16:04:14,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:14,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:14,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:14,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016039999999999388 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8718984 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13184248 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8348776 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:15,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:15,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:15,System.Runtime,dotnet.process.memory.working_set (By),Metric,1136975872 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095184384 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,506963008 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13101032 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1097320 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,79852048 +08/03/2026 16:04:15,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:15,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:15,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:15,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9133256 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,13184248 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,8348776 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:16,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.015625 +08/03/2026 16:04:16,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.953125 +08/03/2026 16:04:16,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:16,System.Runtime,dotnet.process.memory.working_set (By),Metric,1136975872 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095184384 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,506963008 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,13101032 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1097320 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,79852048 +08/03/2026 16:04:16,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:16,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:16,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:16,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003502000000000005 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8661248 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18209696 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:17,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:17,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:17,System.Runtime,dotnet.process.memory.working_set (By),Metric,1137004544 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095188480 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18082368 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1662856 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,78660160 +08/03/2026 16:04:17,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:17,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:17,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:17,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:04:18,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8843368 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,18209696 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:18,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:18,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:18,System.Runtime,dotnet.process.memory.working_set (By),Metric,1136996352 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095188480 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,18082368 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1662856 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,78660160 +08/03/2026 16:04:18,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:18,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:18,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:18,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015730000000000466 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8791176 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14202624 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7687976 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:19,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:04:19,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:19,System.Runtime,dotnet.process.memory.working_set (By),Metric,1137004544 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095184384 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14084440 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3998216 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,77476920 +08/03/2026 16:04:19,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:19,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:19,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:19,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9005160 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14202624 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7687976 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:20,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:20,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:20,System.Runtime,dotnet.process.memory.working_set (By),Metric,1137004544 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095184384 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14084440 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,3998216 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,77476920 +08/03/2026 16:04:20,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:20,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:20,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:20,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001591000000000009 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9105464 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7999464 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15488296 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:21,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:21,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:21,System.Runtime,dotnet.process.memory.working_set (By),Metric,1137049600 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095254016 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7942216 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9926576 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,76120576 +08/03/2026 16:04:21,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:21,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:21,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:21,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9337416 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,7999464 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15488296 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:22,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:22,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:22,System.Runtime,dotnet.process.memory.working_set (By),Metric,1143308288 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1095254016 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,7942216 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,9926576 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,76120576 +08/03/2026 16:04:22,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:22,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:22,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:22,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016089999999999716 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8603920 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10890640 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19643384 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:23,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:23,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:23,System.Runtime,dotnet.process.memory.working_set (By),Metric,1145372672 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1103577088 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10861448 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12240752 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,73986016 +08/03/2026 16:04:23,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:23,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:23,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:23,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8836312 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,837983096 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,10890640 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,19643384 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:24,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:24,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:24,System.Runtime,dotnet.process.memory.working_set (By),Metric,1149255680 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1103577088 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,499891072 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,10861448 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,12240752 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,73986016 +08/03/2026 16:04:24,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:24,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:24,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:24,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003561999999999954 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8948000 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,853945576 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14716240 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:25,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:25,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:25,System.Runtime,dotnet.process.memory.working_set (By),Metric,1149530112 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1107705856 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,508535320 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14662488 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1734600 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,73210752 +08/03/2026 16:04:25,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:25,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:25,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:25,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:04:26,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.001547000000000076 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8976272 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,853945576 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15183080 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3560320 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,172746784 +08/03/2026 16:04:26,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:26,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:26,System.Runtime,dotnet.process.memory.working_set (By),Metric,1149558784 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1107705856 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,508535320 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,15099752 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,36992 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,71717872 +08/03/2026 16:04:26,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:26,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:26,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:26,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:27,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0.001390200000000008 +08/03/2026 16:04:27,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,124 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0009719999999999729 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9604528 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,15183080 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3560320 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:27,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0.03125 +08/03/2026 16:04:27,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.015625 +08/03/2026 16:04:27,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:27,System.Runtime,dotnet.process.memory.working_set (By),Metric,1111855104 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1051029504 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,515547648 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14589032 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,54984 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,116314512 +08/03/2026 16:04:27,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:27,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:27,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:27,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:27,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,1 +08/03/2026 16:04:27,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,1 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:27,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0027559999999999807 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8719312 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11394968 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7982136 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:28,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:28,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:28,System.Runtime,dotnet.process.memory.working_set (By),Metric,1097584640 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055113216 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,515547648 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11335888 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2693728 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,115211616 +08/03/2026 16:04:28,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:28,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:28,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:28,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8959944 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11394968 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7982136 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:29,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:29,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:29,System.Runtime,dotnet.process.memory.working_set (By),Metric,1097584640 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1055113216 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,515547648 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11335888 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,2693728 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,115211616 +08/03/2026 16:04:29,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:29,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:29,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:29,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016850000000000476 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9414336 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14512728 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7982136 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:30,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2 +08/03/2026 16:04:30,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:30,System.Runtime,dotnet.process.memory.working_set (By),Metric,1099018240 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1056546816 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,515547648 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14434264 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,906856 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113263552 +08/03/2026 16:04:30,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:30,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:30,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:30,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8962784 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,14512728 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,7982136 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:31,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:31,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:31,System.Runtime,dotnet.process.memory.working_set (By),Metric,1098973184 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1056546816 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,515547648 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,14434264 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,906856 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,113263552 +08/03/2026 16:04:31,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:31,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:31,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:31,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.003825999999999996 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8319336 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19645000 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:32,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:32,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:32,System.Runtime,dotnet.process.memory.working_set (By),Metric,1098973184 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1056546816 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,508592712 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19499648 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1730424 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,112146144 +08/03/2026 16:04:32,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:32,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:32,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:32,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,1 +08/03/2026 16:04:33,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,9058280 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,19645000 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,3523920 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:33,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.984375 +08/03/2026 16:04:33,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:33,System.Runtime,dotnet.process.memory.working_set (By),Metric,1098964992 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1056546816 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,508592712 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,19499648 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,1730424 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,112146144 +08/03/2026 16:04:33,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:33,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:33,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:33,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0016579999999999373 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,8776600 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11815048 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,11495128 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:34,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.96875 +08/03/2026 16:04:34,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:34,System.Runtime,dotnet.process.memory.working_set (By),Metric,1098964992 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1056546816 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,508592712 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11737032 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,7774064 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,111358928 +08/03/2026 16:04:34,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:34,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:34,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:34,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0.0015249999999999986 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,10093552 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11157800 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15646208 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:35,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,2.03125 +08/03/2026 16:04:35,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:35,System.Runtime,dotnet.process.memory.working_set (By),Metric,1101869056 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1059483648 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,508592712 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11098848 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10012840 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,109429488 +08/03/2026 16:04:35,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:35,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:35,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,1 +08/03/2026 16:04:35,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.jit.compilation.time (s / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.jit.compiled_il.size (By / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.pause.time (s / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.heap.total_allocated (By / 1 sec),Rate,7100560 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen2],Metric,803225856 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen0],Metric,11157800 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=poh],Metric,8184 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=gen1],Metric,15646208 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.size (By)[gc.heap.generation=loh],Metric,168455216 +08/03/2026 16:04:36,System.Runtime,dotnet.monitor.lock_contentions ({contention} / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=system],Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.process.cpu.time (s / 1 sec)[cpu.mode=user],Rate,1.453125 +08/03/2026 16:04:36,System.Runtime,dotnet.assembly.count ({assembly}),Metric,16 +08/03/2026 16:04:36,System.Runtime,dotnet.process.memory.working_set (By),Metric,1101824000 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.memory.committed_size (By),Metric,1059483648 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen2],Metric,508592712 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen0],Metric,11098848 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=poh],Metric,0 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=gen1],Metric,10012840 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.last_collection.heap.fragmentation.size (By)[gc.heap.generation=loh],Metric,109429488 +08/03/2026 16:04:36,System.Runtime,dotnet.process.cpu.count ({cpu}),Metric,16 +08/03/2026 16:04:36,System.Runtime,dotnet.timer.count ({timer}),Metric,0 +08/03/2026 16:04:36,System.Runtime,dotnet.thread_pool.thread.count ({thread} / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.thread_pool.queue.length ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.jit.compiled_methods ({method} / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.thread_pool.work_item.count ({work_item} / 1 sec),Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen2],Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen0],Rate,0 +08/03/2026 16:04:36,System.Runtime,dotnet.gc.collections ({collection} / 1 sec)[gc.heap.generation=gen1],Rate,0 diff --git a/src/ZeroGC/results/report.html b/src/ZeroGC/results/report.html index 468fb6fab83..c62c191612b 100644 --- a/src/ZeroGC/results/report.html +++ b/src/ZeroGC/results/report.html @@ -41,7 +41,7 @@

ZeroGC vs. Workstation GC vs. Server GC

-

Generated 2026-07-21 09:13:06 on this machine. Eleven workloads (2 hand-written sample apps, 5 GCPerfSim scenarios, 2 zero-alloc scenarios, dotLLM inference, and a growing-cache scenario), each run once per GC configuration.

+

Generated 2026-08-03 16:15:48 on this machine. Eleven workloads (2 hand-written sample apps, 5 GCPerfSim scenarios, 2 zero-alloc scenarios, dotLLM inference, and a growing-cache scenario), each run once per GC configuration.

Workstation GC (default, non-concurrent-by-default background GC) @@ -430,128 +430,6 @@

Working set (MB) over time

Workstation GCServer GCZeroGC
-
-

GCPerfSim: cache / large-object-heavy workload

-

GCPerfSim.exe -tc 2 -tlgb 0.3 -lohar 100 -sohsr 500-4000 -sohsi 8 -lohsr 100000-300000 -lohsi 4 -at simple -c 300000 -tagb 5.3

- - - - - - - - - - - - - - - -
MetricWorkstation GCServer GCZeroGC
Duration (s)602.4599.2601.1
Allocation throughput (MB/s)9.01
9.06
9.03
Total allocated5.30 GB
5.30 GB
5.30 GB
Total GC pause time187 ms
51 ms
0 ms
Gen0 collections358
37
0
Gen1 collections145170
Gen2 collections12120
GC heap size617.41 MB775.04 MB6.25 GB
Total committed bytes1.03 GB
872.92 MB
6.25 GB
Peak working set1.07 GB
916.98 MB
5.53 GB
- -
-

GC pause time / memory / throughput percentiles (over the full run)

- - - - - - - -
Workstation GCServer GCZeroGC
Metricavgp50p90p99avgp50p90p99avgp50p90p99
GC pause time (ms per ~1s sample)1.41 ms1.49 ms3.54 ms4.58 ms0.32 ms0.00 ms0.00 ms7.72 ms0.00 ms0.00 ms0.00 ms0.00 ms
Working set (MB)8308971,0561,0898498939139153,0293,0285,1515,623
Throughput (MB/s)8.68.69.39.88.78.69.510.09.10.00.0128.0
-
- -
-
-

GC pause time (ms) over time

- - - 0.0 ms -4.6 ms -9.2 ms -13.8 ms -18.4 ms - - - - - - - - time (s), 0-597 - -
-
-

Throughput (MB/s) over time

- - - 0.0 MB/s -34.6 MB/s -69.1 MB/s -103.7 MB/s -138.2 MB/s - - - - - - - - time (s), 0-597 - -
-
-

GC pause time (ms) percentiles (avg / p50 / p90 / p99 / max, full run)

- - 0.00 ms -33.93 ms -67.86 ms -101.79 ms -135.71 ms - - - - Workstation GC Avg: 1.414 ms -Server GC Avg: 0.321 ms -ZeroGC Avg: 0.000 ms -Workstation GC P50: 1.491 ms -Server GC P50: 0.000 ms -ZeroGC P50: 0.000 ms -Workstation GC P90: 3.536 ms -Server GC P90: 0.000 ms -ZeroGC P90: 0.000 ms -Workstation GC P99: 4.583 ms -Server GC P99: 7.725 ms -ZeroGC P99: 0.000 ms -Workstation GC Max: 118.012 ms -Server GC Max: 25.385 ms -ZeroGC Max: 0.000 ms - - AvgP50P90P99Max - -
-
-

Working set (MB) over time

- - - 0.0 MB -1,525.2 MB -3,050.5 MB -4,575.7 MB -6,100.9 MB - - - - - - - - time (s), 0-596 - -
-
-
Workstation GCServer GCZeroGC

GCPerfSim: high-throughput transient object churn

GCPerfSim.exe -tc 8 -tlgb 0.1 -lohar 0 -sohsr 200-600 -sohsi 200 -at simple -c 300000 -tagb 3.4

@@ -1408,6 +1286,128 @@

Working set (MB) over time

Workstation GCServer GCZeroGC
+
+

GCPerfSim: cache / large-object-heavy workload

+

GCPerfSim.exe -tc 2 -tlgb 0.3 -lohar 100 -sohsr 500-4000 -sohsi 8 -lohsr 100000-300000 -lohsi 4 -at simple -c 300000 -tagb 5.3

+ + + + + + + + + + + + + + + +
MetricWorkstation GCServer GCZeroGC
Duration (s)596.2601.4601.1
Allocation throughput (MB/s)9.10
9.02
9.03
Total allocated5.30 GB
5.30 GB
5.30 GB
Total GC pause time170 ms
22 ms
0 ms
Gen0 collections359
42
0
Gen1 collections134170
Gen2 collections12120
GC heap size952.24 MB789.34 MB6.25 GB
Total committed bytes1.03 GB
902.00 MB
6.25 GB
Peak working set1.07 GB
946.71 MB
5.53 GB
+ +
+

GC pause time / memory / throughput percentiles (over the full run)

+ + + + + + + +
Workstation GCServer GCZeroGC
Metricavgp50p90p99avgp50p90p99avgp50p90p99
GC pause time (ms per ~1s sample)1.20 ms1.47 ms3.50 ms4.34 ms0.30 ms0.00 ms0.00 ms7.84 ms0.00 ms0.00 ms0.00 ms0.00 ms
Working set (MB)8268791,0551,0848278669389453,0293,0285,1515,623
Throughput (MB/s)8.78.79.410.07.08.49.410.19.10.00.0128.0
+
+ +
+
+

GC pause time (ms) over time

+ + + 0.0 ms +1.9 ms +3.9 ms +5.8 ms +7.8 ms + + + + + + + + time (s), 0-597 + +
+
+

Throughput (MB/s) over time

+ + + 0.0 MB/s +34.6 MB/s +69.1 MB/s +103.7 MB/s +138.2 MB/s + + + + + + + + time (s), 0-597 + +
+
+

GC pause time (ms) percentiles (avg / p50 / p90 / p99 / max, full run)

+ + 0.00 ms +6.15 ms +12.30 ms +18.45 ms +24.60 ms + + + + Workstation GC Avg: 1.195 ms +Server GC Avg: 0.296 ms +ZeroGC Avg: 0.000 ms +Workstation GC P50: 1.465 ms +Server GC P50: 0.000 ms +ZeroGC P50: 0.000 ms +Workstation GC P90: 3.502 ms +Server GC P90: 0.000 ms +ZeroGC P90: 0.000 ms +Workstation GC P99: 4.344 ms +Server GC P99: 7.840 ms +ZeroGC P99: 0.000 ms +Workstation GC Max: 4.749 ms +Server GC Max: 21.390 ms +ZeroGC Max: 0.000 ms + + AvgP50P90P99Max + +
+
+

Working set (MB) over time

+ + + 0.0 MB +1,525.2 MB +3,050.5 MB +4,575.7 MB +6,100.9 MB + + + + + + + + time (s), 0-596 + +
+
+
Workstation GCServer GCZeroGC
diff --git a/src/ZeroGC/results/results-full.json b/src/ZeroGC/results/results-full.json index c7cc17e38ec..78115dcb3d9 100644 --- a/src/ZeroGC/results/results-full.json +++ b/src/ZeroGC/results/results-full.json @@ -16674,51 +16674,51 @@ } }, { - "ScenarioId": "gcperfsim-cache", - "ScenarioName": "GCPerfSim: cache / large-object-heavy workload", + "ScenarioId": "gcperfsim-churn", + "ScenarioName": "GCPerfSim: high-throughput transient object churn", "GcModeId": "workstation", "GcModeName": "Workstation GC", - "DurationSeconds": 602.4038526, + "DurationSeconds": 634.2785712, "Summary": { "OperationsTotal": null, - "OpsPerSecondOverall": 9.009243895747826, - "TotalAllocatedBytes": 5690835056.0, - "Gen0Collections": 358, - "Gen1Collections": 145, - "Gen2Collections": 12, - "WorkingSetBytes": 1150017536.0, - "PeakWorkingSetBytes": 1150017536.0, - "HeapSizeBytes": 647404144.0, - "TotalCommittedBytes": 1108398080.0, + "OpsPerSecondOverall": 5.4890717366049735, + "TotalAllocatedBytes": 3650722808.0, + "Gen0Collections": 243, + "Gen1Collections": 208, + "Gen2Collections": 4, + "WorkingSetBytes": 187584512.0, + "PeakWorkingSetBytes": 187584512.0, + "HeapSizeBytes": 152745464.0, + "TotalCommittedBytes": 153419776.0, "GcName": "Workstation GC", - "TagbUsed": 5.3 + "TagbUsed": 3.4 }, "PauseTimePctStats": { - "Avg": 0.14139031719532544, - "P50": 0.1490999999999909, - "P90": 0.3536000000000039, - "P99": 0.4583000000000004, - "Max": 11.801200000000001, + "Avg": 0.05171949286846273, + "P50": 0.0, + "P90": 0.16299999999999648, + "P99": 0.22400000000000198, + "Max": 1.3477000000000003, "Min": 0.0, - "Count": 599 + "Count": 631 }, "WorkingSetStats": { - "Avg": 870661522.7733333, - "P50": 940093440.0, - "P90": 1107578880.0, - "P99": 1141641216.0, - "Max": 1150017536.0, - "Min": 413605888.0, - "Count": 600 + "Avg": 179957008.20253164, + "P50": 180490240.0, + "P90": 184733696.0, + "P99": 184762368.0, + "Max": 187584512.0, + "Min": 161189888.0, + "Count": 632 }, "AllocRateMBStats": { - "Avg": 8.626717135981846, - "P50": 8.607841491699219, - "P90": 9.257087707519531, - "P99": 9.832664489746094, - "Max": 10.1839599609375, - "Min": 4.468376159667969, - "Count": 599 + "Avg": 5.72595569108821, + "P50": 5.7409515380859375, + "P90": 5.8350372314453125, + "P99": 5.919059753417969, + "Max": 5.986488342285156, + "Min": 2.8428955078125, + "Count": 631 }, "OpsPerSecStats": { "Avg": 0, @@ -16733,162 +16733,130 @@ "PauseTimePct": [ { "T": 1.0, - "V": 0.4564 - }, - { - "T": 5.0, "V": 0.0 }, { - "T": 9.0, + "T": 6.0, "V": 0.0 }, { - "T": 13.0, - "V": 0.1331 + "T": 11.0, + "V": 0.0 }, { - "T": 17.0, - "V": 0.1384 + "T": 16.0, + "V": 0.0 }, { "T": 21.0, - "V": 0.1342 + "V": 0.0564 }, { - "T": 25.0, - "V": 0.0 + "T": 26.0, + "V": 0.0593 }, { - "T": 29.0, + "T": 31.0, "V": 0.0 }, { - "T": 33.0, + "T": 36.0, "V": 0.0 }, - { - "T": 37.0, - "V": 0.306 - }, { "T": 41.0, - "V": 0.1436 - }, - { - "T": 45.0, - "V": 0.3253 - }, - { - "T": 49.0, "V": 0.0 }, { - "T": 53.0, + "T": 46.0, "V": 0.0 }, { - "T": 57.0, - "V": 0.1395 + "T": 51.0, + "V": 0.0612 }, { - "T": 61.0, - "V": 0.3439 + "T": 56.0, + "V": 0.0996 }, { - "T": 65.0, - "V": 0.1553 + "T": 61.0, + "V": 0.0 }, { - "T": 69.0, + "T": 66.0, "V": 0.0 }, { - "T": 73.0, + "T": 71.0, "V": 0.0 }, { - "T": 77.0, - "V": 0.2003 + "T": 76.0, + "V": 0.0 }, { "T": 81.0, - "V": 0.1936 + "V": 0.0607 }, { - "T": 85.0, - "V": 0.1985 + "T": 86.0, + "V": 0.0625 }, { - "T": 89.0, - "V": 0.0 + "T": 91.0, + "V": 0.0907 }, { - "T": 93.0, + "T": 96.0, "V": 0.0 }, - { - "T": 97.0, - "V": 0.1559 - }, { "T": 101.0, - "V": 0.1543 - }, - { - "T": 105.0, - "V": 0.1611 - }, - { - "T": 109.0, "V": 0.0 }, { - "T": 113.0, + "T": 106.0, "V": 0.0 }, { - "T": 117.0, + "T": 111.0, "V": 0.0 }, { - "T": 121.0, - "V": 0.3723 + "T": 116.0, + "V": 0.0873 }, { - "T": 125.0, - "V": 0.1482 + "T": 121.0, + "V": 0.0899 }, { - "T": 129.0, - "V": 0.4 + "T": 126.0, + "V": 0.0 }, { - "T": 133.0, + "T": 131.0, "V": 0.0 }, { - "T": 137.0, + "T": 136.0, "V": 0.0 }, { "T": 141.0, - "V": 0.1601 - }, - { - "T": 145.0, - "V": 0.1917 + "V": 0.0 }, { - "T": 149.0, - "V": 0.1641 + "T": 146.0, + "V": 0.1509 }, { - "T": 153.0, - "V": 0.0 + "T": 151.0, + "V": 0.0981 }, { - "T": 157.0, + "T": 156.0, "V": 0.0 }, { @@ -16896,1644 +16864,1400 @@ "V": 0.0 }, { - "T": 165.0, - "V": 0.3674 - }, - { - "T": 169.0, - "V": 0.1622 - }, - { - "T": 173.0, - "V": 0.1732 - }, - { - "T": 177.0, + "T": 166.0, "V": 0.0 }, { - "T": 181.0, + "T": 171.0, "V": 0.0 }, { - "T": 185.0, - "V": 0.0 + "T": 176.0, + "V": 0.1313 }, { - "T": 189.0, - "V": 0.2187 + "T": 181.0, + "V": 0.1467 }, { - "T": 193.0, - "V": 0.2204 + "T": 186.0, + "V": 0.2567 }, { - "T": 197.0, - "V": 0.1623 + "T": 191.0, + "V": 0.0 }, { - "T": 201.0, + "T": 196.0, "V": 0.0 }, { - "T": 205.0, + "T": 201.0, "V": 0.0 }, { - "T": 209.0, - "V": 0.3862 + "T": 206.0, + "V": 0.1119 }, { - "T": 213.0, - "V": 0.1665 + "T": 211.0, + "V": 0.1309 }, { - "T": 217.0, - "V": 0.3898 + "T": 216.0, + "V": 0.1391 }, { "T": 221.0, "V": 0.0 }, { - "T": 225.0, + "T": 226.0, "V": 0.0 }, { - "T": 229.0, - "V": 0.2221 - }, - { - "T": 233.0, - "V": 0.1812 + "T": 231.0, + "V": 0.0 }, { - "T": 237.0, - "V": 0.4057 + "T": 236.0, + "V": 0.0 }, { "T": 241.0, - "V": 0.0 + "V": 0.1109 }, { - "T": 245.0, - "V": 0.0 + "T": 246.0, + "V": 0.1224 }, { - "T": 249.0, + "T": 251.0, "V": 0.0 }, { - "T": 253.0, - "V": 0.4045 - }, - { - "T": 257.0, - "V": 0.2123 + "T": 256.0, + "V": 0.0 }, { "T": 261.0, - "V": 0.2015 - }, - { - "T": 265.0, "V": 0.0 }, { - "T": 269.0, + "T": 266.0, "V": 0.0 }, { - "T": 273.0, - "V": 0.1901 + "T": 271.0, + "V": 0.1299 }, { - "T": 277.0, - "V": 0.1673 + "T": 276.0, + "V": 0.1696 }, { "T": 281.0, - "V": 0.1958 - }, - { - "T": 285.0, "V": 0.0 }, { - "T": 289.0, + "T": 286.0, "V": 0.0 }, { - "T": 293.0, + "T": 291.0, "V": 0.0 }, { - "T": 297.0, - "V": 0.4221 + "T": 296.0, + "V": 0.0 }, { "T": 301.0, - "V": 0.2404 - }, - { - "T": 305.0, - "V": 0.1671 + "V": 0.1203 }, { - "T": 309.0, - "V": 0.0 + "T": 306.0, + "V": 0.1335 }, { - "T": 313.0, - "V": 0.0 + "T": 311.0, + "V": 0.1507 }, { - "T": 317.0, + "T": 316.0, "V": 0.0 }, { "T": 321.0, - "V": 0.2339 - }, - { - "T": 325.0, - "V": 0.1574 - }, - { - "T": 329.0, - "V": 0.3964 + "V": 0.0 }, { - "T": 333.0, + "T": 326.0, "V": 0.0 }, { - "T": 337.0, + "T": 331.0, "V": 0.0 }, { - "T": 341.0, - "V": 0.1862 + "T": 336.0, + "V": 0.1334 }, { - "T": 345.0, - "V": 0.1687 + "T": 341.0, + "V": 0.1504 }, { - "T": 349.0, - "V": 0.155 + "T": 346.0, + "V": 0.0 }, { - "T": 353.0, + "T": 351.0, "V": 0.0 }, { - "T": 357.0, + "T": 356.0, "V": 0.0 }, { "T": 361.0, - "V": 0.436 - }, - { - "T": 365.0, - "V": 0.1593 + "V": 0.0 }, { - "T": 369.0, - "V": 0.3983 + "T": 366.0, + "V": 0.138 }, { - "T": 373.0, - "V": 0.0 + "T": 371.0, + "V": 0.1358 }, { - "T": 377.0, + "T": 376.0, "V": 0.0 }, { "T": 381.0, - "V": 0.1575 - }, - { - "T": 385.0, - "V": 0.3846 + "V": 0.0 }, { - "T": 389.0, - "V": 0.1491 + "T": 386.0, + "V": 0.0 }, { - "T": 393.0, + "T": 391.0, "V": 0.0 }, { - "T": 397.0, - "V": 0.0 + "T": 396.0, + "V": 0.1644 }, { "T": 401.0, - "V": 0.0 + "V": 0.1525 }, { - "T": 405.0, - "V": 0.1975 + "T": 406.0, + "V": 0.1477 }, { - "T": 409.0, - "V": 0.1504 + "T": 411.0, + "V": 0.0 }, { - "T": 413.0, - "V": 0.3722 + "T": 416.0, + "V": 0.0 }, { - "T": 417.0, + "T": 421.0, "V": 0.0 }, { - "T": 421.0, + "T": 426.0, "V": 0.0 }, { - "T": 425.0, - "V": 0.168 + "T": 431.0, + "V": 0.1923 }, { - "T": 429.0, - "V": 0.1548 + "T": 436.0, + "V": 0.1351 }, { - "T": 433.0, - "V": 0.1624 + "T": 441.0, + "V": 0.1509 }, { - "T": 437.0, + "T": 446.0, "V": 0.0 }, { - "T": 441.0, + "T": 451.0, "V": 0.0 }, { - "T": 445.0, + "T": 456.0, "V": 0.0 }, { - "T": 449.0, - "V": 0.4163 + "T": 461.0, + "V": 0.1549 }, { - "T": 453.0, - "V": 0.2227 + "T": 466.0, + "V": 0.2111 }, { - "T": 457.0, - "V": 0.1669 + "T": 471.0, + "V": 0.1386 }, { - "T": 461.0, + "T": 476.0, "V": 0.0 }, { - "T": 465.0, + "T": 481.0, "V": 0.0 }, { - "T": 469.0, + "T": 486.0, "V": 0.0 }, { - "T": 473.0, - "V": 0.1559 + "T": 491.0, + "V": 0.0 }, { - "T": 477.0, - "V": 0.3536 + "T": 496.0, + "V": 0.1777 }, { - "T": 481.0, - "V": 0.0 + "T": 501.0, + "V": 0.1452 }, { - "T": 485.0, + "T": 506.0, "V": 0.0 }, { - "T": 489.0, + "T": 511.0, "V": 0.0 }, { - "T": 493.0, - "V": 0.1565 - }, - { - "T": 497.0, - "V": 0.1658 - }, - { - "T": 501.0, - "V": 0.2101 - }, - { - "T": 505.0, + "T": 516.0, "V": 0.0 }, { - "T": 509.0, + "T": 521.0, "V": 0.0 }, { - "T": 513.0, - "V": 0.1694 + "T": 526.0, + "V": 0.1978 }, { - "T": 517.0, - "V": 0.1565 + "T": 531.0, + "V": 0.1919 }, { - "T": 521.0, - "V": 0.1636 + "T": 536.0, + "V": 0.0 }, { - "T": 525.0, + "T": 541.0, "V": 0.0 }, { - "T": 529.0, + "T": 546.0, "V": 0.0 }, { - "T": 533.0, - "V": 0.1633 + "T": 551.0, + "V": 0.1635 }, { - "T": 537.0, - "V": 0.1595 + "T": 556.0, + "V": 0.3839 }, { - "T": 541.0, - "V": 0.1647 + "T": 561.0, + "V": 0.1261 }, { - "T": 545.0, + "T": 566.0, "V": 0.0 }, { - "T": 549.0, + "T": 571.0, "V": 0.0 }, { - "T": 553.0, + "T": 576.0, "V": 0.0 }, { - "T": 557.0, - "V": 0.3694 + "T": 581.0, + "V": 0.0 }, { - "T": 561.0, - "V": 0.3138 + "T": 586.0, + "V": 0.1731 }, { - "T": 565.0, - "V": 0.1495 + "T": 591.0, + "V": 0.1994 }, { - "T": 569.0, + "T": 596.0, "V": 0.0 }, { - "T": 573.0, + "T": 601.0, "V": 0.0 }, { - "T": 577.0, + "T": 606.0, "V": 0.0 }, { - "T": 581.0, - "V": 0.3107 + "T": 611.0, + "V": 0.0 }, { - "T": 585.0, - "V": 0.2425 + "T": 616.0, + "V": 0.149 }, { - "T": 589.0, - "V": 0.2263 + "T": 621.0, + "V": 0.1719 }, { - "T": 593.0, + "T": 626.0, "V": 0.0 }, { - "T": 597.0, + "T": 631.0, "V": 0.0 } ], "WorkingSetMB": [ { "T": 0.0, - "V": 394.45 - }, - { - "T": 4.0, - "V": 408.29 + "V": 153.72 }, { - "T": 8.0, - "V": 412.44 + "T": 5.0, + "V": 165.9 }, { - "T": 12.0, - "V": 415.2 + "T": 10.0, + "V": 166.01 }, { - "T": 16.0, - "V": 431.79 + "T": 15.0, + "V": 165.61 }, { "T": 20.0, - "V": 436.19 - }, - { - "T": 24.0, - "V": 443.11 + "V": 165.68 }, { - "T": 28.0, - "V": 454.27 + "T": 25.0, + "V": 165.7 }, { - "T": 32.0, - "V": 461.58 + "T": 30.0, + "V": 166.19 }, { - "T": 36.0, - "V": 469.32 + "T": 35.0, + "V": 166.2 }, { "T": 40.0, - "V": 473.9 - }, - { - "T": 44.0, - "V": 486.14 + "V": 166.2 }, { - "T": 48.0, - "V": 493.38 + "T": 45.0, + "V": 166.57 }, { - "T": 52.0, - "V": 499.77 + "T": 50.0, + "V": 166.58 }, { - "T": 56.0, - "V": 507.29 + "T": 55.0, + "V": 166.58 }, { "T": 60.0, - "V": 511.14 - }, - { - "T": 64.0, - "V": 522.62 + "V": 166.97 }, { - "T": 68.0, - "V": 528.32 + "T": 65.0, + "V": 166.98 }, { - "T": 72.0, - "V": 539.87 + "T": 70.0, + "V": 167.31 }, { - "T": 76.0, - "V": 546.75 + "T": 75.0, + "V": 167.32 }, { "T": 80.0, - "V": 549.93 - }, - { - "T": 84.0, - "V": 563.7 + "V": 167.32 }, { - "T": 88.0, - "V": 569.5 + "T": 85.0, + "V": 167.68 }, { - "T": 92.0, - "V": 574.03 + "T": 90.0, + "V": 167.68 }, { - "T": 96.0, - "V": 585.94 + "T": 95.0, + "V": 167.69 }, { "T": 100.0, - "V": 586.0 - }, - { - "T": 104.0, - "V": 586.05 + "V": 168.05 }, { - "T": 108.0, - "V": 590.12 + "T": 105.0, + "V": 168.05 }, { - "T": 112.0, - "V": 602.02 + "T": 110.0, + "V": 168.24 }, { - "T": 116.0, - "V": 602.1 + "T": 115.0, + "V": 168.26 }, { "T": 120.0, - "V": 606.13 - }, - { - "T": 124.0, - "V": 613.39 + "V": 168.41 }, { - "T": 128.0, - "V": 620.56 + "T": 125.0, + "V": 168.56 }, { - "T": 132.0, - "V": 622.21 + "T": 130.0, + "V": 168.71 }, { - "T": 136.0, - "V": 630.24 + "T": 135.0, + "V": 168.83 }, { "T": 140.0, - "V": 634.24 - }, - { - "T": 144.0, - "V": 638.31 + "V": 168.99 }, { - "T": 148.0, - "V": 643.57 + "T": 145.0, + "V": 169.06 }, { - "T": 152.0, - "V": 646.39 + "T": 150.0, + "V": 169.14 }, { - "T": 156.0, - "V": 650.44 + "T": 155.0, + "V": 169.14 }, { "T": 160.0, - "V": 654.45 - }, - { - "T": 164.0, - "V": 664.77 + "V": 169.14 }, { - "T": 168.0, - "V": 670.95 + "T": 165.0, + "V": 169.14 }, { - "T": 172.0, - "V": 680.48 + "T": 170.0, + "V": 169.14 }, { - "T": 176.0, - "V": 689.21 + "T": 175.0, + "V": 169.14 }, { "T": 180.0, - "V": 701.4 - }, - { - "T": 184.0, - "V": 704.63 + "V": 169.14 }, { - "T": 188.0, - "V": 708.71 + "T": 185.0, + "V": 169.15 }, { - "T": 192.0, - "V": 724.11 + "T": 190.0, + "V": 169.17 }, { - "T": 196.0, - "V": 729.68 + "T": 195.0, + "V": 169.15 }, { "T": 200.0, - "V": 736.89 - }, - { - "T": 204.0, - "V": 741.22 + "V": 169.15 }, { - "T": 208.0, - "V": 754.99 + "T": 205.0, + "V": 169.15 }, { - "T": 212.0, - "V": 758.56 + "T": 210.0, + "V": 169.15 }, { - "T": 216.0, - "V": 766.26 + "T": 215.0, + "V": 169.15 }, { "T": 220.0, - "V": 777.87 + "V": 169.15 }, { - "T": 224.0, - "V": 783.23 + "T": 225.0, + "V": 169.15 }, { - "T": 228.0, - "V": 792.49 + "T": 230.0, + "V": 169.15 }, { - "T": 232.0, - "V": 802.54 + "T": 235.0, + "V": 169.15 }, { - "T": 236.0, - "V": 810.63 + "T": 240.0, + "V": 169.15 }, { - "T": 240.0, - "V": 813.02 + "T": 245.0, + "V": 169.15 }, { - "T": 244.0, - "V": 824.74 + "T": 250.0, + "V": 169.15 }, { - "T": 248.0, - "V": 828.41 - }, - { - "T": 252.0, - "V": 840.31 - }, - { - "T": 256.0, - "V": 849.56 + "T": 255.0, + "V": 169.16 }, { "T": 260.0, - "V": 856.89 - }, - { - "T": 264.0, - "V": 865.75 + "V": 169.16 }, { - "T": 268.0, - "V": 878.07 + "T": 265.0, + "V": 172.36 }, { - "T": 272.0, - "V": 885.87 + "T": 270.0, + "V": 172.43 }, { - "T": 276.0, - "V": 874.91 + "T": 275.0, + "V": 172.59 }, { "T": 280.0, - "V": 877.44 - }, - { - "T": 284.0, - "V": 882.93 + "V": 171.96 }, { - "T": 288.0, - "V": 890.92 + "T": 285.0, + "V": 171.93 }, { - "T": 292.0, - "V": 891.0 + "T": 290.0, + "V": 171.93 }, { - "T": 296.0, - "V": 895.01 + "T": 295.0, + "V": 171.93 }, { "T": 300.0, - "V": 902.99 - }, - { - "T": 304.0, - "V": 907.16 + "V": 172.07 }, { - "T": 308.0, - "V": 911.21 + "T": 305.0, + "V": 172.07 }, { - "T": 312.0, - "V": 911.29 + "T": 310.0, + "V": 172.07 }, { - "T": 316.0, - "V": 915.32 + "T": 315.0, + "V": 172.16 }, { "T": 320.0, - "V": 923.3 - }, - { - "T": 324.0, - "V": 928.17 + "V": 172.14 }, { - "T": 328.0, - "V": 931.35 + "T": 325.0, + "V": 172.14 }, { - "T": 332.0, - "V": 935.38 + "T": 330.0, + "V": 172.14 }, { - "T": 336.0, - "V": 939.41 + "T": 335.0, + "V": 172.14 }, { "T": 340.0, - "V": 947.39 - }, - { - "T": 344.0, - "V": 951.79 + "V": 172.14 }, { - "T": 348.0, - "V": 955.43 + "T": 345.0, + "V": 172.14 }, { - "T": 352.0, - "V": 959.47 + "T": 350.0, + "V": 172.16 }, { - "T": 356.0, - "V": 947.29 + "T": 355.0, + "V": 172.16 }, { "T": 360.0, - "V": 951.27 - }, - { - "T": 364.0, - "V": 955.3 + "V": 172.16 }, { - "T": 368.0, - "V": 962.79 + "T": 365.0, + "V": 172.16 }, { - "T": 372.0, - "V": 963.39 + "T": 370.0, + "V": 172.16 }, { - "T": 376.0, - "V": 967.36 + "T": 375.0, + "V": 172.16 }, { "T": 380.0, - "V": 971.36 - }, - { - "T": 384.0, - "V": 975.36 + "V": 172.17 }, { - "T": 388.0, - "V": 980.8 + "T": 385.0, + "V": 172.17 }, { - "T": 392.0, - "V": 983.47 + "T": 390.0, + "V": 172.17 }, { - "T": 396.0, - "V": 991.42 + "T": 395.0, + "V": 172.17 }, { "T": 400.0, - "V": 995.37 - }, - { - "T": 404.0, - "V": 995.41 + "V": 172.12 }, { - "T": 408.0, - "V": 999.43 + "T": 405.0, + "V": 172.12 }, { - "T": 412.0, - "V": 1011.23 + "T": 410.0, + "V": 172.12 }, { - "T": 416.0, - "V": 1011.46 + "T": 415.0, + "V": 172.13 }, { "T": 420.0, - "V": 1015.47 - }, - { - "T": 424.0, - "V": 1019.52 + "V": 172.13 }, { - "T": 428.0, - "V": 1005.71 + "T": 425.0, + "V": 172.13 }, { - "T": 432.0, - "V": 1005.71 + "T": 430.0, + "V": 172.13 }, { - "T": 436.0, - "V": 1005.7 + "T": 435.0, + "V": 175.59 }, { "T": 440.0, - "V": 1014.04 - }, - { - "T": 444.0, - "V": 1014.1 + "V": 175.75 }, { - "T": 448.0, - "V": 1018.08 + "T": 445.0, + "V": 175.9 }, { - "T": 452.0, - "V": 1022.08 + "T": 450.0, + "V": 176.05 }, { - "T": 456.0, - "V": 1030.02 + "T": 455.0, + "V": 176.13 }, { "T": 460.0, - "V": 1034.06 + "V": 176.13 }, { - "T": 464.0, - "V": 1038.04 + "T": 465.0, + "V": 176.13 }, { - "T": 468.0, - "V": 1042.09 + "T": 470.0, + "V": 176.13 }, { - "T": 472.0, - "V": 1046.1 + "T": 475.0, + "V": 176.13 }, { - "T": 476.0, - "V": 1054.07 + "T": 480.0, + "V": 176.13 }, { - "T": 480.0, - "V": 1031.59 + "T": 485.0, + "V": 176.13 }, { - "T": 484.0, - "V": 1032.29 + "T": 490.0, + "V": 176.18 }, { - "T": 488.0, - "V": 1040.25 + "T": 495.0, + "V": 176.18 }, { - "T": 492.0, - "V": 1040.31 + "T": 500.0, + "V": 176.18 }, { - "T": 496.0, - "V": 1045.04 + "T": 505.0, + "V": 176.18 }, { - "T": 500.0, - "V": 1055.87 + "T": 510.0, + "V": 176.18 }, { - "T": 504.0, - "V": 1056.29 + "T": 515.0, + "V": 176.18 }, { - "T": 508.0, - "V": 1060.33 + "T": 520.0, + "V": 176.18 }, { - "T": 512.0, - "V": 1060.56 + "T": 525.0, + "V": 176.2 }, { - "T": 516.0, - "V": 1072.27 + "T": 530.0, + "V": 176.18 }, { - "T": 520.0, - "V": 1074.35 + "T": 535.0, + "V": 176.18 }, { - "T": 524.0, - "V": 1080.34 + "T": 540.0, + "V": 176.18 }, { - "T": 528.0, - "V": 1043.37 + "T": 545.0, + "V": 176.18 }, { - "T": 532.0, - "V": 1046.0 + "T": 550.0, + "V": 176.18 }, { - "T": 536.0, - "V": 1048.7 + "T": 555.0, + "V": 176.18 }, { - "T": 540.0, - "V": 1052.7 + "T": 560.0, + "V": 175.11 }, { - "T": 544.0, - "V": 1056.73 + "T": 565.0, + "V": 175.11 }, { - "T": 548.0, - "V": 1064.64 + "T": 570.0, + "V": 175.11 }, { - "T": 552.0, - "V": 1068.64 + "T": 575.0, + "V": 175.11 }, { - "T": 556.0, - "V": 1072.66 + "T": 580.0, + "V": 175.09 }, { - "T": 560.0, - "V": 1075.84 + "T": 585.0, + "V": 175.1 }, { - "T": 564.0, - "V": 1080.66 + "T": 590.0, + "V": 175.24 }, { - "T": 568.0, - "V": 1084.79 + "T": 595.0, + "V": 175.68 }, { - "T": 572.0, - "V": 1088.75 + "T": 600.0, + "V": 175.68 }, { - "T": 576.0, - "V": 1096.71 + "T": 605.0, + "V": 175.68 }, { - "T": 580.0, - "V": 927.05 + "T": 610.0, + "V": 175.68 }, { - "T": 584.0, - "V": 922.18 + "T": 615.0, + "V": 175.68 }, { - "T": 588.0, - "V": 915.89 + "T": 620.0, + "V": 175.68 }, { - "T": 592.0, - "V": 911.88 + "T": 625.0, + "V": 175.73 }, { - "T": 596.0, - "V": 896.54 + "T": 630.0, + "V": 178.83 } ], "AllocRateMB": [ { "T": 1.0, - "V": 7.76 - }, - { - "T": 5.0, - "V": 8.29 + "V": 5.5 }, { - "T": 9.0, - "V": 7.87 + "T": 6.0, + "V": 5.99 }, { - "T": 13.0, - "V": 8.83 + "T": 11.0, + "V": 5.7 }, { - "T": 17.0, - "V": 8.35 + "T": 16.0, + "V": 5.88 }, { "T": 21.0, - "V": 8.3 - }, - { - "T": 25.0, - "V": 8.56 + "V": 5.74 }, { - "T": 29.0, - "V": 8.92 + "T": 26.0, + "V": 5.74 }, { - "T": 33.0, - "V": 7.87 + "T": 31.0, + "V": 5.88 }, { - "T": 37.0, - "V": 8.88 + "T": 36.0, + "V": 5.66 }, { "T": 41.0, - "V": 8.42 - }, - { - "T": 45.0, - "V": 8.48 + "V": 5.7 }, { - "T": 49.0, - "V": 8.33 + "T": 46.0, + "V": 5.77 }, { - "T": 53.0, - "V": 8.86 + "T": 51.0, + "V": 5.57 }, { - "T": 57.0, - "V": 8.54 + "T": 56.0, + "V": 5.79 }, { "T": 61.0, - "V": 8.8 - }, - { - "T": 65.0, - "V": 7.79 + "V": 5.81 }, { - "T": 69.0, - "V": 9.39 + "T": 66.0, + "V": 5.73 }, { - "T": 73.0, - "V": 8.21 + "T": 71.0, + "V": 5.63 }, { - "T": 77.0, - "V": 8.93 + "T": 76.0, + "V": 5.63 }, { "T": 81.0, - "V": 8.09 - }, - { - "T": 85.0, - "V": 8.48 + "V": 5.82 }, { - "T": 89.0, - "V": 8.8 + "T": 86.0, + "V": 5.73 }, { - "T": 93.0, - "V": 9.84 + "T": 91.0, + "V": 5.71 }, { - "T": 97.0, - "V": 7.84 + "T": 96.0, + "V": 5.82 }, { "T": 101.0, - "V": 8.49 - }, - { - "T": 105.0, - "V": 9.11 + "V": 5.63 }, { - "T": 109.0, - "V": 8.37 + "T": 106.0, + "V": 5.85 }, { - "T": 113.0, - "V": 9.11 + "T": 111.0, + "V": 5.56 }, { - "T": 117.0, - "V": 9.79 + "T": 116.0, + "V": 5.74 }, { "T": 121.0, - "V": 8.86 - }, - { - "T": 125.0, - "V": 8.47 + "V": 5.84 }, { - "T": 129.0, - "V": 9.11 + "T": 126.0, + "V": 5.72 }, { - "T": 133.0, - "V": 9.15 + "T": 131.0, + "V": 5.79 }, { - "T": 137.0, - "V": 8.33 + "T": 136.0, + "V": 5.79 }, { "T": 141.0, - "V": 8.63 - }, - { - "T": 145.0, - "V": 8.21 + "V": 5.71 }, { - "T": 149.0, - "V": 9.09 + "T": 146.0, + "V": 5.57 }, { - "T": 153.0, - "V": 8.22 + "T": 151.0, + "V": 5.75 }, { - "T": 157.0, - "V": 8.27 + "T": 156.0, + "V": 5.56 }, { "T": 161.0, - "V": 8.47 - }, - { - "T": 165.0, - "V": 8.36 + "V": 5.74 }, { - "T": 169.0, - "V": 9.08 + "T": 166.0, + "V": 5.86 }, { - "T": 173.0, - "V": 8.51 + "T": 171.0, + "V": 5.8 }, { - "T": 177.0, - "V": 8.57 + "T": 176.0, + "V": 5.71 }, { "T": 181.0, - "V": 8.89 - }, - { - "T": 185.0, - "V": 8.51 + "V": 5.63 }, { - "T": 189.0, - "V": 8.05 + "T": 186.0, + "V": 5.73 }, { - "T": 193.0, - "V": 7.71 + "T": 191.0, + "V": 5.63 }, { - "T": 197.0, - "V": 8.5 + "T": 196.0, + "V": 5.7 }, { "T": 201.0, - "V": 8.28 - }, - { - "T": 205.0, - "V": 8.38 + "V": 5.82 }, { - "T": 209.0, - "V": 8.08 + "T": 206.0, + "V": 5.7 }, { - "T": 213.0, - "V": 8.89 + "T": 211.0, + "V": 5.77 }, { - "T": 217.0, - "V": 8.87 + "T": 216.0, + "V": 5.7 }, { "T": 221.0, - "V": 9.23 - }, - { - "T": 225.0, - "V": 8.26 + "V": 5.64 }, { - "T": 229.0, - "V": 9.01 + "T": 226.0, + "V": 5.79 }, { - "T": 233.0, - "V": 8.55 + "T": 231.0, + "V": 5.68 }, { - "T": 237.0, - "V": 8.24 + "T": 236.0, + "V": 5.8 }, { "T": 241.0, - "V": 8.83 - }, - { - "T": 245.0, - "V": 8.58 + "V": 5.63 }, { - "T": 249.0, - "V": 8.28 + "T": 246.0, + "V": 5.69 }, { - "T": 253.0, - "V": 8.47 + "T": 251.0, + "V": 5.75 }, { - "T": 257.0, - "V": 9.4 + "T": 256.0, + "V": 5.81 }, { "T": 261.0, - "V": 9.0 - }, - { - "T": 265.0, - "V": 8.55 + "V": 5.73 }, { - "T": 269.0, - "V": 8.98 + "T": 266.0, + "V": 5.83 }, { - "T": 273.0, - "V": 8.23 + "T": 271.0, + "V": 5.76 }, { - "T": 277.0, - "V": 8.94 + "T": 276.0, + "V": 5.71 }, { "T": 281.0, - "V": 7.95 - }, - { - "T": 285.0, - "V": 8.75 + "V": 5.74 }, { - "T": 289.0, - "V": 8.65 + "T": 286.0, + "V": 5.63 }, { - "T": 293.0, - "V": 8.78 + "T": 291.0, + "V": 5.7 }, { - "T": 297.0, - "V": 8.8 + "T": 296.0, + "V": 5.68 }, { "T": 301.0, - "V": 9.21 - }, - { - "T": 305.0, - "V": 8.61 + "V": 5.68 }, { - "T": 309.0, - "V": 9.11 + "T": 306.0, + "V": 5.82 }, { - "T": 313.0, - "V": 7.86 + "T": 311.0, + "V": 5.94 }, { - "T": 317.0, - "V": 8.34 + "T": 316.0, + "V": 5.71 }, { "T": 321.0, - "V": 8.65 - }, - { - "T": 325.0, - "V": 8.62 + "V": 5.71 }, { - "T": 329.0, - "V": 8.25 + "T": 326.0, + "V": 5.88 }, { - "T": 333.0, - "V": 8.2 + "T": 331.0, + "V": 5.82 }, { - "T": 337.0, - "V": 7.8 + "T": 336.0, + "V": 5.77 }, { "T": 341.0, - "V": 9.03 - }, - { - "T": 345.0, - "V": 8.63 + "V": 5.76 }, { - "T": 349.0, - "V": 8.77 + "T": 346.0, + "V": 5.79 }, { - "T": 353.0, - "V": 8.39 + "T": 351.0, + "V": 5.7 }, { - "T": 357.0, - "V": 8.75 + "T": 356.0, + "V": 5.71 }, { "T": 361.0, - "V": 8.53 - }, - { - "T": 365.0, - "V": 8.48 + "V": 5.82 }, { - "T": 369.0, - "V": 8.26 + "T": 366.0, + "V": 5.61 }, { - "T": 373.0, - "V": 8.98 + "T": 371.0, + "V": 5.76 }, { - "T": 377.0, - "V": 8.32 + "T": 376.0, + "V": 5.81 }, { "T": 381.0, - "V": 8.54 - }, - { - "T": 385.0, - "V": 9.56 + "V": 5.68 }, { - "T": 389.0, - "V": 8.86 + "T": 386.0, + "V": 5.81 }, { - "T": 393.0, - "V": 8.29 + "T": 391.0, + "V": 5.76 }, { - "T": 397.0, - "V": 8.61 + "T": 396.0, + "V": 5.91 }, { "T": 401.0, - "V": 9.01 - }, - { - "T": 405.0, - "V": 8.42 + "V": 5.8 }, { - "T": 409.0, - "V": 8.04 + "T": 406.0, + "V": 5.78 }, { - "T": 413.0, - "V": 8.35 + "T": 411.0, + "V": 5.73 }, { - "T": 417.0, - "V": 8.15 + "T": 416.0, + "V": 5.71 }, { "T": 421.0, - "V": 8.33 - }, - { - "T": 425.0, - "V": 8.23 + "V": 5.79 }, { - "T": 429.0, - "V": 7.8 + "T": 426.0, + "V": 5.75 }, { - "T": 433.0, - "V": 9.14 + "T": 431.0, + "V": 5.84 }, { - "T": 437.0, - "V": 9.09 + "T": 436.0, + "V": 5.79 }, { "T": 441.0, - "V": 8.19 - }, - { - "T": 445.0, - "V": 8.84 + "V": 5.8 }, { - "T": 449.0, - "V": 7.98 + "T": 446.0, + "V": 5.66 }, { - "T": 453.0, - "V": 7.96 + "T": 451.0, + "V": 5.73 }, { - "T": 457.0, - "V": 8.42 + "T": 456.0, + "V": 5.74 }, { "T": 461.0, - "V": 8.7 - }, - { - "T": 465.0, - "V": 8.57 + "V": 5.87 }, { - "T": 469.0, - "V": 9.1 + "T": 466.0, + "V": 5.75 }, { - "T": 473.0, - "V": 8.47 + "T": 471.0, + "V": 5.69 }, { - "T": 477.0, - "V": 8.42 + "T": 476.0, + "V": 5.75 }, { "T": 481.0, - "V": 9.02 - }, - { - "T": 485.0, - "V": 9.77 + "V": 5.71 }, { - "T": 489.0, - "V": 7.98 + "T": 486.0, + "V": 5.8 }, { - "T": 493.0, - "V": 8.32 + "T": 491.0, + "V": 5.7 }, { - "T": 497.0, - "V": 9.15 + "T": 496.0, + "V": 5.73 }, { "T": 501.0, - "V": 8.82 + "V": 5.75 }, { - "T": 505.0, - "V": 8.43 + "T": 506.0, + "V": 5.69 }, { - "T": 509.0, - "V": 8.52 + "T": 511.0, + "V": 5.77 }, { - "T": 513.0, - "V": 9.26 + "T": 516.0, + "V": 5.77 }, { - "T": 517.0, - "V": 8.9 + "T": 521.0, + "V": 5.55 }, { - "T": 521.0, - "V": 9.04 + "T": 526.0, + "V": 5.56 }, { - "T": 525.0, - "V": 9.56 + "T": 531.0, + "V": 5.55 }, { - "T": 529.0, - "V": 8.51 + "T": 536.0, + "V": 5.78 }, { - "T": 533.0, - "V": 9.19 + "T": 541.0, + "V": 5.83 }, { - "T": 537.0, - "V": 7.97 + "T": 546.0, + "V": 5.66 }, { - "T": 541.0, - "V": 8.63 + "T": 551.0, + "V": 5.82 }, { - "T": 545.0, - "V": 8.1 + "T": 556.0, + "V": 5.72 }, { - "T": 549.0, - "V": 8.67 + "T": 561.0, + "V": 5.72 }, { - "T": 553.0, - "V": 8.36 + "T": 566.0, + "V": 5.86 }, { - "T": 557.0, - "V": 8.7 + "T": 571.0, + "V": 5.84 }, { - "T": 561.0, - "V": 8.86 + "T": 576.0, + "V": 5.67 }, { - "T": 565.0, - "V": 8.92 + "T": 581.0, + "V": 5.74 }, { - "T": 569.0, - "V": 8.25 + "T": 586.0, + "V": 5.69 }, { - "T": 573.0, - "V": 8.4 + "T": 591.0, + "V": 5.77 }, { - "T": 577.0, - "V": 7.71 + "T": 596.0, + "V": 5.66 }, { - "T": 581.0, - "V": 8.01 + "T": 601.0, + "V": 5.76 }, { - "T": 585.0, - "V": 9.24 + "T": 606.0, + "V": 5.78 }, { - "T": 589.0, - "V": 8.34 + "T": 611.0, + "V": 5.74 }, { - "T": 593.0, - "V": 8.72 + "T": 616.0, + "V": 5.8 }, { - "T": 597.0, - "V": 9.02 + "T": 621.0, + "V": 5.7 + }, + { + "T": 626.0, + "V": 5.79 + }, + { + "T": 631.0, + "V": 2.84 } ], "OpsPerSec": null, @@ -18543,119 +18267,95 @@ "V": 0.0 }, { - "T": 5.0, + "T": 6.0, "V": 0.0 }, { - "T": 9.0, + "T": 11.0, "V": 0.0 }, { - "T": 13.0, - "V": 1.0 + "T": 16.0, + "V": 0.0 }, { - "T": 17.0, + "T": 21.0, "V": 1.0 }, { - "T": 21.0, + "T": 26.0, "V": 1.0 }, { - "T": 25.0, + "T": 31.0, "V": 0.0 }, { - "T": 29.0, + "T": 36.0, "V": 0.0 }, { - "T": 33.0, + "T": 41.0, "V": 0.0 }, { - "T": 37.0, + "T": 46.0, "V": 0.0 }, { - "T": 41.0, + "T": 51.0, "V": 1.0 }, { - "T": 45.0, - "V": 0.0 - }, - { - "T": 49.0, - "V": 0.0 - }, - { - "T": 53.0, + "T": 56.0, "V": 0.0 }, - { - "T": 57.0, - "V": 1.0 - }, { "T": 61.0, "V": 0.0 }, { - "T": 65.0, - "V": 1.0 - }, - { - "T": 69.0, + "T": 66.0, "V": 0.0 }, { - "T": 73.0, + "T": 71.0, "V": 0.0 }, { - "T": 77.0, - "V": 1.0 + "T": 76.0, + "V": 0.0 }, { "T": 81.0, - "V": 0.0 + "V": 1.0 }, { - "T": 85.0, - "V": 0.0 + "T": 86.0, + "V": 1.0 }, { - "T": 89.0, - "V": 0.0 + "T": 91.0, + "V": 1.0 }, { - "T": 93.0, + "T": 96.0, "V": 0.0 }, - { - "T": 97.0, - "V": 1.0 - }, { "T": 101.0, - "V": 1.0 - }, - { - "T": 105.0, - "V": 1.0 + "V": 0.0 }, { - "T": 109.0, + "T": 106.0, "V": 0.0 }, { - "T": 113.0, + "T": 111.0, "V": 0.0 }, { - "T": 117.0, + "T": 116.0, "V": 0.0 }, { @@ -18663,39 +18363,31 @@ "V": 0.0 }, { - "T": 125.0, - "V": 1.0 - }, - { - "T": 129.0, + "T": 126.0, "V": 0.0 }, { - "T": 133.0, + "T": 131.0, "V": 0.0 }, { - "T": 137.0, + "T": 136.0, "V": 0.0 }, { "T": 141.0, - "V": 1.0 - }, - { - "T": 145.0, - "V": 1.0 + "V": 0.0 }, { - "T": 149.0, - "V": 1.0 + "T": 146.0, + "V": 0.0 }, { - "T": 153.0, + "T": 151.0, "V": 0.0 }, { - "T": 157.0, + "T": 156.0, "V": 0.0 }, { @@ -18703,19 +18395,15 @@ "V": 0.0 }, { - "T": 165.0, + "T": 166.0, "V": 0.0 }, { - "T": 169.0, - "V": 1.0 - }, - { - "T": 173.0, - "V": 1.0 + "T": 171.0, + "V": 0.0 }, { - "T": 177.0, + "T": 176.0, "V": 0.0 }, { @@ -18723,39 +18411,31 @@ "V": 0.0 }, { - "T": 185.0, + "T": 186.0, "V": 0.0 }, { - "T": 189.0, + "T": 191.0, "V": 0.0 }, { - "T": 193.0, + "T": 196.0, "V": 0.0 }, - { - "T": 197.0, - "V": 1.0 - }, { "T": 201.0, "V": 0.0 }, { - "T": 205.0, + "T": 206.0, "V": 0.0 }, { - "T": 209.0, + "T": 211.0, "V": 0.0 }, { - "T": 213.0, - "V": 1.0 - }, - { - "T": 217.0, + "T": 216.0, "V": 0.0 }, { @@ -18763,19 +18443,15 @@ "V": 0.0 }, { - "T": 225.0, + "T": 226.0, "V": 0.0 }, { - "T": 229.0, + "T": 231.0, "V": 0.0 }, { - "T": 233.0, - "V": 1.0 - }, - { - "T": 237.0, + "T": 236.0, "V": 0.0 }, { @@ -18783,59 +18459,47 @@ "V": 0.0 }, { - "T": 245.0, - "V": 0.0 - }, - { - "T": 249.0, + "T": 246.0, "V": 0.0 }, { - "T": 253.0, + "T": 251.0, "V": 0.0 }, { - "T": 257.0, + "T": 256.0, "V": 0.0 }, { "T": 261.0, - "V": 1.0 - }, - { - "T": 265.0, "V": 0.0 }, { - "T": 269.0, + "T": 266.0, "V": 0.0 }, { - "T": 273.0, - "V": 1.0 + "T": 271.0, + "V": 0.0 }, { - "T": 277.0, - "V": 1.0 + "T": 276.0, + "V": 0.0 }, { "T": 281.0, - "V": 1.0 - }, - { - "T": 285.0, "V": 0.0 }, { - "T": 289.0, + "T": 286.0, "V": 0.0 }, { - "T": 293.0, + "T": 291.0, "V": 0.0 }, { - "T": 297.0, + "T": 296.0, "V": 0.0 }, { @@ -18843,19 +18507,15 @@ "V": 0.0 }, { - "T": 305.0, - "V": 1.0 - }, - { - "T": 309.0, + "T": 306.0, "V": 0.0 }, { - "T": 313.0, + "T": 311.0, "V": 0.0 }, { - "T": 317.0, + "T": 316.0, "V": 0.0 }, { @@ -18863,39 +18523,31 @@ "V": 0.0 }, { - "T": 325.0, - "V": 1.0 - }, - { - "T": 329.0, + "T": 326.0, "V": 0.0 }, { - "T": 333.0, + "T": 331.0, "V": 0.0 }, { - "T": 337.0, + "T": 336.0, "V": 0.0 }, { "T": 341.0, - "V": 1.0 - }, - { - "T": 345.0, - "V": 1.0 + "V": 0.0 }, { - "T": 349.0, - "V": 1.0 + "T": 346.0, + "V": 0.0 }, { - "T": 353.0, + "T": 351.0, "V": 0.0 }, { - "T": 357.0, + "T": 356.0, "V": 0.0 }, { @@ -18903,39 +18555,31 @@ "V": 0.0 }, { - "T": 365.0, - "V": 1.0 - }, - { - "T": 369.0, + "T": 366.0, "V": 0.0 }, { - "T": 373.0, + "T": 371.0, "V": 0.0 }, { - "T": 377.0, + "T": 376.0, "V": 0.0 }, { "T": 381.0, - "V": 1.0 - }, - { - "T": 385.0, "V": 0.0 }, { - "T": 389.0, - "V": 1.0 + "T": 386.0, + "V": 0.0 }, { - "T": 393.0, + "T": 391.0, "V": 0.0 }, { - "T": 397.0, + "T": 396.0, "V": 0.0 }, { @@ -18943,19 +18587,15 @@ "V": 0.0 }, { - "T": 405.0, + "T": 406.0, "V": 0.0 }, { - "T": 409.0, - "V": 1.0 - }, - { - "T": 413.0, + "T": 411.0, "V": 0.0 }, { - "T": 417.0, + "T": 416.0, "V": 0.0 }, { @@ -18963,19 +18603,15 @@ "V": 0.0 }, { - "T": 425.0, - "V": 1.0 - }, - { - "T": 429.0, - "V": 1.0 + "T": 426.0, + "V": 0.0 }, { - "T": 433.0, - "V": 1.0 + "T": 431.0, + "V": 0.0 }, { - "T": 437.0, + "T": 436.0, "V": 0.0 }, { @@ -18983,210 +18619,206 @@ "V": 0.0 }, { - "T": 445.0, + "T": 446.0, "V": 0.0 }, { - "T": 449.0, + "T": 451.0, "V": 0.0 }, { - "T": 453.0, + "T": 456.0, "V": 0.0 }, - { - "T": 457.0, - "V": 1.0 - }, { "T": 461.0, "V": 0.0 }, { - "T": 465.0, + "T": 466.0, "V": 0.0 }, { - "T": 469.0, + "T": 471.0, "V": 0.0 }, { - "T": 473.0, - "V": 1.0 + "T": 476.0, + "V": 0.0 }, { - "T": 477.0, + "T": 481.0, "V": 0.0 }, { - "T": 481.0, + "T": 486.0, "V": 0.0 }, { - "T": 485.0, + "T": 491.0, "V": 0.0 }, { - "T": 489.0, + "T": 496.0, "V": 0.0 }, { - "T": 493.0, - "V": 1.0 + "T": 501.0, + "V": 0.0 }, { - "T": 497.0, - "V": 1.0 + "T": 506.0, + "V": 0.0 }, { - "T": 501.0, + "T": 511.0, "V": 0.0 }, { - "T": 505.0, + "T": 516.0, "V": 0.0 }, { - "T": 509.0, + "T": 521.0, "V": 0.0 }, { - "T": 513.0, - "V": 1.0 + "T": 526.0, + "V": 0.0 }, { - "T": 517.0, - "V": 1.0 + "T": 531.0, + "V": 0.0 }, { - "T": 521.0, - "V": 1.0 + "T": 536.0, + "V": 0.0 }, { - "T": 525.0, + "T": 541.0, "V": 0.0 }, { - "T": 529.0, + "T": 546.0, "V": 0.0 }, { - "T": 533.0, - "V": 1.0 + "T": 551.0, + "V": 0.0 }, { - "T": 537.0, + "T": 556.0, "V": 1.0 }, { - "T": 541.0, - "V": 1.0 + "T": 561.0, + "V": 0.0 }, { - "T": 545.0, + "T": 566.0, "V": 0.0 }, { - "T": 549.0, + "T": 571.0, "V": 0.0 }, { - "T": 553.0, + "T": 576.0, "V": 0.0 }, { - "T": 557.0, + "T": 581.0, "V": 0.0 }, { - "T": 561.0, + "T": 586.0, "V": 0.0 }, { - "T": 565.0, - "V": 1.0 + "T": 591.0, + "V": 0.0 }, { - "T": 569.0, + "T": 596.0, "V": 0.0 }, { - "T": 573.0, + "T": 601.0, "V": 0.0 }, { - "T": 577.0, + "T": 606.0, "V": 0.0 }, { - "T": 581.0, - "V": 1.0 + "T": 611.0, + "V": 0.0 }, { - "T": 585.0, - "V": 1.0 + "T": 616.0, + "V": 0.0 }, { - "T": 589.0, - "V": 1.0 + "T": 621.0, + "V": 0.0 }, { - "T": 593.0, + "T": 626.0, "V": 0.0 }, { - "T": 597.0, + "T": 631.0, "V": 0.0 } ] } }, { - "ScenarioId": "gcperfsim-cache", - "ScenarioName": "GCPerfSim: cache / large-object-heavy workload", + "ScenarioId": "gcperfsim-churn", + "ScenarioName": "GCPerfSim: high-throughput transient object churn", "GcModeId": "server", "GcModeName": "Server GC", - "DurationSeconds": 599.1646661, + "DurationSeconds": 632.3336519, "Summary": { "OperationsTotal": null, - "OpsPerSecondOverall": 9.057949406692364, - "TotalAllocatedBytes": 5690835056.0, - "Gen0Collections": 37, - "Gen1Collections": 17, - "Gen2Collections": 12, - "WorkingSetBytes": 961527808.0, - "PeakWorkingSetBytes": 961527808.0, - "HeapSizeBytes": 812683504.0, - "TotalCommittedBytes": 915324928.0, + "OpsPerSecondOverall": 5.505954914540435, + "TotalAllocatedBytes": 3650722808.0, + "Gen0Collections": 521, + "Gen1Collections": 51, + "Gen2Collections": 6, + "WorkingSetBytes": 257069056.0, + "PeakWorkingSetBytes": 257069056.0, + "HeapSizeBytes": 167058536.0, + "TotalCommittedBytes": 220467200.0, "GcName": "Server GC", - "TagbUsed": 5.3 + "TagbUsed": 3.4 }, "PauseTimePctStats": { - "Avg": 0.03208573825503356, - "P50": 0.0, - "P90": 0.0, - "P99": 0.7724999999999995, - "Max": 2.538499999999999, + "Avg": 0.09001494435612079, + "P50": 0.09969999999999701, + "P90": 0.16170000000000073, + "P99": 0.23779999999999912, + "Max": 3.0091, "Min": 0.0, - "Count": 596 + "Count": 629 }, "WorkingSetStats": { - "Avg": 889799410.7068677, - "P50": 936390656.0, - "P90": 957603840.0, - "P99": 959791104.0, - "Max": 961527808.0, - "Min": 403214336.0, - "Count": 597 + "Avg": 224421660.44444445, + "P50": 220758016.0, + "P90": 243621888.0, + "P99": 256253952.0, + "Max": 257069056.0, + "Min": 166785024.0, + "Count": 630 }, "AllocRateMBStats": { - "Avg": 8.668721615068064, - "P50": 8.600814819335938, - "P90": 9.470573425292969, - "P99": 9.958580017089844, - "Max": 10.217926025390625, - "Min": 7.6204071044921875, - "Count": 596 + "Avg": 4.184179515262477, + "P50": 5.712860107421875, + "P90": 5.846038818359375, + "P99": 5.9518585205078125, + "Max": 5.994682312011719, + "Min": 0.0, + "Count": 629 }, "OpsPerSecStats": { "Avg": 0, @@ -19200,7 +18832,7 @@ "TimeSeries": { "PauseTimePct": [ { - "T": 1.0, + "T": 0.0, "V": 0.0 }, { @@ -19208,39 +18840,31 @@ "V": 0.0 }, { - "T": 9.0, - "V": 0.0 - }, - { - "T": 13.0, + "T": 10.0, "V": 0.0 }, { - "T": 17.0, + "T": 15.0, "V": 0.0 }, { - "T": 21.0, + "T": 20.0, "V": 0.0 }, { "T": 25.0, - "V": 1.0004 - }, - { - "T": 29.0, - "V": 0.1045 + "V": 0.0 }, { - "T": 33.0, + "T": 30.0, "V": 0.0 }, { - "T": 37.0, + "T": 35.0, "V": 0.0 }, { - "T": 41.0, + "T": 40.0, "V": 0.0 }, { @@ -19248,1898 +18872,1598 @@ "V": 0.0 }, { - "T": 49.0, + "T": 50.0, "V": 0.0 }, { - "T": 53.0, + "T": 55.0, "V": 0.0 }, { - "T": 57.0, + "T": 60.0, "V": 0.0 }, { - "T": 61.0, + "T": 65.0, "V": 0.0 }, { - "T": 65.0, + "T": 70.0, "V": 0.0 }, { - "T": 69.0, + "T": 75.0, "V": 0.0 }, { - "T": 73.0, + "T": 80.0, "V": 0.0 }, { - "T": 77.0, + "T": 85.0, "V": 0.0 }, { - "T": 81.0, + "T": 90.0, "V": 0.0 }, { - "T": 85.0, + "T": 95.0, "V": 0.0 }, { - "T": 89.0, - "V": 0.0 + "T": 100.0, + "V": 0.0825 }, { - "T": 93.0, - "V": 0.0 + "T": 105.0, + "V": 0.0711 }, { - "T": 97.0, - "V": 0.0 + "T": 110.0, + "V": 0.0633 }, { - "T": 101.0, + "T": 115.0, "V": 0.0 }, { - "T": 105.0, + "T": 120.0, "V": 0.0 }, { - "T": 109.0, - "V": 0.0 + "T": 125.0, + "V": 0.0814 }, { - "T": 113.0, + "T": 130.0, "V": 0.0 }, { - "T": 117.0, - "V": 0.0 + "T": 135.0, + "V": 0.0645 }, { - "T": 121.0, + "T": 140.0, "V": 0.0 }, { - "T": 125.0, + "T": 145.0, "V": 0.0 }, { - "T": 129.0, - "V": 0.0 + "T": 150.0, + "V": 0.061 }, { - "T": 133.0, - "V": 0.0 + "T": 155.0, + "V": 0.0749 }, { - "T": 137.0, + "T": 160.0, "V": 0.0 }, { - "T": 141.0, - "V": 0.0 + "T": 165.0, + "V": 0.0705 }, { - "T": 145.0, - "V": 0.0 + "T": 170.0, + "V": 0.0982 }, { - "T": 149.0, + "T": 175.0, "V": 0.0 }, { - "T": 153.0, + "T": 180.0, "V": 0.0 }, { - "T": 157.0, + "T": 185.0, "V": 0.0 }, { - "T": 161.0, - "V": 0.1542 + "T": 190.0, + "V": 0.0 }, { - "T": 165.0, + "T": 195.0, "V": 0.0 }, { - "T": 169.0, - "V": 0.0 - }, - { - "T": 173.0, - "V": 0.0 - }, - { - "T": 177.0, - "V": 0.0 - }, - { - "T": 181.0, - "V": 0.0 - }, - { - "T": 185.0, - "V": 0.0 - }, - { - "T": 189.0, - "V": 0.0 - }, - { - "T": 193.0, - "V": 0.0 - }, - { - "T": 197.0, - "V": 0.0 - }, - { - "T": 201.0, - "V": 0.0 + "T": 200.0, + "V": 0.0887 }, { "T": 205.0, - "V": 0.0 - }, - { - "T": 209.0, - "V": 0.0 + "V": 0.0829 }, { - "T": 213.0, - "V": 0.0 + "T": 210.0, + "V": 0.0728 }, { - "T": 217.0, - "V": 0.0 + "T": 215.0, + "V": 0.0848 }, { - "T": 221.0, - "V": 0.0 + "T": 220.0, + "V": 0.0676 }, { "T": 225.0, - "V": 0.0 - }, - { - "T": 229.0, - "V": 0.0 + "V": 0.0804 }, { - "T": 233.0, - "V": 0.0 + "T": 230.0, + "V": 0.0719 }, { - "T": 237.0, - "V": 0.7023 + "T": 235.0, + "V": 0.2378 }, { - "T": 241.0, - "V": 0.0 + "T": 240.0, + "V": 0.0969 }, { "T": 245.0, - "V": 0.0 - }, - { - "T": 249.0, - "V": 0.0 + "V": 0.1765 }, { - "T": 253.0, - "V": 0.0 + "T": 250.0, + "V": 0.1013 }, { - "T": 257.0, - "V": 0.0 + "T": 255.0, + "V": 0.1358 }, { - "T": 261.0, - "V": 0.0 + "T": 260.0, + "V": 0.1683 }, { "T": 265.0, - "V": 0.0 - }, - { - "T": 269.0, - "V": 0.0 + "V": 0.1061 }, { - "T": 273.0, - "V": 0.0 + "T": 270.0, + "V": 0.1218 }, { - "T": 277.0, - "V": 0.0 + "T": 275.0, + "V": 0.1884 }, { - "T": 281.0, - "V": 0.0 + "T": 280.0, + "V": 0.118 }, { "T": 285.0, - "V": 0.0 - }, - { - "T": 289.0, - "V": 0.0 + "V": 0.0845 }, { - "T": 293.0, - "V": 0.0 + "T": 290.0, + "V": 0.1902 }, { - "T": 297.0, - "V": 0.0 + "T": 295.0, + "V": 0.1832 }, { - "T": 301.0, - "V": 0.7587 + "T": 300.0, + "V": 0.1706 }, { "T": 305.0, - "V": 0.0 - }, - { - "T": 309.0, - "V": 0.0 + "V": 0.1019 }, { - "T": 313.0, - "V": 0.0 + "T": 310.0, + "V": 0.1084 }, { - "T": 317.0, - "V": 0.0 + "T": 315.0, + "V": 0.186 }, { - "T": 321.0, - "V": 0.0 + "T": 320.0, + "V": 0.1019 }, { "T": 325.0, - "V": 0.0 - }, - { - "T": 329.0, - "V": 0.0 + "V": 0.1466 }, { - "T": 333.0, - "V": 0.0 + "T": 330.0, + "V": 0.2198 }, { - "T": 337.0, - "V": 0.0 + "T": 335.0, + "V": 0.1239 }, { - "T": 341.0, - "V": 0.0 + "T": 340.0, + "V": 0.1497 }, { "T": 345.0, - "V": 0.0 - }, - { - "T": 349.0, - "V": 0.0 + "V": 0.2009 }, { - "T": 353.0, + "T": 350.0, "V": 0.0 }, { - "T": 357.0, - "V": 0.0 + "T": 355.0, + "V": 0.0918 }, { - "T": 361.0, - "V": 0.0 + "T": 360.0, + "V": 0.1038 }, { "T": 365.0, - "V": 0.6457 - }, - { - "T": 369.0, "V": 0.0 }, { - "T": 373.0, - "V": 0.0 + "T": 370.0, + "V": 0.0964 }, { - "T": 377.0, - "V": 0.0 + "T": 375.0, + "V": 0.1126 }, { - "T": 381.0, - "V": 0.0 + "T": 380.0, + "V": 0.1022 }, { "T": 385.0, - "V": 0.0 - }, - { - "T": 389.0, - "V": 0.0 + "V": 0.1036 }, { - "T": 393.0, - "V": 0.0 + "T": 390.0, + "V": 0.1348 }, { - "T": 397.0, - "V": 0.0 + "T": 395.0, + "V": 0.1022 }, { - "T": 401.0, - "V": 0.0 + "T": 400.0, + "V": 0.115 }, { "T": 405.0, "V": 0.0 }, { - "T": 409.0, - "V": 0.0 - }, - { - "T": 413.0, - "V": 0.0 + "T": 410.0, + "V": 0.1081 }, { - "T": 417.0, - "V": 0.0 + "T": 415.0, + "V": 0.1238 }, { - "T": 421.0, - "V": 0.0 + "T": 420.0, + "V": 0.1038 }, { "T": 425.0, - "V": 0.0 - }, - { - "T": 429.0, - "V": 0.0 + "V": 0.1145 }, { - "T": 433.0, - "V": 0.0 + "T": 430.0, + "V": 0.1599 }, { - "T": 437.0, - "V": 0.0 + "T": 435.0, + "V": 0.104 }, { - "T": 441.0, - "V": 0.0 + "T": 440.0, + "V": 0.1314 }, { "T": 445.0, - "V": 0.0 - }, - { - "T": 449.0, - "V": 0.0 + "V": 0.1014 }, { - "T": 453.0, - "V": 0.0 + "T": 450.0, + "V": 0.1067 }, { - "T": 457.0, - "V": 0.0 + "T": 455.0, + "V": 0.1167 }, { - "T": 461.0, - "V": 0.0 + "T": 460.0, + "V": 0.0932 }, { "T": 465.0, "V": 0.0 }, { - "T": 469.0, - "V": 0.0 + "T": 470.0, + "V": 0.1498 }, { - "T": 473.0, - "V": 0.0 + "T": 475.0, + "V": 0.2054 }, { - "T": 477.0, - "V": 0.0 + "T": 480.0, + "V": 0.13 }, { - "T": 481.0, + "T": 485.0, "V": 0.0 }, { - "T": 485.0, - "V": 0.0 + "T": 490.0, + "V": 0.1083 }, { - "T": 489.0, - "V": 0.0 + "T": 495.0, + "V": 0.1654 }, { - "T": 493.0, - "V": 0.0 + "T": 500.0, + "V": 0.1133 }, { - "T": 497.0, - "V": 0.0 + "T": 505.0, + "V": 0.1182 }, { - "T": 501.0, - "V": 0.0 + "T": 510.0, + "V": 0.1481 }, { - "T": 505.0, - "V": 0.0 + "T": 515.0, + "V": 0.1095 }, { - "T": 509.0, - "V": 0.0 + "T": 520.0, + "V": 0.1279 }, { - "T": 513.0, - "V": 0.0 + "T": 525.0, + "V": 0.1059 }, { - "T": 517.0, - "V": 0.0 + "T": 530.0, + "V": 0.1259 }, { - "T": 521.0, - "V": 0.0 + "T": 535.0, + "V": 0.1635 }, { - "T": 525.0, - "V": 0.0 + "T": 540.0, + "V": 0.1128 }, { - "T": 529.0, - "V": 0.0 + "T": 545.0, + "V": 0.1224 }, { - "T": 533.0, - "V": 0.0 + "T": 550.0, + "V": 0.1079 }, { - "T": 537.0, - "V": 0.0 + "T": 555.0, + "V": 0.1179 }, { - "T": 541.0, + "T": 560.0, "V": 0.0 }, { - "T": 545.0, - "V": 0.0 + "T": 565.0, + "V": 0.1101 }, { - "T": 549.0, - "V": 0.0 + "T": 570.0, + "V": 0.1257 }, { - "T": 553.0, + "T": 575.0, "V": 0.0 }, { - "T": 557.0, - "V": 0.0 + "T": 580.0, + "V": 0.1088 }, { - "T": 561.0, + "T": 585.0, "V": 0.0 }, { - "T": 565.0, - "V": 0.0 + "T": 590.0, + "V": 0.1055 }, { - "T": 569.0, - "V": 0.0 + "T": 595.0, + "V": 0.1197 }, { - "T": 573.0, - "V": 0.0 + "T": 600.0, + "V": 0.0957 }, { - "T": 577.0, - "V": 0.0 + "T": 605.0, + "V": 0.1992 }, { - "T": 581.0, - "V": 0.0 + "T": 610.0, + "V": 0.1408 }, { - "T": 585.0, - "V": 0.0 + "T": 615.0, + "V": 0.0937 }, { - "T": 589.0, - "V": 1.7027 + "T": 620.0, + "V": 0.2025 }, { - "T": 593.0, - "V": 0.0 + "T": 625.0, + "V": 0.1305 } ], "WorkingSetMB": [ { "T": 0.0, - "V": 384.54 + "V": 159.06 }, { "T": 4.0, - "V": 414.5 - }, - { - "T": 8.0, - "V": 439.36 + "V": 178.03 }, { - "T": 12.0, - "V": 441.11 + "T": 9.0, + "V": 207.24 }, { - "T": 16.0, - "V": 448.01 + "T": 14.0, + "V": 220.48 }, { - "T": 20.0, - "V": 467.39 + "T": 19.0, + "V": 220.53 }, { "T": 24.0, - "V": 502.77 - }, - { - "T": 28.0, - "V": 536.85 + "V": 229.77 }, { - "T": 32.0, - "V": 546.89 + "T": 29.0, + "V": 232.34 }, { - "T": 36.0, - "V": 571.57 + "T": 34.0, + "V": 236.64 }, { - "T": 40.0, - "V": 593.38 + "T": 39.0, + "V": 242.09 }, { "T": 44.0, - "V": 596.25 - }, - { - "T": 48.0, - "V": 604.91 + "V": 243.78 }, { - "T": 52.0, - "V": 636.68 + "T": 49.0, + "V": 244.38 }, { - "T": 56.0, - "V": 659.28 + "T": 54.0, + "V": 244.38 }, { - "T": 60.0, - "V": 684.12 + "T": 59.0, + "V": 244.41 }, { "T": 64.0, - "V": 718.49 - }, - { - "T": 68.0, - "V": 751.18 + "V": 243.1 }, { - "T": 72.0, - "V": 786.07 + "T": 69.0, + "V": 243.1 }, { - "T": 76.0, - "V": 817.93 + "T": 74.0, + "V": 236.25 }, { - "T": 80.0, - "V": 821.07 + "T": 79.0, + "V": 236.21 }, { "T": 84.0, - "V": 825.21 - }, - { - "T": 88.0, - "V": 825.04 + "V": 234.44 }, { - "T": 92.0, - "V": 825.05 + "T": 89.0, + "V": 232.6 }, { - "T": 96.0, - "V": 825.06 + "T": 94.0, + "V": 231.37 }, { - "T": 100.0, - "V": 825.09 + "T": 99.0, + "V": 230.95 }, { "T": 104.0, - "V": 825.1 - }, - { - "T": 108.0, - "V": 827.8 + "V": 230.04 }, { - "T": 112.0, - "V": 831.3 + "T": 109.0, + "V": 229.85 }, { - "T": 116.0, - "V": 831.58 + "T": 114.0, + "V": 229.62 }, { - "T": 120.0, - "V": 831.67 + "T": 119.0, + "V": 229.57 }, { "T": 124.0, - "V": 833.27 - }, - { - "T": 128.0, - "V": 835.67 + "V": 229.71 }, { - "T": 132.0, - "V": 837.52 + "T": 129.0, + "V": 229.7 }, { - "T": 136.0, - "V": 841.2 + "T": 134.0, + "V": 217.86 }, { - "T": 140.0, - "V": 845.05 + "T": 139.0, + "V": 217.86 }, { "T": 144.0, - "V": 848.58 - }, - { - "T": 148.0, - "V": 861.81 + "V": 217.86 }, { - "T": 152.0, - "V": 863.39 + "T": 149.0, + "V": 217.98 }, { - "T": 156.0, - "V": 866.55 + "T": 154.0, + "V": 210.86 }, { - "T": 160.0, - "V": 868.3 + "T": 159.0, + "V": 210.88 }, { "T": 164.0, - "V": 864.88 - }, - { - "T": 168.0, - "V": 864.85 + "V": 210.88 }, { - "T": 172.0, - "V": 864.87 + "T": 169.0, + "V": 210.88 }, { - "T": 176.0, - "V": 864.89 + "T": 174.0, + "V": 210.89 }, { - "T": 180.0, - "V": 866.55 + "T": 179.0, + "V": 210.89 }, { "T": 184.0, - "V": 866.56 - }, - { - "T": 188.0, - "V": 866.58 + "V": 210.9 }, { - "T": 192.0, - "V": 866.59 + "T": 189.0, + "V": 210.9 }, { - "T": 196.0, - "V": 866.59 + "T": 194.0, + "V": 210.9 }, { - "T": 200.0, - "V": 866.76 + "T": 199.0, + "V": 211.1 }, { "T": 204.0, - "V": 867.55 - }, - { - "T": 208.0, - "V": 878.77 + "V": 211.07 }, { - "T": 212.0, - "V": 879.42 + "T": 209.0, + "V": 211.08 }, { - "T": 216.0, - "V": 880.03 + "T": 214.0, + "V": 211.08 }, { - "T": 220.0, - "V": 880.73 + "T": 219.0, + "V": 211.09 }, { "T": 224.0, - "V": 883.34 - }, - { - "T": 228.0, - "V": 887.57 + "V": 207.05 }, { - "T": 232.0, - "V": 890.0 + "T": 229.0, + "V": 207.08 }, { - "T": 236.0, - "V": 893.01 + "T": 234.0, + "V": 207.08 }, { - "T": 240.0, - "V": 881.72 + "T": 239.0, + "V": 207.11 }, { "T": 244.0, - "V": 881.72 - }, - { - "T": 248.0, - "V": 881.72 + "V": 207.11 }, { - "T": 252.0, - "V": 881.73 + "T": 249.0, + "V": 207.11 }, { - "T": 256.0, - "V": 881.74 + "T": 254.0, + "V": 207.1 }, { - "T": 260.0, - "V": 881.75 + "T": 259.0, + "V": 207.12 }, { "T": 264.0, - "V": 882.55 - }, - { - "T": 268.0, - "V": 882.55 + "V": 207.12 }, { - "T": 272.0, - "V": 882.56 + "T": 269.0, + "V": 207.12 }, { - "T": 276.0, - "V": 882.57 + "T": 274.0, + "V": 207.12 }, { - "T": 280.0, - "V": 882.58 + "T": 279.0, + "V": 207.12 }, { "T": 284.0, - "V": 882.59 + "V": 207.12 }, { - "T": 288.0, - "V": 882.61 + "T": 289.0, + "V": 207.12 }, { - "T": 292.0, - "V": 884.12 + "T": 294.0, + "V": 207.14 }, { - "T": 296.0, - "V": 887.92 - }, - { - "T": 300.0, - "V": 895.15 + "T": 299.0, + "V": 207.28 }, { "T": 304.0, - "V": 898.37 - }, - { - "T": 308.0, - "V": 899.54 + "V": 207.3 }, { - "T": 312.0, - "V": 901.32 + "T": 309.0, + "V": 207.28 }, { - "T": 316.0, - "V": 903.31 + "T": 314.0, + "V": 207.28 }, { - "T": 320.0, - "V": 905.7 + "T": 319.0, + "V": 207.28 }, { "T": 324.0, - "V": 907.21 - }, - { - "T": 328.0, - "V": 910.6 + "V": 207.28 }, { - "T": 332.0, - "V": 900.96 + "T": 329.0, + "V": 207.47 }, { - "T": 336.0, - "V": 898.23 + "T": 334.0, + "V": 207.47 }, { - "T": 340.0, - "V": 898.23 + "T": 339.0, + "V": 207.47 }, { "T": 344.0, - "V": 898.23 - }, - { - "T": 348.0, - "V": 898.23 + "V": 207.7 }, { - "T": 352.0, - "V": 898.23 + "T": 349.0, + "V": 207.7 }, { - "T": 356.0, - "V": 898.23 + "T": 354.0, + "V": 208.09 }, { - "T": 360.0, - "V": 898.23 + "T": 359.0, + "V": 208.09 }, { "T": 364.0, - "V": 899.11 - }, - { - "T": 368.0, - "V": 899.74 + "V": 208.09 }, { - "T": 372.0, - "V": 899.74 + "T": 369.0, + "V": 208.46 }, { - "T": 376.0, - "V": 899.75 + "T": 374.0, + "V": 208.48 }, { - "T": 380.0, - "V": 899.76 + "T": 379.0, + "V": 208.82 }, { "T": 384.0, - "V": 899.77 - }, - { - "T": 388.0, - "V": 899.79 + "V": 208.82 }, { - "T": 392.0, - "V": 900.2 + "T": 389.0, + "V": 208.82 }, { - "T": 396.0, - "V": 910.92 + "T": 394.0, + "V": 209.15 }, { - "T": 400.0, - "V": 910.96 + "T": 399.0, + "V": 209.11 }, { "T": 404.0, - "V": 911.79 - }, - { - "T": 408.0, - "V": 912.2 + "V": 209.11 }, { - "T": 412.0, - "V": 912.79 + "T": 409.0, + "V": 209.34 }, { - "T": 416.0, - "V": 914.05 + "T": 414.0, + "V": 209.34 }, { - "T": 420.0, - "V": 916.19 + "T": 419.0, + "V": 209.68 }, { "T": 424.0, - "V": 915.33 - }, - { - "T": 428.0, - "V": 914.69 + "V": 209.77 }, { - "T": 432.0, - "V": 914.69 + "T": 429.0, + "V": 209.74 }, { - "T": 436.0, - "V": 914.7 + "T": 434.0, + "V": 210.07 }, { - "T": 440.0, - "V": 914.7 + "T": 439.0, + "V": 210.12 }, { "T": 444.0, - "V": 914.7 - }, - { - "T": 448.0, - "V": 914.7 + "V": 210.49 }, { - "T": 452.0, - "V": 914.71 + "T": 449.0, + "V": 210.49 }, { - "T": 456.0, - "V": 914.71 + "T": 454.0, + "V": 210.5 }, { - "T": 460.0, - "V": 912.98 + "T": 459.0, + "V": 210.51 }, { "T": 464.0, - "V": 912.99 - }, - { - "T": 468.0, - "V": 912.99 + "V": 210.51 }, { - "T": 472.0, - "V": 912.98 + "T": 469.0, + "V": 210.5 }, { - "T": 476.0, - "V": 912.99 + "T": 474.0, + "V": 210.51 }, { - "T": 480.0, - "V": 913.0 + "T": 479.0, + "V": 210.51 }, { "T": 484.0, - "V": 913.0 + "V": 210.51 }, { - "T": 488.0, - "V": 913.0 + "T": 489.0, + "V": 210.51 }, { - "T": 492.0, - "V": 913.0 + "T": 494.0, + "V": 210.51 }, { - "T": 496.0, - "V": 912.37 + "T": 499.0, + "V": 210.51 }, { - "T": 500.0, - "V": 912.38 + "T": 504.0, + "V": 210.51 }, { - "T": 504.0, - "V": 912.39 + "T": 509.0, + "V": 210.51 }, { - "T": 508.0, - "V": 912.81 + "T": 514.0, + "V": 210.53 }, { - "T": 512.0, - "V": 913.67 + "T": 519.0, + "V": 210.53 }, { - "T": 516.0, - "V": 915.84 + "T": 524.0, + "V": 210.55 }, { - "T": 520.0, - "V": 909.05 + "T": 529.0, + "V": 210.53 }, { - "T": 524.0, - "V": 909.0 + "T": 534.0, + "V": 210.53 }, { - "T": 528.0, - "V": 908.28 + "T": 539.0, + "V": 210.53 }, { - "T": 532.0, - "V": 908.28 + "T": 544.0, + "V": 210.53 }, { - "T": 536.0, - "V": 908.28 + "T": 549.0, + "V": 210.52 }, { - "T": 540.0, - "V": 908.28 + "T": 554.0, + "V": 210.53 }, { - "T": 544.0, - "V": 908.27 + "T": 559.0, + "V": 210.56 }, { - "T": 548.0, - "V": 908.28 + "T": 564.0, + "V": 210.53 }, { - "T": 552.0, - "V": 908.28 + "T": 569.0, + "V": 210.53 }, { - "T": 556.0, - "V": 908.28 + "T": 574.0, + "V": 210.53 }, { - "T": 560.0, - "V": 908.18 + "T": 579.0, + "V": 210.82 }, { - "T": 564.0, - "V": 908.19 + "T": 584.0, + "V": 210.82 }, { - "T": 568.0, - "V": 908.2 + "T": 589.0, + "V": 211.16 }, { - "T": 572.0, - "V": 908.32 + "T": 594.0, + "V": 211.18 }, { - "T": 576.0, - "V": 909.08 + "T": 599.0, + "V": 211.51 }, { - "T": 580.0, - "V": 909.08 + "T": 604.0, + "V": 211.51 }, { - "T": 584.0, - "V": 910.15 + "T": 609.0, + "V": 211.51 }, { - "T": 588.0, - "V": 913.57 + "T": 614.0, + "V": 211.51 }, { - "T": 592.0, - "V": 913.38 + "T": 619.0, + "V": 211.51 }, { - "T": 596.0, - "V": 914.25 + "T": 624.0, + "V": 211.51 } ], "AllocRateMB": [ { - "T": 1.0, - "V": 7.67 + "T": 0.0, + "V": 5.45 }, { "T": 5.0, - "V": 8.77 - }, - { - "T": 9.0, - "V": 7.95 + "V": 5.96 }, { - "T": 13.0, - "V": 8.93 + "T": 10.0, + "V": 5.76 }, { - "T": 17.0, - "V": 8.41 + "T": 15.0, + "V": 5.89 }, { - "T": 21.0, - "V": 8.26 + "T": 20.0, + "V": 5.75 }, { "T": 25.0, - "V": 8.29 - }, - { - "T": 29.0, - "V": 8.72 + "V": 5.8 }, { - "T": 33.0, - "V": 8.12 + "T": 30.0, + "V": 5.85 }, { - "T": 37.0, - "V": 8.87 + "T": 35.0, + "V": 5.62 }, { - "T": 41.0, - "V": 8.23 + "T": 40.0, + "V": 5.89 }, { "T": 45.0, - "V": 8.15 - }, - { - "T": 49.0, - "V": 8.29 + "V": 5.7 }, { - "T": 53.0, - "V": 8.48 + "T": 50.0, + "V": 5.65 }, { - "T": 57.0, - "V": 8.57 + "T": 55.0, + "V": 5.99 }, { - "T": 61.0, - "V": 8.84 + "T": 60.0, + "V": 5.87 }, { "T": 65.0, - "V": 7.93 - }, - { - "T": 69.0, - "V": 9.43 + "V": 5.76 }, { - "T": 73.0, - "V": 8.25 + "T": 70.0, + "V": 5.63 }, { - "T": 77.0, - "V": 9.13 + "T": 75.0, + "V": 5.76 }, { - "T": 81.0, - "V": 8.17 + "T": 80.0, + "V": 5.68 }, { "T": 85.0, - "V": 8.2 - }, - { - "T": 89.0, - "V": 8.94 + "V": 5.85 }, { - "T": 93.0, - "V": 10.03 + "T": 90.0, + "V": 5.7 }, { - "T": 97.0, - "V": 7.92 + "T": 95.0, + "V": 5.98 }, { - "T": 101.0, - "V": 9.2 + "T": 100.0, + "V": 5.75 }, { "T": 105.0, - "V": 8.74 - }, - { - "T": 109.0, - "V": 8.35 + "V": 5.96 }, { - "T": 113.0, - "V": 8.95 + "T": 110.0, + "V": 5.75 }, { - "T": 117.0, - "V": 9.29 + "T": 115.0, + "V": 5.66 }, { - "T": 121.0, - "V": 9.57 + "T": 120.0, + "V": 5.65 }, { "T": 125.0, - "V": 8.43 - }, - { - "T": 129.0, - "V": 9.02 + "V": 5.74 }, { - "T": 133.0, - "V": 9.44 + "T": 130.0, + "V": 5.73 }, { - "T": 137.0, - "V": 9.02 + "T": 135.0, + "V": 5.71 }, { - "T": 141.0, - "V": 8.67 + "T": 140.0, + "V": 5.75 }, { "T": 145.0, - "V": 8.39 - }, - { - "T": 149.0, - "V": 8.8 + "V": 5.62 }, { - "T": 153.0, - "V": 8.67 + "T": 150.0, + "V": 5.76 }, { - "T": 157.0, - "V": 8.14 + "T": 155.0, + "V": 0.0 }, { - "T": 161.0, - "V": 9.3 + "T": 160.0, + "V": 0.0 }, { "T": 165.0, - "V": 8.14 - }, - { - "T": 169.0, - "V": 9.55 + "V": 0.0 }, { - "T": 173.0, - "V": 9.08 + "T": 170.0, + "V": 0.0 }, { - "T": 177.0, - "V": 8.14 + "T": 175.0, + "V": 0.0 }, { - "T": 181.0, - "V": 8.7 + "T": 180.0, + "V": 0.0 }, { "T": 185.0, - "V": 9.21 - }, - { - "T": 189.0, - "V": 8.5 + "V": 0.0 }, { - "T": 193.0, - "V": 7.99 + "T": 190.0, + "V": 0.0 }, { - "T": 197.0, - "V": 9.43 + "T": 195.0, + "V": 0.0 }, { - "T": 201.0, - "V": 8.23 + "T": 200.0, + "V": 0.0 }, { "T": 205.0, - "V": 9.02 - }, - { - "T": 209.0, - "V": 8.16 + "V": 0.0 }, { - "T": 213.0, - "V": 8.18 + "T": 210.0, + "V": 0.0 }, { - "T": 217.0, - "V": 8.88 + "T": 215.0, + "V": 0.0 }, { - "T": 221.0, - "V": 9.95 + "T": 220.0, + "V": 0.0 }, { "T": 225.0, - "V": 7.96 - }, - { - "T": 229.0, - "V": 8.7 + "V": 0.0 }, { - "T": 233.0, - "V": 9.08 + "T": 230.0, + "V": 0.0 }, { - "T": 237.0, - "V": 8.17 + "T": 235.0, + "V": 0.0 }, { - "T": 241.0, - "V": 8.78 + "T": 240.0, + "V": 0.0 }, { "T": 245.0, - "V": 9.42 - }, - { - "T": 249.0, - "V": 9.06 + "V": 0.0 }, { - "T": 253.0, - "V": 8.46 + "T": 250.0, + "V": 0.0 }, { - "T": 257.0, - "V": 9.22 + "T": 255.0, + "V": 0.0 }, { - "T": 261.0, - "V": 9.22 + "T": 260.0, + "V": 0.0 }, { "T": 265.0, - "V": 8.26 - }, - { - "T": 269.0, - "V": 8.41 + "V": 0.0 }, { - "T": 273.0, - "V": 8.48 + "T": 270.0, + "V": 0.0 }, { - "T": 277.0, - "V": 8.86 + "T": 275.0, + "V": 0.0 }, { - "T": 281.0, - "V": 8.58 + "T": 280.0, + "V": 0.0 }, { "T": 285.0, - "V": 8.12 - }, - { - "T": 289.0, - "V": 9.07 + "V": 0.0 }, { - "T": 293.0, - "V": 8.2 + "T": 290.0, + "V": 0.0 }, { - "T": 297.0, - "V": 9.69 + "T": 295.0, + "V": 0.0 }, { - "T": 301.0, - "V": 9.03 + "T": 300.0, + "V": 0.0 }, { "T": 305.0, - "V": 8.35 - }, - { - "T": 309.0, - "V": 8.68 + "V": 0.0 }, { - "T": 313.0, - "V": 9.01 + "T": 310.0, + "V": 0.0 }, { - "T": 317.0, - "V": 8.45 + "T": 315.0, + "V": 0.0 }, { - "T": 321.0, - "V": 7.87 + "T": 320.0, + "V": 0.0 }, { "T": 325.0, - "V": 9.32 - }, - { - "T": 329.0, - "V": 8.24 + "V": 5.73 }, { - "T": 333.0, - "V": 8.99 + "T": 330.0, + "V": 5.76 }, { - "T": 337.0, - "V": 8.03 + "T": 335.0, + "V": 5.75 }, { - "T": 341.0, - "V": 8.46 + "T": 340.0, + "V": 5.84 }, { "T": 345.0, - "V": 8.81 - }, - { - "T": 349.0, - "V": 9.88 + "V": 5.75 }, { - "T": 353.0, - "V": 7.84 + "T": 350.0, + "V": 5.61 }, { - "T": 357.0, - "V": 8.69 + "T": 355.0, + "V": 5.68 }, { - "T": 361.0, - "V": 9.28 + "T": 360.0, + "V": 5.69 }, { "T": 365.0, - "V": 8.1 - }, - { - "T": 369.0, - "V": 8.87 + "V": 5.75 }, { - "T": 373.0, - "V": 9.14 + "T": 370.0, + "V": 5.72 }, { - "T": 377.0, - "V": 8.48 + "T": 375.0, + "V": 5.7 }, { - "T": 381.0, - "V": 8.41 + "T": 380.0, + "V": 5.86 }, { "T": 385.0, - "V": 9.54 - }, - { - "T": 389.0, - "V": 9.38 + "V": 5.71 }, { - "T": 393.0, - "V": 7.78 + "T": 390.0, + "V": 5.75 }, { - "T": 397.0, - "V": 8.75 + "T": 395.0, + "V": 5.85 }, { - "T": 401.0, - "V": 8.09 + "T": 400.0, + "V": 5.79 }, { "T": 405.0, - "V": 8.79 - }, - { - "T": 409.0, - "V": 8.18 + "V": 5.87 }, { - "T": 413.0, - "V": 8.43 + "T": 410.0, + "V": 5.75 }, { - "T": 417.0, - "V": 8.75 + "T": 415.0, + "V": 5.65 }, { - "T": 421.0, - "V": 8.44 + "T": 420.0, + "V": 5.67 }, { "T": 425.0, - "V": 9.55 - }, - { - "T": 429.0, - "V": 8.83 + "V": 5.78 }, { - "T": 433.0, - "V": 8.57 + "T": 430.0, + "V": 5.86 }, { - "T": 437.0, - "V": 8.58 + "T": 435.0, + "V": 5.81 }, { - "T": 441.0, - "V": 8.91 + "T": 440.0, + "V": 5.95 }, { "T": 445.0, - "V": 8.63 - }, - { - "T": 449.0, - "V": 7.83 + "V": 5.61 }, { - "T": 453.0, - "V": 9.22 + "T": 450.0, + "V": 5.81 }, { - "T": 457.0, - "V": 8.52 + "T": 455.0, + "V": 5.9 }, { - "T": 461.0, - "V": 8.6 + "T": 460.0, + "V": 5.7 }, { "T": 465.0, - "V": 7.96 - }, - { - "T": 469.0, - "V": 8.55 + "V": 5.73 }, { - "T": 473.0, - "V": 8.87 + "T": 470.0, + "V": 5.91 }, { - "T": 477.0, - "V": 9.65 + "T": 475.0, + "V": 5.81 }, { - "T": 481.0, - "V": 7.83 + "T": 480.0, + "V": 5.75 }, { "T": 485.0, - "V": 8.48 - }, - { - "T": 489.0, - "V": 9.19 + "V": 5.77 }, { - "T": 493.0, - "V": 8.53 + "T": 490.0, + "V": 5.76 }, { - "T": 497.0, - "V": 8.87 + "T": 495.0, + "V": 5.76 }, { - "T": 501.0, - "V": 9.55 + "T": 500.0, + "V": 5.79 }, { "T": 505.0, - "V": 8.54 - }, - { - "T": 509.0, - "V": 8.47 + "V": 5.77 }, { - "T": 513.0, - "V": 9.38 + "T": 510.0, + "V": 5.82 }, { - "T": 517.0, - "V": 9.07 + "T": 515.0, + "V": 5.74 }, { - "T": 521.0, - "V": 8.11 + "T": 520.0, + "V": 5.72 }, { "T": 525.0, - "V": 8.68 - }, - { - "T": 529.0, - "V": 8.39 + "V": 5.8 }, { - "T": 533.0, - "V": 9.13 + "T": 530.0, + "V": 5.68 }, { - "T": 537.0, - "V": 8.11 + "T": 535.0, + "V": 5.78 }, { - "T": 541.0, - "V": 8.34 + "T": 540.0, + "V": 5.73 }, { "T": 545.0, - "V": 8.87 - }, - { - "T": 549.0, - "V": 8.54 + "V": 5.5 }, { - "T": 553.0, - "V": 9.5 + "T": 550.0, + "V": 5.82 }, { - "T": 557.0, - "V": 8.77 + "T": 555.0, + "V": 5.76 }, { - "T": 561.0, - "V": 8.7 + "T": 560.0, + "V": 5.71 }, { "T": 565.0, - "V": 8.68 + "V": 5.87 }, { - "T": 569.0, - "V": 8.52 + "T": 570.0, + "V": 5.78 }, { - "T": 573.0, - "V": 8.57 + "T": 575.0, + "V": 5.74 }, { - "T": 577.0, - "V": 7.76 - }, - { - "T": 581.0, - "V": 9.13 + "T": 580.0, + "V": 5.77 }, { "T": 585.0, - "V": 8.48 + "V": 5.79 }, { - "T": 589.0, - "V": 8.36 + "T": 590.0, + "V": 5.73 }, { - "T": 593.0, - "V": 7.9 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ - { - "T": 1.0, - "V": 0.0 + "T": 595.0, + "V": 5.79 }, { - "T": 5.0, - "V": 0.0 + "T": 600.0, + "V": 5.79 }, { - "T": 9.0, - "V": 0.0 + "T": 605.0, + "V": 5.77 }, { - "T": 13.0, - "V": 0.0 + "T": 610.0, + "V": 5.68 }, { - "T": 17.0, - "V": 0.0 + "T": 615.0, + "V": 5.69 }, { - "T": 21.0, - "V": 0.0 + "T": 620.0, + "V": 5.74 }, { - "T": 25.0, - "V": 0.0 - }, + "T": 625.0, + "V": 5.66 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ { - "T": 29.0, + "T": 0.0, "V": 0.0 }, { - "T": 33.0, + "T": 5.0, "V": 0.0 }, { - "T": 37.0, + "T": 10.0, "V": 0.0 }, { - "T": 41.0, + "T": 15.0, "V": 0.0 }, { - "T": 45.0, + "T": 20.0, "V": 0.0 }, { - "T": 49.0, + "T": 25.0, "V": 0.0 }, { - "T": 53.0, + "T": 30.0, "V": 0.0 }, { - "T": 57.0, + "T": 35.0, "V": 0.0 }, { - "T": 61.0, + "T": 40.0, "V": 0.0 }, { - "T": 65.0, + "T": 45.0, "V": 0.0 }, { - "T": 69.0, + "T": 50.0, "V": 0.0 }, { - "T": 73.0, + "T": 55.0, "V": 0.0 }, { - "T": 77.0, + "T": 60.0, "V": 0.0 }, { - "T": 81.0, + "T": 65.0, "V": 0.0 }, { - "T": 85.0, + "T": 70.0, "V": 0.0 }, { - "T": 89.0, + "T": 75.0, "V": 0.0 }, { - "T": 93.0, + "T": 80.0, "V": 0.0 }, { - "T": 97.0, + "T": 85.0, "V": 0.0 }, { - "T": 101.0, + "T": 90.0, "V": 0.0 }, { - "T": 105.0, + "T": 95.0, "V": 0.0 }, { - "T": 109.0, - "V": 0.0 + "T": 100.0, + "V": 1.0 }, { - "T": 113.0, - "V": 0.0 + "T": 105.0, + "V": 1.0 }, { - "T": 117.0, - "V": 0.0 + "T": 110.0, + "V": 1.0 }, { - "T": 121.0, + "T": 115.0, "V": 0.0 }, { - "T": 125.0, + "T": 120.0, "V": 0.0 }, { - "T": 129.0, - "V": 0.0 + "T": 125.0, + "V": 1.0 }, { - "T": 133.0, + "T": 130.0, "V": 0.0 }, { - "T": 137.0, - "V": 0.0 + "T": 135.0, + "V": 1.0 }, { - "T": 141.0, + "T": 140.0, "V": 0.0 }, { @@ -21147,39 +20471,31 @@ "V": 0.0 }, { - "T": 149.0, - "V": 0.0 - }, - { - "T": 153.0, - "V": 0.0 + "T": 150.0, + "V": 1.0 }, { - "T": 157.0, - "V": 0.0 + "T": 155.0, + "V": 1.0 }, { - "T": 161.0, + "T": 160.0, "V": 0.0 }, { "T": 165.0, - "V": 0.0 - }, - { - "T": 169.0, - "V": 0.0 + "V": 1.0 }, { - "T": 173.0, + "T": 170.0, "V": 0.0 }, { - "T": 177.0, + "T": 175.0, "V": 0.0 }, { - "T": 181.0, + "T": 180.0, "V": 0.0 }, { @@ -21187,4667 +20503,4709 @@ "V": 0.0 }, { - "T": 189.0, - "V": 0.0 - }, - { - "T": 193.0, + "T": 190.0, "V": 0.0 }, { - "T": 197.0, + "T": 195.0, "V": 0.0 }, { - "T": 201.0, - "V": 0.0 + "T": 200.0, + "V": 1.0 }, { "T": 205.0, - "V": 0.0 - }, - { - "T": 209.0, - "V": 0.0 + "V": 1.0 }, { - "T": 213.0, - "V": 0.0 + "T": 210.0, + "V": 1.0 }, { - "T": 217.0, - "V": 0.0 + "T": 215.0, + "V": 1.0 }, { - "T": 221.0, - "V": 0.0 + "T": 220.0, + "V": 1.0 }, { "T": 225.0, - "V": 0.0 + "V": 1.0 }, { - "T": 229.0, - "V": 0.0 + "T": 230.0, + "V": 1.0 }, { - "T": 233.0, - "V": 0.0 + "T": 235.0, + "V": 3.0 }, { - "T": 237.0, + "T": 240.0, "V": 1.0 }, - { - "T": 241.0, - "V": 0.0 - }, { "T": 245.0, - "V": 0.0 - }, - { - "T": 249.0, - "V": 0.0 + "V": 2.0 }, { - "T": 253.0, - "V": 0.0 + "T": 250.0, + "V": 1.0 }, { - "T": 257.0, + "T": 255.0, "V": 0.0 }, { - "T": 261.0, - "V": 0.0 + "T": 260.0, + "V": 2.0 }, { "T": 265.0, - "V": 0.0 - }, - { - "T": 269.0, - "V": 0.0 + "V": 1.0 }, { - "T": 273.0, - "V": 0.0 + "T": 270.0, + "V": 1.0 }, { - "T": 277.0, - "V": 0.0 + "T": 275.0, + "V": 2.0 }, { - "T": 281.0, - "V": 0.0 + "T": 280.0, + "V": 1.0 }, { "T": 285.0, - "V": 0.0 - }, - { - "T": 289.0, - "V": 0.0 - }, - { - "T": 293.0, - "V": 0.0 + "V": 1.0 }, { - "T": 297.0, - "V": 0.0 + "T": 290.0, + "V": 2.0 }, { - "T": 301.0, + "T": 295.0, "V": 1.0 }, { - "T": 305.0, - "V": 0.0 + "T": 300.0, + "V": 2.0 }, { - "T": 309.0, - "V": 0.0 + "T": 305.0, + "V": 1.0 }, { - "T": 313.0, - "V": 0.0 + "T": 310.0, + "V": 1.0 }, { - "T": 317.0, - "V": 0.0 + "T": 315.0, + "V": 2.0 }, { - "T": 321.0, - "V": 0.0 + "T": 320.0, + "V": 1.0 }, { "T": 325.0, "V": 0.0 }, { - "T": 329.0, - "V": 0.0 - }, - { - "T": 333.0, - "V": 0.0 + "T": 330.0, + "V": 2.0 }, { - "T": 337.0, - "V": 0.0 + "T": 335.0, + "V": 1.0 }, { - "T": 341.0, + "T": 340.0, "V": 0.0 }, { "T": 345.0, - "V": 0.0 - }, - { - "T": 349.0, - "V": 0.0 - }, - { - "T": 353.0, - "V": 0.0 + "V": 2.0 }, { - "T": 357.0, + "T": 350.0, "V": 0.0 }, { - "T": 361.0, - "V": 0.0 + "T": 355.0, + "V": 1.0 }, { - "T": 365.0, + "T": 360.0, "V": 1.0 }, { - "T": 369.0, + "T": 365.0, "V": 0.0 }, { - "T": 373.0, - "V": 0.0 + "T": 370.0, + "V": 1.0 }, { - "T": 377.0, - "V": 0.0 + "T": 375.0, + "V": 1.0 }, { - "T": 381.0, - "V": 0.0 + "T": 380.0, + "V": 1.0 }, { "T": 385.0, - "V": 0.0 - }, - { - "T": 389.0, - "V": 0.0 + "V": 1.0 }, { - "T": 393.0, - "V": 0.0 + "T": 390.0, + "V": 1.0 }, { - "T": 397.0, - "V": 0.0 + "T": 395.0, + "V": 1.0 }, { - "T": 401.0, - "V": 0.0 + "T": 400.0, + "V": 1.0 }, { "T": 405.0, "V": 0.0 }, { - "T": 409.0, - "V": 0.0 - }, - { - "T": 413.0, - "V": 0.0 + "T": 410.0, + "V": 1.0 }, { - "T": 417.0, - "V": 0.0 + "T": 415.0, + "V": 1.0 }, { - "T": 421.0, - "V": 0.0 + "T": 420.0, + "V": 1.0 }, { "T": 425.0, - "V": 0.0 - }, - { - "T": 429.0, - "V": 0.0 + "V": 1.0 }, { - "T": 433.0, + "T": 430.0, "V": 0.0 }, { - "T": 437.0, - "V": 0.0 + "T": 435.0, + "V": 1.0 }, { - "T": 441.0, - "V": 0.0 + "T": 440.0, + "V": 1.0 }, { "T": 445.0, - "V": 0.0 - }, - { - "T": 449.0, - "V": 0.0 + "V": 1.0 }, { - "T": 453.0, - "V": 0.0 + "T": 450.0, + "V": 1.0 }, { - "T": 457.0, - "V": 0.0 + "T": 455.0, + "V": 1.0 }, { - "T": 461.0, - "V": 0.0 + "T": 460.0, + "V": 1.0 }, { "T": 465.0, "V": 0.0 }, { - "T": 469.0, + "T": 470.0, "V": 0.0 }, { - "T": 473.0, - "V": 0.0 + "T": 475.0, + "V": 2.0 }, { - "T": 477.0, - "V": 0.0 + "T": 480.0, + "V": 1.0 }, { - "T": 481.0, + "T": 485.0, "V": 0.0 }, { - "T": 485.0, - "V": 0.0 + "T": 490.0, + "V": 2.0 }, { - "T": 489.0, - "V": 0.0 + "T": 495.0, + "V": 1.0 }, { - "T": 493.0, - "V": 0.0 + "T": 500.0, + "V": 1.0 }, { - "T": 497.0, - "V": 0.0 + "T": 505.0, + "V": 1.0 }, { - "T": 501.0, + "T": 510.0, "V": 0.0 }, { - "T": 505.0, - "V": 0.0 + "T": 515.0, + "V": 1.0 }, { - "T": 509.0, - "V": 0.0 + "T": 520.0, + "V": 1.0 }, { - "T": 513.0, - "V": 0.0 + "T": 525.0, + "V": 1.0 }, { - "T": 517.0, - "V": 0.0 + "T": 530.0, + "V": 1.0 }, { - "T": 521.0, + "T": 535.0, "V": 0.0 }, { - "T": 525.0, - "V": 0.0 + "T": 540.0, + "V": 1.0 }, { - "T": 529.0, - "V": 0.0 + "T": 545.0, + "V": 1.0 }, { - "T": 533.0, - "V": 0.0 + "T": 550.0, + "V": 1.0 }, { - "T": 537.0, - "V": 0.0 + "T": 555.0, + "V": 1.0 }, { - "T": 541.0, + "T": 560.0, "V": 0.0 }, { - "T": 545.0, - "V": 0.0 + "T": 565.0, + "V": 1.0 }, { - "T": 549.0, - "V": 0.0 + "T": 570.0, + "V": 1.0 }, { - "T": 553.0, + "T": 575.0, "V": 0.0 }, { - "T": 557.0, - "V": 0.0 + "T": 580.0, + "V": 1.0 }, { - "T": 561.0, + "T": 585.0, "V": 0.0 }, { - "T": 565.0, - "V": 0.0 + "T": 590.0, + "V": 1.0 }, { - "T": 569.0, - "V": 0.0 + "T": 595.0, + "V": 1.0 }, { - "T": 573.0, - "V": 0.0 + "T": 600.0, + "V": 1.0 }, { - "T": 577.0, - "V": 0.0 + "T": 605.0, + "V": 2.0 }, { - "T": 581.0, - "V": 0.0 + "T": 610.0, + "V": 1.0 }, { - "T": 585.0, - "V": 0.0 + "T": 615.0, + "V": 1.0 }, { - "T": 589.0, - "V": 0.0 + "T": 620.0, + "V": 2.0 }, { - "T": 593.0, - "V": 0.0 + "T": 625.0, + "V": 1.0 } ] } }, { - "ScenarioId": "gcperfsim-churn", - "ScenarioName": "GCPerfSim: high-throughput transient object churn", + "ScenarioId": "zeroalloc", + "ScenarioName": "Console: near-zero-allocation numeric compute (matrix multiply)", "GcModeId": "workstation", "GcModeName": "Workstation GC", - "DurationSeconds": 634.2785712, + "DurationSeconds": 600.0006233, "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 5.4890717366049735, - "TotalAllocatedBytes": 3650722808.0, - "Gen0Collections": 243, - "Gen1Collections": 208, - "Gen2Collections": 4, - "WorkingSetBytes": 187584512.0, - "PeakWorkingSetBytes": 187584512.0, - "HeapSizeBytes": 152745464.0, - "TotalCommittedBytes": 153419776.0, - "GcName": "Workstation GC", - "TagbUsed": 3.4 + "OperationsTotal": 700215, + "OpsPerSecondOverall": 1167.0237876567885, + "TotalAllocatedBytes": 16876128, + "BytesAllocatedThisThreadDuringRun": 1008, + "Gen0Collections": 1, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 55283712, + "PeakWorkingSetBytes": 55283712, + "HeapSizeBytes": 571560, + "TotalCommittedBytes": 17453056, + "GcName": "CoreCLR (Workstation)" }, "PauseTimePctStats": { - "Avg": 0.05171949286846273, + "Avg": 0.00033852596314907867, "P50": 0.0, - "P90": 0.16299999999999648, - "P99": 0.22400000000000198, - "Max": 1.3477000000000003, + "P90": 0.0, + "P99": 0.0, + "Max": 0.20209999999999997, "Min": 0.0, - "Count": 631 + "Count": 597 + }, + "PauseTimeMsStats": { + "Avg": 0.003385259631490787, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 2.021, + "Min": 0.0, + "Count": 597 }, "WorkingSetStats": { - "Avg": 179957008.20253164, - "P50": 180490240.0, - "P90": 184733696.0, - "P99": 184762368.0, - "Max": 187584512.0, - "Min": 161189888.0, - "Count": 632 + "Avg": 45097439.46488294, + "P50": 45228032.0, + "P90": 51511296.0, + "P99": 53596160.0, + "Max": 53616640.0, + "Min": 31367168.0, + "Count": 598 }, "AllocRateMBStats": { - "Avg": 5.72595569108821, - "P50": 5.7409515380859375, - "P90": 5.8350372314453125, - "P99": 5.919059753417969, - "Max": 5.986488342285156, - "Min": 2.8428955078125, - "Count": 631 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 + "Avg": 0.02503365368100267, + "P50": 0.02342987060546875, + "P90": 0.03124237060546875, + "P99": 0.038970947265625, + "Max": 0.03910064697265625, + "Min": 0.01531219482421875, + "Count": 597 + }, + "OpsPerSecStats": { + "Avg": 1166.4598662207359, + "P50": 1169.0, + "P90": 1180.0, + "P99": 1247.0, + "Max": 1379.0, + "Min": 994.0, + "Count": 598 }, "TimeSeries": { "PauseTimePct": [ { - "T": 1.0, - "V": 0.0 + "V": 0.0, + "T": 1.0 }, { - "T": 6.0, - "V": 0.0 + "V": 0.0, + "T": 5.0 }, { - "T": 11.0, - "V": 0.0 + "V": 0.0, + "T": 9.0 }, { - "T": 16.0, - "V": 0.0 + "V": 0.0, + "T": 13.0 }, { - "T": 21.0, - "V": 0.0564 + "V": 0.0, + "T": 17.0 }, { - "T": 26.0, - "V": 0.0593 + "V": 0.0, + "T": 21.0 }, { - "T": 31.0, - "V": 0.0 + "V": 0.0, + "T": 25.0 }, { - "T": 36.0, - "V": 0.0 + "V": 0.0, + "T": 29.0 }, { - "T": 41.0, - "V": 0.0 + "V": 0.0, + "T": 33.0 }, { - "T": 46.0, - "V": 0.0 + "V": 0.0, + "T": 37.0 }, { - "T": 51.0, - "V": 0.0612 + "V": 0.0, + "T": 41.0 }, { - "T": 56.0, - "V": 0.0996 + "V": 0.0, + "T": 45.0 }, { - "T": 61.0, - "V": 0.0 + "V": 0.0, + "T": 49.0 }, { - "T": 66.0, - "V": 0.0 + "V": 0.0, + "T": 53.0 }, { - "T": 71.0, - "V": 0.0 + "V": 0.0, + "T": 57.0 }, { - "T": 76.0, - "V": 0.0 + "V": 0.0, + "T": 61.0 }, { - "T": 81.0, - "V": 0.0607 + "V": 0.0, + "T": 65.0 }, { - "T": 86.0, - "V": 0.0625 + "V": 0.0, + "T": 69.0 }, { - "T": 91.0, - "V": 0.0907 + "V": 0.0, + "T": 73.0 }, { - "T": 96.0, - "V": 0.0 + "V": 0.0, + "T": 77.0 }, { - "T": 101.0, - "V": 0.0 + "V": 0.0, + "T": 81.0 }, { - "T": 106.0, - "V": 0.0 + "V": 0.0, + "T": 85.0 }, { - "T": 111.0, - "V": 0.0 + "V": 0.0, + "T": 89.0 }, { - "T": 116.0, - "V": 0.0873 + "V": 0.0, + "T": 93.0 }, { - "T": 121.0, - "V": 0.0899 + "V": 0.0, + "T": 97.0 }, { - "T": 126.0, - "V": 0.0 + "V": 0.0, + "T": 101.0 }, { - "T": 131.0, - "V": 0.0 + "V": 0.0, + "T": 105.0 }, { - "T": 136.0, - "V": 0.0 + "V": 0.0, + "T": 109.0 }, { - "T": 141.0, - "V": 0.0 + "V": 0.0, + "T": 113.0 }, { - "T": 146.0, - "V": 0.1509 + "V": 0.0, + "T": 117.0 }, { - "T": 151.0, - "V": 0.0981 + "V": 0.0, + "T": 121.0 }, { - "T": 156.0, - "V": 0.0 + "V": 0.0, + "T": 125.0 }, { - "T": 161.0, - "V": 0.0 + "V": 0.0, + "T": 129.0 }, { - "T": 166.0, - "V": 0.0 + "V": 0.0, + "T": 133.0 }, { - "T": 171.0, - "V": 0.0 + "V": 0.0, + "T": 137.0 }, { - "T": 176.0, - "V": 0.1313 + "V": 0.0, + "T": 141.0 }, { - "T": 181.0, - "V": 0.1467 + "V": 0.0, + "T": 145.0 }, { - "T": 186.0, - "V": 0.2567 + "V": 0.0, + "T": 149.0 }, { - "T": 191.0, - "V": 0.0 + "V": 0.0, + "T": 153.0 }, { - "T": 196.0, - "V": 0.0 + "V": 0.0, + "T": 157.0 }, { - "T": 201.0, - "V": 0.0 + "V": 0.0, + "T": 161.0 }, { - "T": 206.0, - "V": 0.1119 + "V": 0.0, + "T": 165.0 }, { - "T": 211.0, - "V": 0.1309 + "V": 0.0, + "T": 169.0 }, { - "T": 216.0, - "V": 0.1391 + "V": 0.0, + "T": 173.0 }, { - "T": 221.0, - "V": 0.0 + "V": 0.0, + "T": 177.0 }, { - "T": 226.0, - "V": 0.0 + "V": 0.0, + "T": 181.0 }, { - "T": 231.0, - "V": 0.0 + "V": 0.0, + "T": 185.0 }, { - "T": 236.0, - "V": 0.0 + "V": 0.0, + "T": 189.0 }, { - "T": 241.0, - "V": 0.1109 + "V": 0.0, + "T": 193.0 }, { - "T": 246.0, - "V": 0.1224 + "V": 0.0, + "T": 197.0 }, { - "T": 251.0, - "V": 0.0 + "V": 0.0, + "T": 201.0 }, { - "T": 256.0, - "V": 0.0 + "V": 0.0, + "T": 205.0 }, { - "T": 261.0, - "V": 0.0 + "V": 0.0, + "T": 209.0 }, { - "T": 266.0, - "V": 0.0 + "V": 0.0, + "T": 213.0 }, { - "T": 271.0, - "V": 0.1299 + "V": 0.0, + "T": 217.0 }, { - "T": 276.0, - "V": 0.1696 + "V": 0.0, + "T": 221.0 }, { - "T": 281.0, - "V": 0.0 + "V": 0.0, + "T": 225.0 }, { - "T": 286.0, - "V": 0.0 + "V": 0.0, + "T": 229.0 }, { - "T": 291.0, - "V": 0.0 + "V": 0.0, + "T": 233.0 }, { - "T": 296.0, - "V": 0.0 + "V": 0.0, + "T": 237.0 }, { - "T": 301.0, - "V": 0.1203 + "V": 0.0, + "T": 241.0 }, { - "T": 306.0, - "V": 0.1335 + "V": 0.0, + "T": 245.0 }, { - "T": 311.0, - "V": 0.1507 + "V": 0.0, + "T": 249.0 }, { - "T": 316.0, - "V": 0.0 + "V": 0.0, + "T": 253.0 }, { - "T": 321.0, - "V": 0.0 + "V": 0.0, + "T": 257.0 }, { - "T": 326.0, - "V": 0.0 + "V": 0.0, + "T": 261.0 }, { - "T": 331.0, - "V": 0.0 + "V": 0.0, + "T": 265.0 }, { - "T": 336.0, - "V": 0.1334 + "V": 0.0, + "T": 269.0 }, { - "T": 341.0, - "V": 0.1504 + "V": 0.0, + "T": 273.0 }, { - "T": 346.0, - "V": 0.0 + "V": 0.0, + "T": 277.0 }, { - "T": 351.0, - "V": 0.0 + "V": 0.0, + "T": 281.0 }, { - "T": 356.0, - "V": 0.0 + "V": 0.0, + "T": 285.0 }, { - "T": 361.0, - "V": 0.0 + "V": 0.0, + "T": 289.0 }, { - "T": 366.0, - "V": 0.138 + "V": 0.0, + "T": 293.0 }, { - "T": 371.0, - "V": 0.1358 + "V": 0.0, + "T": 297.0 }, { - "T": 376.0, - "V": 0.0 + "V": 0.0, + "T": 301.0 }, { - "T": 381.0, - "V": 0.0 + "V": 0.0, + "T": 305.0 }, { - "T": 386.0, - "V": 0.0 + "V": 0.0, + "T": 309.0 }, { - "T": 391.0, - "V": 0.0 + "V": 0.0, + "T": 313.0 }, { - "T": 396.0, - "V": 0.1644 + "V": 0.0, + "T": 317.0 }, { - "T": 401.0, - "V": 0.1525 + "V": 0.0, + "T": 321.0 }, { - "T": 406.0, - "V": 0.1477 + "V": 0.0, + "T": 325.0 }, { - "T": 411.0, - "V": 0.0 + "V": 0.0, + "T": 329.0 }, { - "T": 416.0, - "V": 0.0 + "V": 0.0, + "T": 333.0 }, { - "T": 421.0, - "V": 0.0 + "V": 0.0, + "T": 337.0 }, { - "T": 426.0, - "V": 0.0 + "V": 0.0, + "T": 341.0 }, { - "T": 431.0, - "V": 0.1923 + "V": 0.0, + "T": 345.0 }, { - "T": 436.0, - "V": 0.1351 + "V": 0.0, + "T": 349.0 }, { - "T": 441.0, - "V": 0.1509 + "V": 0.0, + "T": 353.0 }, { - "T": 446.0, - "V": 0.0 + "V": 0.0, + "T": 357.0 }, { - "T": 451.0, - "V": 0.0 + "V": 0.0, + "T": 361.0 }, { - "T": 456.0, - "V": 0.0 + "V": 0.0, + "T": 365.0 }, { - "T": 461.0, - "V": 0.1549 + "V": 0.0, + "T": 369.0 }, { - "T": 466.0, - "V": 0.2111 + "V": 0.0, + "T": 373.0 }, { - "T": 471.0, - "V": 0.1386 + "V": 0.0, + "T": 377.0 }, { - "T": 476.0, - "V": 0.0 + "V": 0.0, + "T": 381.0 }, { - "T": 481.0, - "V": 0.0 + "V": 0.0, + "T": 385.0 }, { - "T": 486.0, - "V": 0.0 + "V": 0.0, + "T": 389.0 }, { - "T": 491.0, - "V": 0.0 + "V": 0.0, + "T": 393.0 }, { - "T": 496.0, - "V": 0.1777 + "V": 0.0, + "T": 397.0 }, { - "T": 501.0, - "V": 0.1452 + "V": 0.0, + "T": 401.0 }, { - "T": 506.0, - "V": 0.0 + "V": 0.0, + "T": 405.0 }, { - "T": 511.0, - "V": 0.0 + "V": 0.0, + "T": 409.0 }, { - "T": 516.0, - "V": 0.0 + "V": 0.0, + "T": 413.0 }, { - "T": 521.0, - "V": 0.0 + "V": 0.0, + "T": 417.0 }, { - "T": 526.0, - "V": 0.1978 + "V": 0.0, + "T": 421.0 }, { - "T": 531.0, - "V": 0.1919 + "V": 0.0, + "T": 425.0 }, { - "T": 536.0, - "V": 0.0 + "V": 0.0, + "T": 429.0 }, { - "T": 541.0, - "V": 0.0 + "V": 0.0, + "T": 433.0 }, { - "T": 546.0, - "V": 0.0 + "V": 0.0, + "T": 437.0 }, { - "T": 551.0, - "V": 0.1635 + "V": 0.0, + "T": 441.0 }, { - "T": 556.0, - "V": 0.3839 + "V": 0.0, + "T": 445.0 }, { - "T": 561.0, - "V": 0.1261 + "V": 0.0, + "T": 449.0 }, { - "T": 566.0, - "V": 0.0 + "V": 0.0, + "T": 453.0 }, { - "T": 571.0, - "V": 0.0 + "V": 0.0, + "T": 457.0 }, { - "T": 576.0, - "V": 0.0 + "V": 0.0, + "T": 461.0 }, { - "T": 581.0, - "V": 0.0 + "V": 0.0, + "T": 465.0 }, { - "T": 586.0, - "V": 0.1731 + "V": 0.0, + "T": 469.0 }, { - "T": 591.0, - "V": 0.1994 + "V": 0.0, + "T": 473.0 }, { - "T": 596.0, - "V": 0.0 + "V": 0.0, + "T": 477.0 }, { - "T": 601.0, - "V": 0.0 + "V": 0.0, + "T": 481.0 }, { - "T": 606.0, - "V": 0.0 + "V": 0.0, + "T": 485.0 }, { - "T": 611.0, - "V": 0.0 + "V": 0.0, + "T": 489.0 }, { - "T": 616.0, - "V": 0.149 + "V": 0.0, + "T": 493.0 }, { - "T": 621.0, - "V": 0.1719 + "V": 0.0, + "T": 497.0 }, { - "T": 626.0, - "V": 0.0 + "V": 0.0, + "T": 501.0 }, { - "T": 631.0, - "V": 0.0 - } - ], - "WorkingSetMB": [ - { - "T": 0.0, - "V": 153.72 + "V": 0.0, + "T": 505.0 }, { - "T": 5.0, - "V": 165.9 + "V": 0.0, + "T": 509.0 }, { - "T": 10.0, - "V": 166.01 + "V": 0.0, + "T": 513.0 }, { - "T": 15.0, - "V": 165.61 + "V": 0.0, + "T": 517.0 }, { - "T": 20.0, - "V": 165.68 + "V": 0.0, + "T": 521.0 }, { - "T": 25.0, - "V": 165.7 + "V": 0.0, + "T": 525.0 }, { - "T": 30.0, - "V": 166.19 + "V": 0.0, + "T": 529.0 }, { - "T": 35.0, - "V": 166.2 + "V": 0.0, + "T": 533.0 }, { - "T": 40.0, - "V": 166.2 + "V": 0.0, + "T": 537.0 }, { - "T": 45.0, - "V": 166.57 + "V": 0.0, + "T": 541.0 }, { - "T": 50.0, - "V": 166.58 + "V": 0.0, + "T": 545.0 }, { - "T": 55.0, - "V": 166.58 + "V": 0.0, + "T": 549.0 }, { - "T": 60.0, - "V": 166.97 + "V": 0.0, + "T": 553.0 }, { - "T": 65.0, - "V": 166.98 + "V": 0.0, + "T": 557.0 }, { - "T": 70.0, - "V": 167.31 + "V": 0.0, + "T": 561.0 }, { - "T": 75.0, - "V": 167.32 + "V": 0.0, + "T": 565.0 }, { - "T": 80.0, - "V": 167.32 + "V": 0.0, + "T": 569.0 }, { - "T": 85.0, - "V": 167.68 + "V": 0.0, + "T": 573.0 }, { - "T": 90.0, - "V": 167.68 + "V": 0.0, + "T": 577.0 }, { - "T": 95.0, - "V": 167.69 + "V": 0.0, + "T": 581.0 }, { - "T": 100.0, - "V": 168.05 + "V": 0.0, + "T": 585.0 }, { - "T": 105.0, - "V": 168.05 + "V": 0.0, + "T": 589.0 }, { - "T": 110.0, - "V": 168.24 + "V": 0.0, + "T": 593.0 }, { - "T": 115.0, - "V": 168.26 + "V": 0.0, + "T": 597.0 + } + ], + "PauseTimeMs": [ + { + "V": 0.0, + "T": 1.0 }, { - "T": 120.0, - "V": 168.41 + "V": 0.0, + "T": 5.0 }, { - "T": 125.0, - "V": 168.56 + "V": 0.0, + "T": 9.0 }, { - "T": 130.0, - "V": 168.71 + "V": 0.0, + "T": 13.0 }, { - "T": 135.0, - "V": 168.83 + "V": 0.0, + "T": 17.0 }, { - "T": 140.0, - "V": 168.99 + "V": 0.0, + "T": 21.0 }, { - "T": 145.0, - "V": 169.06 + "V": 0.0, + "T": 25.0 }, { - "T": 150.0, - "V": 169.14 + "V": 0.0, + "T": 29.0 }, { - "T": 155.0, - "V": 169.14 + "V": 0.0, + "T": 33.0 }, { - "T": 160.0, - "V": 169.14 + "V": 0.0, + "T": 37.0 }, { - "T": 165.0, - "V": 169.14 + "V": 0.0, + "T": 41.0 }, { - "T": 170.0, - "V": 169.14 + "V": 0.0, + "T": 45.0 }, { - "T": 175.0, - "V": 169.14 + "V": 0.0, + "T": 49.0 }, { - "T": 180.0, - "V": 169.14 + "V": 0.0, + "T": 53.0 }, { - "T": 185.0, - "V": 169.15 + "V": 0.0, + "T": 57.0 }, { - "T": 190.0, - "V": 169.17 + "V": 0.0, + "T": 61.0 }, { - "T": 195.0, - "V": 169.15 + "V": 0.0, + "T": 65.0 }, { - "T": 200.0, - "V": 169.15 + "V": 0.0, + "T": 69.0 }, { - "T": 205.0, - "V": 169.15 + "V": 0.0, + "T": 73.0 }, { - "T": 210.0, - "V": 169.15 + "V": 0.0, + "T": 77.0 }, { - "T": 215.0, - "V": 169.15 + "V": 0.0, + "T": 81.0 }, { - "T": 220.0, - "V": 169.15 + "V": 0.0, + "T": 85.0 }, { - "T": 225.0, - "V": 169.15 + "V": 0.0, + "T": 89.0 }, { - "T": 230.0, - "V": 169.15 + "V": 0.0, + "T": 93.0 }, { - "T": 235.0, - "V": 169.15 + "V": 0.0, + "T": 97.0 }, { - "T": 240.0, - "V": 169.15 + "V": 0.0, + "T": 101.0 }, { - "T": 245.0, - "V": 169.15 + "V": 0.0, + "T": 105.0 }, { - "T": 250.0, - "V": 169.15 + "V": 0.0, + "T": 109.0 }, { - "T": 255.0, - "V": 169.16 + "V": 0.0, + "T": 113.0 }, { - "T": 260.0, - "V": 169.16 + "V": 0.0, + "T": 117.0 }, { - "T": 265.0, - "V": 172.36 + "V": 0.0, + "T": 121.0 }, { - "T": 270.0, - "V": 172.43 + "V": 0.0, + "T": 125.0 }, { - "T": 275.0, - "V": 172.59 + "V": 0.0, + "T": 129.0 }, { - "T": 280.0, - "V": 171.96 + "V": 0.0, + "T": 133.0 }, { - "T": 285.0, - "V": 171.93 + "V": 0.0, + "T": 137.0 }, { - "T": 290.0, - "V": 171.93 + "V": 0.0, + "T": 141.0 }, { - "T": 295.0, - "V": 171.93 + "V": 0.0, + "T": 145.0 }, { - "T": 300.0, - "V": 172.07 + "V": 0.0, + "T": 149.0 }, { - "T": 305.0, - "V": 172.07 + "V": 0.0, + "T": 153.0 }, { - "T": 310.0, - "V": 172.07 + "V": 0.0, + "T": 157.0 }, { - "T": 315.0, - "V": 172.16 + "V": 0.0, + "T": 161.0 }, { - "T": 320.0, - "V": 172.14 + "V": 0.0, + "T": 165.0 }, { - "T": 325.0, - "V": 172.14 + "V": 0.0, + "T": 169.0 }, { - "T": 330.0, - "V": 172.14 + "V": 0.0, + "T": 173.0 }, { - "T": 335.0, - "V": 172.14 + "V": 0.0, + "T": 177.0 }, { - "T": 340.0, - "V": 172.14 + "V": 0.0, + "T": 181.0 }, { - "T": 345.0, - "V": 172.14 + "V": 0.0, + "T": 185.0 }, { - "T": 350.0, - "V": 172.16 + "V": 0.0, + "T": 189.0 }, { - "T": 355.0, - "V": 172.16 + "V": 0.0, + "T": 193.0 }, { - "T": 360.0, - "V": 172.16 + "V": 0.0, + "T": 197.0 }, { - "T": 365.0, - "V": 172.16 + "V": 0.0, + "T": 201.0 }, { - "T": 370.0, - "V": 172.16 + "V": 0.0, + "T": 205.0 }, { - "T": 375.0, - "V": 172.16 + "V": 0.0, + "T": 209.0 }, { - "T": 380.0, - "V": 172.17 + "V": 0.0, + "T": 213.0 }, { - "T": 385.0, - "V": 172.17 + "V": 0.0, + "T": 217.0 }, { - "T": 390.0, - "V": 172.17 + "V": 0.0, + "T": 221.0 }, { - "T": 395.0, - "V": 172.17 + "V": 0.0, + "T": 225.0 }, { - "T": 400.0, - "V": 172.12 + "V": 0.0, + "T": 229.0 }, { - "T": 405.0, - "V": 172.12 + "V": 0.0, + "T": 233.0 }, { - "T": 410.0, - "V": 172.12 + "V": 0.0, + "T": 237.0 }, { - "T": 415.0, - "V": 172.13 + "V": 0.0, + "T": 241.0 }, { - "T": 420.0, - "V": 172.13 + "V": 0.0, + "T": 245.0 }, { - "T": 425.0, - "V": 172.13 + "V": 0.0, + "T": 249.0 }, { - "T": 430.0, - "V": 172.13 + "V": 0.0, + "T": 253.0 }, { - "T": 435.0, - "V": 175.59 + "V": 0.0, + "T": 257.0 }, { - "T": 440.0, - "V": 175.75 + "V": 0.0, + "T": 261.0 }, { - "T": 445.0, - "V": 175.9 + "V": 0.0, + "T": 265.0 }, { - "T": 450.0, - "V": 176.05 + "V": 0.0, + "T": 269.0 }, { - "T": 455.0, - "V": 176.13 + "V": 0.0, + "T": 273.0 }, { - "T": 460.0, - "V": 176.13 + "V": 0.0, + "T": 277.0 }, { - "T": 465.0, - "V": 176.13 + "V": 0.0, + "T": 281.0 }, { - "T": 470.0, - "V": 176.13 + "V": 0.0, + "T": 285.0 }, { - "T": 475.0, - "V": 176.13 + "V": 0.0, + "T": 289.0 }, { - "T": 480.0, - "V": 176.13 + "V": 0.0, + "T": 293.0 }, { - "T": 485.0, - "V": 176.13 + "V": 0.0, + "T": 297.0 }, { - "T": 490.0, - "V": 176.18 + "V": 0.0, + "T": 301.0 }, { - "T": 495.0, - "V": 176.18 + "V": 0.0, + "T": 305.0 }, { - "T": 500.0, - "V": 176.18 + "V": 0.0, + "T": 309.0 }, { - "T": 505.0, - "V": 176.18 + "V": 0.0, + "T": 313.0 }, { - "T": 510.0, - "V": 176.18 + "V": 0.0, + "T": 317.0 }, { - "T": 515.0, - "V": 176.18 + "V": 0.0, + "T": 321.0 }, { - "T": 520.0, - "V": 176.18 + "V": 0.0, + "T": 325.0 }, { - "T": 525.0, - "V": 176.2 + "V": 0.0, + "T": 329.0 }, { - "T": 530.0, - "V": 176.18 + "V": 0.0, + "T": 333.0 }, { - "T": 535.0, - "V": 176.18 + "V": 0.0, + "T": 337.0 }, { - "T": 540.0, - "V": 176.18 + "V": 0.0, + "T": 341.0 }, { - "T": 545.0, - "V": 176.18 + "V": 0.0, + "T": 345.0 }, { - "T": 550.0, - "V": 176.18 + "V": 0.0, + "T": 349.0 }, { - "T": 555.0, - "V": 176.18 + "V": 0.0, + "T": 353.0 }, { - "T": 560.0, - "V": 175.11 + "V": 0.0, + "T": 357.0 }, { - "T": 565.0, - "V": 175.11 + "V": 0.0, + "T": 361.0 }, { - "T": 570.0, - "V": 175.11 + "V": 0.0, + "T": 365.0 }, { - "T": 575.0, - "V": 175.11 + "V": 0.0, + "T": 369.0 }, { - "T": 580.0, - "V": 175.09 + "V": 0.0, + "T": 373.0 }, { - "T": 585.0, - "V": 175.1 + "V": 0.0, + "T": 377.0 }, { - "T": 590.0, - "V": 175.24 + "V": 0.0, + "T": 381.0 }, { - "T": 595.0, - "V": 175.68 + "V": 0.0, + "T": 385.0 }, { - "T": 600.0, - "V": 175.68 + "V": 0.0, + "T": 389.0 }, { - "T": 605.0, - "V": 175.68 + "V": 0.0, + "T": 393.0 }, { - "T": 610.0, - "V": 175.68 + "V": 0.0, + "T": 397.0 }, { - "T": 615.0, - "V": 175.68 + "V": 0.0, + "T": 401.0 }, { - "T": 620.0, - "V": 175.68 + "V": 0.0, + "T": 405.0 }, { - "T": 625.0, - "V": 175.73 + "V": 0.0, + "T": 409.0 }, { - "T": 630.0, - "V": 178.83 - } - ], - "AllocRateMB": [ - { - "T": 1.0, - "V": 5.5 + "V": 0.0, + "T": 413.0 }, { - "T": 6.0, - "V": 5.99 + "V": 0.0, + "T": 417.0 }, { - "T": 11.0, - "V": 5.7 + "V": 0.0, + "T": 421.0 }, { - "T": 16.0, - "V": 5.88 + "V": 0.0, + "T": 425.0 }, { - "T": 21.0, - "V": 5.74 + "V": 0.0, + "T": 429.0 }, { - "T": 26.0, - "V": 5.74 + "V": 0.0, + "T": 433.0 }, { - "T": 31.0, - "V": 5.88 + "V": 0.0, + "T": 437.0 }, { - "T": 36.0, - "V": 5.66 + "V": 0.0, + "T": 441.0 }, { - "T": 41.0, - "V": 5.7 + "V": 0.0, + "T": 445.0 }, { - "T": 46.0, - "V": 5.77 + "V": 0.0, + "T": 449.0 }, { - "T": 51.0, - "V": 5.57 + "V": 0.0, + "T": 453.0 }, { - "T": 56.0, - "V": 5.79 + "V": 0.0, + "T": 457.0 }, { - "T": 61.0, - "V": 5.81 + "V": 0.0, + "T": 461.0 }, { - "T": 66.0, - "V": 5.73 + "V": 0.0, + "T": 465.0 }, { - "T": 71.0, - "V": 5.63 + "V": 0.0, + "T": 469.0 }, { - "T": 76.0, - "V": 5.63 + "V": 0.0, + "T": 473.0 }, { - "T": 81.0, - "V": 5.82 + "V": 0.0, + "T": 477.0 }, { - "T": 86.0, - "V": 5.73 + "V": 0.0, + "T": 481.0 }, { - "T": 91.0, - "V": 5.71 + "V": 0.0, + "T": 485.0 }, { - "T": 96.0, - "V": 5.82 + "V": 0.0, + "T": 489.0 }, { - "T": 101.0, - "V": 5.63 + "V": 0.0, + "T": 493.0 }, { - "T": 106.0, - "V": 5.85 + "V": 0.0, + "T": 497.0 }, { - "T": 111.0, - "V": 5.56 + "V": 0.0, + "T": 501.0 }, { - "T": 116.0, - "V": 5.74 + "V": 0.0, + "T": 505.0 }, { - "T": 121.0, - "V": 5.84 + "V": 0.0, + "T": 509.0 }, { - "T": 126.0, - "V": 5.72 + "V": 0.0, + "T": 513.0 }, { - "T": 131.0, - "V": 5.79 + "V": 0.0, + "T": 517.0 }, { - "T": 136.0, - "V": 5.79 + "V": 0.0, + "T": 521.0 }, { - "T": 141.0, - "V": 5.71 + "V": 0.0, + "T": 525.0 }, { - "T": 146.0, - "V": 5.57 + "V": 0.0, + "T": 529.0 }, { - "T": 151.0, - "V": 5.75 + "V": 0.0, + "T": 533.0 }, { - "T": 156.0, - "V": 5.56 + "V": 0.0, + "T": 537.0 }, { - "T": 161.0, - "V": 5.74 + "V": 0.0, + "T": 541.0 }, { - "T": 166.0, - "V": 5.86 + "V": 0.0, + "T": 545.0 }, { - "T": 171.0, - "V": 5.8 + "V": 0.0, + "T": 549.0 }, { - "T": 176.0, - "V": 5.71 + "V": 0.0, + "T": 553.0 }, { - "T": 181.0, - "V": 5.63 + "V": 0.0, + "T": 557.0 }, { - "T": 186.0, - "V": 5.73 + "V": 0.0, + "T": 561.0 }, { - "T": 191.0, - "V": 5.63 + "V": 0.0, + "T": 565.0 }, { - "T": 196.0, - "V": 5.7 + "V": 0.0, + "T": 569.0 }, { - "T": 201.0, - "V": 5.82 + "V": 0.0, + "T": 573.0 }, { - "T": 206.0, - "V": 5.7 + "V": 0.0, + "T": 577.0 }, { - "T": 211.0, - "V": 5.77 + "V": 0.0, + "T": 581.0 }, { - "T": 216.0, - "V": 5.7 + "V": 0.0, + "T": 585.0 }, { - "T": 221.0, - "V": 5.64 + "V": 0.0, + "T": 589.0 }, { - "T": 226.0, - "V": 5.79 + "V": 0.0, + "T": 593.0 }, { - "T": 231.0, - "V": 5.68 + "V": 0.0, + "T": 597.0 + } + ], + "WorkingSetMB": [ + { + "V": 29.91, + "T": 0.0 }, { - "T": 236.0, - "V": 5.8 + "V": 32.86, + "T": 4.0 }, { - "T": 241.0, - "V": 5.63 + "V": 35.36, + "T": 8.0 }, { - "T": 246.0, - "V": 5.69 + "V": 35.58, + "T": 12.0 }, { - "T": 251.0, - "V": 5.75 + "V": 35.71, + "T": 16.0 }, { - "T": 256.0, - "V": 5.81 + "V": 35.82, + "T": 20.0 }, { - "T": 261.0, - "V": 5.73 + "V": 35.94, + "T": 24.0 }, { - "T": 266.0, - "V": 5.83 + "V": 35.94, + "T": 28.0 }, { - "T": 271.0, - "V": 5.76 + "V": 36.3, + "T": 32.0 }, { - "T": 276.0, - "V": 5.71 + "V": 36.35, + "T": 36.0 }, { - "T": 281.0, - "V": 5.74 + "V": 36.46, + "T": 40.0 }, { - "T": 286.0, - "V": 5.63 + "V": 36.57, + "T": 44.0 }, { - "T": 291.0, - "V": 5.7 + "V": 36.67, + "T": 48.0 }, { - "T": 296.0, - "V": 5.68 + "V": 36.76, + "T": 52.0 }, { - "T": 301.0, - "V": 5.68 + "V": 36.86, + "T": 56.0 }, { - "T": 306.0, - "V": 5.82 + "V": 36.98, + "T": 60.0 }, { - "T": 311.0, - "V": 5.94 + "V": 37.14, + "T": 64.0 }, { - "T": 316.0, - "V": 5.71 + "V": 37.18, + "T": 68.0 }, { - "T": 321.0, - "V": 5.71 + "V": 37.29, + "T": 72.0 }, { - "T": 326.0, - "V": 5.88 + "V": 37.38, + "T": 76.0 }, { - "T": 331.0, - "V": 5.82 + "V": 37.49, + "T": 80.0 }, { - "T": 336.0, - "V": 5.77 + "V": 37.58, + "T": 84.0 }, { - "T": 341.0, - "V": 5.76 + "V": 37.7, + "T": 88.0 }, { - "T": 346.0, - "V": 5.79 + "V": 37.79, + "T": 92.0 }, { - "T": 351.0, - "V": 5.7 + "V": 37.9, + "T": 96.0 }, { - "T": 356.0, - "V": 5.71 + "V": 37.99, + "T": 100.0 }, { - "T": 361.0, - "V": 5.82 + "V": 38.09, + "T": 104.0 }, { - "T": 366.0, - "V": 5.61 + "V": 38.2, + "T": 108.0 }, { - "T": 371.0, - "V": 5.76 + "V": 38.28, + "T": 112.0 }, { - "T": 376.0, - "V": 5.81 + "V": 38.39, + "T": 116.0 }, { - "T": 381.0, - "V": 5.68 + "V": 38.5, + "T": 120.0 }, { - "T": 386.0, - "V": 5.81 + "V": 38.6, + "T": 124.0 }, { - "T": 391.0, - "V": 5.76 + "V": 38.7, + "T": 128.0 }, { - "T": 396.0, - "V": 5.91 + "V": 38.8, + "T": 132.0 }, { - "T": 401.0, - "V": 5.8 + "V": 38.9, + "T": 136.0 }, { - "T": 406.0, - "V": 5.78 + "V": 39.0, + "T": 140.0 }, { - "T": 411.0, - "V": 5.73 + "V": 39.1, + "T": 144.0 }, { - "T": 416.0, - "V": 5.71 + "V": 39.2, + "T": 148.0 }, { - "T": 421.0, - "V": 5.79 + "V": 39.3, + "T": 152.0 }, { - "T": 426.0, - "V": 5.75 + "V": 39.4, + "T": 156.0 }, { - "T": 431.0, - "V": 5.84 + "V": 39.5, + "T": 160.0 }, { - "T": 436.0, - "V": 5.79 + "V": 39.61, + "T": 164.0 }, { - "T": 441.0, - "V": 5.8 + "V": 39.71, + "T": 168.0 }, { - "T": 446.0, - "V": 5.66 + "V": 39.81, + "T": 172.0 }, { - "T": 451.0, - "V": 5.73 + "V": 39.89, + "T": 176.0 }, { - "T": 456.0, - "V": 5.74 + "V": 40.01, + "T": 180.0 }, { - "T": 461.0, - "V": 5.87 + "V": 40.11, + "T": 184.0 }, { - "T": 466.0, - "V": 5.75 + "V": 40.21, + "T": 188.0 }, { - "T": 471.0, - "V": 5.69 + "V": 40.31, + "T": 192.0 }, { - "T": 476.0, - "V": 5.75 + "V": 40.41, + "T": 196.0 }, { - "T": 481.0, - "V": 5.71 + "V": 40.5, + "T": 200.0 }, { - "T": 486.0, - "V": 5.8 + "V": 40.61, + "T": 204.0 }, { - "T": 491.0, - "V": 5.7 + "V": 40.7, + "T": 208.0 }, { - "T": 496.0, - "V": 5.73 + "V": 40.81, + "T": 212.0 }, { - "T": 501.0, - "V": 5.75 + "V": 40.9, + "T": 216.0 }, { - "T": 506.0, - "V": 5.69 + "V": 41.01, + "T": 220.0 }, { - "T": 511.0, - "V": 5.77 + "V": 41.11, + "T": 224.0 }, { - "T": 516.0, - "V": 5.77 + "V": 41.21, + "T": 228.0 }, { - "T": 521.0, - "V": 5.55 + "V": 41.32, + "T": 232.0 }, { - "T": 526.0, - "V": 5.56 + "V": 41.41, + "T": 236.0 }, { - "T": 531.0, - "V": 5.55 + "V": 41.5, + "T": 240.0 }, { - "T": 536.0, - "V": 5.78 + "V": 41.61, + "T": 244.0 }, { - "T": 541.0, - "V": 5.83 + "V": 41.71, + "T": 248.0 }, { - "T": 546.0, - "V": 5.66 + "V": 41.8, + "T": 252.0 }, { - "T": 551.0, - "V": 5.82 + "V": 41.91, + "T": 256.0 }, { - "T": 556.0, - "V": 5.72 + "V": 42.01, + "T": 260.0 }, { - "T": 561.0, - "V": 5.72 + "V": 42.11, + "T": 264.0 }, { - "T": 566.0, - "V": 5.86 + "V": 42.21, + "T": 268.0 }, { - "T": 571.0, - "V": 5.84 + "V": 42.3, + "T": 272.0 }, { - "T": 576.0, - "V": 5.67 + "V": 42.43, + "T": 276.0 }, { - "T": 581.0, - "V": 5.74 + "V": 42.53, + "T": 280.0 }, { - "T": 586.0, - "V": 5.69 + "V": 42.62, + "T": 284.0 }, { - "T": 591.0, - "V": 5.77 + "V": 42.71, + "T": 288.0 }, { - "T": 596.0, - "V": 5.66 + "V": 42.83, + "T": 292.0 }, { - "T": 601.0, - "V": 5.76 + "V": 42.91, + "T": 296.0 }, { - "T": 606.0, - "V": 5.78 + "V": 43.19, + "T": 300.0 }, { - "T": 611.0, - "V": 5.74 + "V": 43.27, + "T": 304.0 }, { - "T": 616.0, - "V": 5.8 + "V": 43.38, + "T": 308.0 }, { - "T": 621.0, - "V": 5.7 + "V": 43.48, + "T": 312.0 }, { - "T": 626.0, - "V": 5.79 + "V": 43.58, + "T": 316.0 }, { - "T": 631.0, - "V": 2.84 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ - { - "T": 1.0, - "V": 0.0 + "V": 43.69, + "T": 320.0 }, { - "T": 6.0, - "V": 0.0 + "V": 43.77, + "T": 324.0 }, { - "T": 11.0, - "V": 0.0 + "V": 43.88, + "T": 328.0 }, { - "T": 16.0, - "V": 0.0 + "V": 43.98, + "T": 332.0 }, { - "T": 21.0, - "V": 1.0 + "V": 44.08, + "T": 336.0 }, { - "T": 26.0, - "V": 1.0 + "V": 44.19, + "T": 340.0 }, { - "T": 31.0, - "V": 0.0 + "V": 44.29, + "T": 344.0 }, { - "T": 36.0, - "V": 0.0 + "V": 44.39, + "T": 348.0 }, { - "T": 41.0, - "V": 0.0 + "V": 44.48, + "T": 352.0 }, { - "T": 46.0, - "V": 0.0 + "V": 44.57, + "T": 356.0 }, { - "T": 51.0, - "V": 1.0 + "V": 44.67, + "T": 360.0 }, { - "T": 56.0, - "V": 0.0 + "V": 44.79, + "T": 364.0 }, { - "T": 61.0, - "V": 0.0 + "V": 44.89, + "T": 368.0 }, { - "T": 66.0, - "V": 0.0 + "V": 44.98, + "T": 372.0 }, { - "T": 71.0, - "V": 0.0 + "V": 45.08, + "T": 376.0 }, { - "T": 76.0, - "V": 0.0 + "V": 45.19, + "T": 380.0 }, { - "T": 81.0, - "V": 1.0 + "V": 45.27, + "T": 384.0 }, { - "T": 86.0, - "V": 1.0 + "V": 45.39, + "T": 388.0 }, { - "T": 91.0, - "V": 1.0 + "V": 45.49, + "T": 392.0 }, { - "T": 96.0, - "V": 0.0 + "V": 45.59, + "T": 396.0 }, { - "T": 101.0, - "V": 0.0 + "V": 45.64, + "T": 400.0 }, { - "T": 106.0, - "V": 0.0 + "V": 45.75, + "T": 404.0 }, { - "T": 111.0, - "V": 0.0 + "V": 45.85, + "T": 408.0 }, { - "T": 116.0, - "V": 0.0 + "V": 45.94, + "T": 412.0 }, { - "T": 121.0, - "V": 0.0 + "V": 46.06, + "T": 416.0 }, { - "T": 126.0, - "V": 0.0 + "V": 46.14, + "T": 420.0 }, { - "T": 131.0, - "V": 0.0 + "V": 46.25, + "T": 424.0 }, { - "T": 136.0, - "V": 0.0 + "V": 46.34, + "T": 428.0 }, { - "T": 141.0, - "V": 0.0 + "V": 46.44, + "T": 432.0 }, { - "T": 146.0, - "V": 0.0 + "V": 46.56, + "T": 436.0 }, { - "T": 151.0, - "V": 0.0 + "V": 46.65, + "T": 440.0 }, { - "T": 156.0, - "V": 0.0 + "V": 46.77, + "T": 444.0 }, { - "T": 161.0, - "V": 0.0 + "V": 46.86, + "T": 448.0 }, { - "T": 166.0, - "V": 0.0 + "V": 46.95, + "T": 452.0 }, { - "T": 171.0, - "V": 0.0 + "V": 47.06, + "T": 456.0 }, { - "T": 176.0, - "V": 0.0 + "V": 47.15, + "T": 460.0 }, { - "T": 181.0, - "V": 0.0 + "V": 47.27, + "T": 464.0 }, { - "T": 186.0, - "V": 0.0 + "V": 47.35, + "T": 468.0 }, { - "T": 191.0, - "V": 0.0 + "V": 47.46, + "T": 472.0 }, { - "T": 196.0, - "V": 0.0 + "V": 47.56, + "T": 476.0 }, { - "T": 201.0, - "V": 0.0 + "V": 47.66, + "T": 480.0 }, { - "T": 206.0, - "V": 0.0 + "V": 47.77, + "T": 484.0 }, { - "T": 211.0, - "V": 0.0 + "V": 47.87, + "T": 488.0 }, { - "T": 216.0, - "V": 0.0 + "V": 47.96, + "T": 492.0 }, { - "T": 221.0, - "V": 0.0 + "V": 48.06, + "T": 496.0 }, { - "T": 226.0, - "V": 0.0 + "V": 48.15, + "T": 500.0 }, { - "T": 231.0, - "V": 0.0 + "V": 48.27, + "T": 504.0 }, { - "T": 236.0, - "V": 0.0 + "V": 48.38, + "T": 508.0 }, { - "T": 241.0, - "V": 0.0 + "V": 48.47, + "T": 512.0 }, { - "T": 246.0, - "V": 0.0 + "V": 48.57, + "T": 516.0 }, { - "T": 251.0, - "V": 0.0 + "V": 48.67, + "T": 520.0 }, { - "T": 256.0, - "V": 0.0 + "V": 48.77, + "T": 524.0 }, { - "T": 261.0, - "V": 0.0 + "V": 48.88, + "T": 528.0 }, { - "T": 266.0, - "V": 0.0 + "V": 48.96, + "T": 532.0 }, { - "T": 271.0, - "V": 0.0 + "V": 49.07, + "T": 536.0 }, { - "T": 276.0, - "V": 0.0 + "V": 49.16, + "T": 540.0 }, { - "T": 281.0, - "V": 0.0 + "V": 49.27, + "T": 544.0 }, { - "T": 286.0, - "V": 0.0 + "V": 49.38, + "T": 548.0 }, { - "T": 291.0, - "V": 0.0 + "V": 49.47, + "T": 552.0 }, { - "T": 296.0, - "V": 0.0 + "V": 49.58, + "T": 556.0 }, { - "T": 301.0, - "V": 0.0 + "V": 49.67, + "T": 560.0 }, { - "T": 306.0, - "V": 0.0 + "V": 49.77, + "T": 564.0 }, { - "T": 311.0, - "V": 0.0 + "V": 49.86, + "T": 568.0 }, { - "T": 316.0, - "V": 0.0 + "V": 49.97, + "T": 572.0 }, { - "T": 321.0, - "V": 0.0 + "V": 50.08, + "T": 576.0 }, { - "T": 326.0, - "V": 0.0 + "V": 50.18, + "T": 580.0 }, { - "T": 331.0, - "V": 0.0 + "V": 50.27, + "T": 584.0 }, { - "T": 336.0, - "V": 0.0 + "V": 50.38, + "T": 588.0 }, { - "T": 341.0, - "V": 0.0 + "V": 51.13, + "T": 592.0 }, { - "T": 346.0, - "V": 0.0 + "V": 51.13, + "T": 596.0 + } + ], + "AllocRateMB": [ + { + "V": 0.04, + "T": 1.0 }, { - "T": 351.0, - "V": 0.0 + "V": 0.02, + "T": 5.0 }, { - "T": 356.0, - "V": 0.0 + "V": 0.02, + "T": 9.0 }, { - "T": 361.0, - "V": 0.0 + "V": 0.02, + "T": 13.0 }, { - "T": 366.0, - "V": 0.0 + "V": 0.02, + "T": 17.0 }, { - "T": 371.0, - "V": 0.0 + "V": 0.02, + "T": 21.0 }, { - "T": 376.0, - "V": 0.0 + "V": 0.02, + "T": 25.0 }, { - "T": 381.0, - "V": 0.0 + "V": 0.03, + "T": 29.0 }, { - "T": 386.0, - "V": 0.0 + "V": 0.02, + "T": 33.0 }, { - "T": 391.0, - "V": 0.0 + "V": 0.03, + "T": 37.0 }, { - "T": 396.0, - "V": 0.0 + "V": 0.02, + "T": 41.0 }, { - "T": 401.0, - "V": 0.0 + "V": 0.02, + "T": 45.0 }, { - "T": 406.0, - "V": 0.0 + "V": 0.02, + "T": 49.0 }, { - "T": 411.0, - "V": 0.0 + "V": 0.02, + "T": 53.0 }, { - "T": 416.0, - "V": 0.0 + "V": 0.02, + "T": 57.0 }, { - "T": 421.0, - "V": 0.0 + "V": 0.03, + "T": 61.0 }, { - "T": 426.0, - "V": 0.0 + "V": 0.02, + "T": 65.0 }, { - "T": 431.0, - "V": 0.0 + "V": 0.02, + "T": 69.0 }, { - "T": 436.0, - "V": 0.0 + "V": 0.02, + "T": 73.0 }, { - "T": 441.0, - "V": 0.0 + "V": 0.02, + "T": 77.0 }, { - "T": 446.0, - "V": 0.0 + "V": 0.02, + "T": 81.0 }, { - "T": 451.0, - "V": 0.0 + "V": 0.03, + "T": 85.0 }, { - "T": 456.0, - "V": 0.0 + "V": 0.02, + "T": 89.0 }, { - "T": 461.0, - "V": 0.0 + "V": 0.02, + "T": 93.0 }, { - "T": 466.0, - "V": 0.0 + "V": 0.02, + "T": 97.0 }, { - "T": 471.0, - "V": 0.0 + "V": 0.02, + "T": 101.0 }, { - "T": 476.0, - "V": 0.0 + "V": 0.02, + "T": 105.0 }, { - "T": 481.0, - "V": 0.0 + "V": 0.02, + "T": 109.0 }, { - "T": 486.0, - "V": 0.0 + "V": 0.04, + "T": 113.0 }, { - "T": 491.0, - "V": 0.0 + "V": 0.03, + "T": 117.0 }, { - "T": 496.0, - "V": 0.0 + "V": 0.02, + "T": 121.0 }, { - "T": 501.0, - "V": 0.0 + "V": 0.02, + "T": 125.0 }, { - "T": 506.0, - "V": 0.0 + "V": 0.02, + "T": 129.0 }, { - "T": 511.0, - "V": 0.0 + "V": 0.03, + "T": 133.0 }, { - "T": 516.0, - "V": 0.0 + "V": 0.02, + "T": 137.0 }, { - "T": 521.0, - "V": 0.0 + "V": 0.02, + "T": 141.0 }, { - "T": 526.0, - "V": 0.0 + "V": 0.03, + "T": 145.0 }, { - "T": 531.0, - "V": 0.0 + "V": 0.03, + "T": 149.0 }, { - "T": 536.0, - "V": 0.0 + "V": 0.02, + "T": 153.0 }, { - "T": 541.0, - "V": 0.0 + "V": 0.03, + "T": 157.0 }, { - "T": 546.0, - "V": 0.0 + "V": 0.02, + "T": 161.0 }, { - "T": 551.0, - "V": 0.0 + "V": 0.02, + "T": 165.0 }, { - "T": 556.0, - "V": 1.0 + "V": 0.02, + "T": 169.0 }, { - "T": 561.0, - "V": 0.0 + "V": 0.02, + "T": 173.0 }, { - "T": 566.0, - "V": 0.0 + "V": 0.03, + "T": 177.0 }, { - "T": 571.0, - "V": 0.0 + "V": 0.02, + "T": 181.0 }, { - "T": 576.0, - "V": 0.0 + "V": 0.02, + "T": 185.0 }, { - "T": 581.0, - "V": 0.0 + "V": 0.02, + "T": 189.0 }, { - "T": 586.0, - "V": 0.0 + "V": 0.02, + "T": 193.0 }, { - "T": 591.0, - "V": 0.0 + "V": 0.02, + "T": 197.0 }, { - "T": 596.0, - "V": 0.0 + "V": 0.03, + "T": 201.0 }, { - "T": 601.0, - "V": 0.0 + "V": 0.02, + "T": 205.0 }, { - "T": 606.0, - "V": 0.0 + "V": 0.02, + "T": 209.0 }, { - "T": 611.0, - "V": 0.0 + "V": 0.02, + "T": 213.0 }, { - "T": 616.0, - "V": 0.0 + "V": 0.02, + "T": 217.0 }, { - "T": 621.0, - "V": 0.0 + "V": 0.02, + "T": 221.0 }, { - "T": 626.0, - "V": 0.0 + "V": 0.03, + "T": 225.0 }, { - "T": 631.0, - "V": 0.0 - } - ] - } - }, - { - "ScenarioId": "gcperfsim-churn", - "ScenarioName": "GCPerfSim: high-throughput transient object churn", - "GcModeId": "server", - "GcModeName": "Server GC", - "DurationSeconds": 632.3336519, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 5.505954914540435, - "TotalAllocatedBytes": 3650722808.0, - "Gen0Collections": 521, - "Gen1Collections": 51, - "Gen2Collections": 6, - "WorkingSetBytes": 257069056.0, - "PeakWorkingSetBytes": 257069056.0, - "HeapSizeBytes": 167058536.0, - "TotalCommittedBytes": 220467200.0, - "GcName": "Server GC", - "TagbUsed": 3.4 - }, - "PauseTimePctStats": { - "Avg": 0.09001494435612079, - "P50": 0.09969999999999701, - "P90": 0.16170000000000073, - "P99": 0.23779999999999912, - "Max": 3.0091, - "Min": 0.0, - "Count": 629 - }, - "WorkingSetStats": { - "Avg": 224421660.44444445, - "P50": 220758016.0, - "P90": 243621888.0, - "P99": 256253952.0, - "Max": 257069056.0, - "Min": 166785024.0, - "Count": 630 - }, - "AllocRateMBStats": { - "Avg": 4.184179515262477, - "P50": 5.712860107421875, - "P90": 5.846038818359375, - "P99": 5.9518585205078125, - "Max": 5.994682312011719, - "Min": 0.0, - "Count": 629 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ - { - "T": 0.0, - "V": 0.0 + "V": 0.02, + "T": 229.0 }, { - "T": 5.0, - "V": 0.0 + "V": 0.02, + "T": 233.0 }, { - "T": 10.0, - "V": 0.0 + "V": 0.03, + "T": 237.0 }, { - "T": 15.0, - "V": 0.0 + "V": 0.03, + "T": 241.0 }, { - "T": 20.0, - "V": 0.0 + "V": 0.02, + "T": 245.0 }, { - "T": 25.0, - "V": 0.0 + "V": 0.03, + "T": 249.0 }, { - "T": 30.0, - "V": 0.0 + "V": 0.03, + "T": 253.0 }, { - "T": 35.0, - "V": 0.0 + "V": 0.02, + "T": 257.0 }, { - "T": 40.0, - "V": 0.0 + "V": 0.03, + "T": 261.0 }, { - "T": 45.0, - "V": 0.0 + "V": 0.03, + "T": 265.0 }, { - "T": 50.0, - "V": 0.0 + "V": 0.03, + "T": 269.0 }, { - "T": 55.0, - "V": 0.0 + "V": 0.03, + "T": 273.0 }, { - "T": 60.0, - "V": 0.0 + "V": 0.02, + "T": 277.0 }, { - "T": 65.0, - "V": 0.0 + "V": 0.02, + "T": 281.0 }, { - "T": 70.0, - "V": 0.0 + "V": 0.02, + "T": 285.0 }, { - "T": 75.0, - "V": 0.0 + "V": 0.02, + "T": 289.0 }, { - "T": 80.0, - "V": 0.0 + "V": 0.02, + "T": 293.0 }, { - "T": 85.0, - "V": 0.0 + "V": 0.03, + "T": 297.0 }, { - "T": 90.0, - "V": 0.0 + "V": 0.02, + "T": 301.0 }, { - "T": 95.0, - "V": 0.0 + "V": 0.02, + "T": 305.0 }, { - "T": 100.0, - "V": 0.0825 + "V": 0.02, + "T": 309.0 }, { - "T": 105.0, - "V": 0.0711 + "V": 0.02, + "T": 313.0 }, { - "T": 110.0, - "V": 0.0633 + "V": 0.02, + "T": 317.0 }, { - "T": 115.0, - "V": 0.0 + "V": 0.02, + "T": 321.0 }, { - "T": 120.0, - "V": 0.0 + "V": 0.02, + "T": 325.0 }, { - "T": 125.0, - "V": 0.0814 + "V": 0.03, + "T": 329.0 }, { - "T": 130.0, - "V": 0.0 + "V": 0.02, + "T": 333.0 }, { - "T": 135.0, - "V": 0.0645 + "V": 0.03, + "T": 337.0 }, { - "T": 140.0, - "V": 0.0 + "V": 0.02, + "T": 341.0 }, { - "T": 145.0, - "V": 0.0 + "V": 0.02, + "T": 345.0 }, { - "T": 150.0, - "V": 0.061 + "V": 0.02, + "T": 349.0 }, { - "T": 155.0, - "V": 0.0749 + "V": 0.03, + "T": 353.0 }, { - "T": 160.0, - "V": 0.0 + "V": 0.02, + "T": 357.0 }, { - "T": 165.0, - "V": 0.0705 + "V": 0.04, + "T": 361.0 }, { - "T": 170.0, - "V": 0.0982 + "V": 0.02, + "T": 365.0 }, { - "T": 175.0, - "V": 0.0 + "V": 0.02, + "T": 369.0 }, { - "T": 180.0, - "V": 0.0 + "V": 0.03, + "T": 373.0 }, { - "T": 185.0, - "V": 0.0 + "V": 0.03, + "T": 377.0 }, { - "T": 190.0, - "V": 0.0 + "V": 0.03, + "T": 381.0 }, { - "T": 195.0, - "V": 0.0 + "V": 0.04, + "T": 385.0 }, { - "T": 200.0, - "V": 0.0887 + "V": 0.03, + "T": 389.0 }, { - "T": 205.0, - "V": 0.0829 + "V": 0.02, + "T": 393.0 }, { - "T": 210.0, - "V": 0.0728 + "V": 0.02, + "T": 397.0 }, { - "T": 215.0, - "V": 0.0848 + "V": 0.02, + "T": 401.0 }, { - "T": 220.0, - "V": 0.0676 + "V": 0.02, + "T": 405.0 }, { - "T": 225.0, - "V": 0.0804 + "V": 0.02, + "T": 409.0 }, { - "T": 230.0, - "V": 0.0719 + "V": 0.02, + "T": 413.0 }, { - "T": 235.0, - "V": 0.2378 + "V": 0.02, + "T": 417.0 }, { - "T": 240.0, - "V": 0.0969 + "V": 0.02, + "T": 421.0 }, { - "T": 245.0, - "V": 0.1765 + "V": 0.02, + "T": 425.0 }, { - "T": 250.0, - "V": 0.1013 + "V": 0.03, + "T": 429.0 }, { - "T": 255.0, - "V": 0.1358 + "V": 0.02, + "T": 433.0 }, { - "T": 260.0, - "V": 0.1683 + "V": 0.02, + "T": 437.0 }, { - "T": 265.0, - "V": 0.1061 + "V": 0.02, + "T": 441.0 }, { - "T": 270.0, - "V": 0.1218 + "V": 0.02, + "T": 445.0 }, { - "T": 275.0, - "V": 0.1884 + "V": 0.03, + "T": 449.0 }, { - "T": 280.0, - "V": 0.118 + "V": 0.02, + "T": 453.0 }, { - "T": 285.0, - "V": 0.0845 + "V": 0.03, + "T": 457.0 }, { - "T": 290.0, - "V": 0.1902 + "V": 0.04, + "T": 461.0 }, { - "T": 295.0, - "V": 0.1832 + "V": 0.02, + "T": 465.0 }, { - "T": 300.0, - "V": 0.1706 + "V": 0.03, + "T": 469.0 }, { - "T": 305.0, - "V": 0.1019 + "V": 0.03, + "T": 473.0 }, { - "T": 310.0, - "V": 0.1084 + "V": 0.03, + "T": 477.0 }, { - "T": 315.0, - "V": 0.186 + "V": 0.02, + "T": 481.0 }, { - "T": 320.0, - "V": 0.1019 + "V": 0.03, + "T": 485.0 }, { - "T": 325.0, - "V": 0.1466 + "V": 0.02, + "T": 489.0 }, { - "T": 330.0, - "V": 0.2198 + "V": 0.03, + "T": 493.0 }, { - "T": 335.0, - "V": 0.1239 + "V": 0.03, + "T": 497.0 }, { - "T": 340.0, - "V": 0.1497 + "V": 0.04, + "T": 501.0 }, { - "T": 345.0, - "V": 0.2009 + "V": 0.03, + "T": 505.0 }, { - "T": 350.0, - "V": 0.0 + "V": 0.02, + "T": 509.0 }, { - "T": 355.0, - "V": 0.0918 + "V": 0.02, + "T": 513.0 }, { - "T": 360.0, - "V": 0.1038 + "V": 0.02, + "T": 517.0 }, { - "T": 365.0, - "V": 0.0 + "V": 0.02, + "T": 521.0 }, { - "T": 370.0, - "V": 0.0964 + "V": 0.02, + "T": 525.0 }, { - "T": 375.0, - "V": 0.1126 + "V": 0.02, + "T": 529.0 }, { - "T": 380.0, - "V": 0.1022 + "V": 0.02, + "T": 533.0 }, { - "T": 385.0, - "V": 0.1036 + "V": 0.02, + "T": 537.0 }, { - "T": 390.0, - "V": 0.1348 + "V": 0.02, + "T": 541.0 }, { - "T": 395.0, - "V": 0.1022 + "V": 0.02, + "T": 545.0 }, { - "T": 400.0, - "V": 0.115 + "V": 0.02, + "T": 549.0 }, { - "T": 405.0, - "V": 0.0 + "V": 0.02, + "T": 553.0 }, { - "T": 410.0, - "V": 0.1081 + "V": 0.02, + "T": 557.0 }, { - "T": 415.0, - "V": 0.1238 + "V": 0.02, + "T": 561.0 }, { - "T": 420.0, - "V": 0.1038 + "V": 0.03, + "T": 565.0 }, { - "T": 425.0, - "V": 0.1145 + "V": 0.03, + "T": 569.0 }, { - "T": 430.0, - "V": 0.1599 + "V": 0.03, + "T": 573.0 }, { - "T": 435.0, - "V": 0.104 + "V": 0.02, + "T": 577.0 }, { - "T": 440.0, - "V": 0.1314 + "V": 0.02, + "T": 581.0 }, { - "T": 445.0, - "V": 0.1014 + "V": 0.03, + "T": 585.0 }, { - "T": 450.0, - "V": 0.1067 + "V": 0.03, + "T": 589.0 }, { - "T": 455.0, - "V": 0.1167 + "V": 0.02, + "T": 593.0 }, { - "T": 460.0, - "V": 0.0932 + "V": 0.02, + "T": 597.0 + } + ], + "OpsPerSec": [ + { + "V": 1379.0, + "T": 0.0 }, { - "T": 465.0, - "V": 0.0 + "V": 1360.0, + "T": 4.0 }, { - "T": 470.0, - "V": 0.1498 + "V": 1155.0, + "T": 8.0 }, { - "T": 475.0, - "V": 0.2054 + "V": 1143.0, + "T": 12.0 }, { - "T": 480.0, - "V": 0.13 + "V": 1146.0, + "T": 16.0 }, { - "T": 485.0, - "V": 0.0 + "V": 1159.0, + "T": 20.0 }, { - "T": 490.0, - "V": 0.1083 + "V": 1058.0, + "T": 24.0 }, { - "T": 495.0, - "V": 0.1654 + "V": 1160.0, + "T": 28.0 }, { - "T": 500.0, - "V": 0.1133 + "V": 1112.0, + "T": 32.0 }, { - "T": 505.0, - "V": 0.1182 + "V": 1157.0, + "T": 36.0 }, { - "T": 510.0, - "V": 0.1481 + "V": 1132.0, + "T": 40.0 }, { - "T": 515.0, - "V": 0.1095 + "V": 1164.0, + "T": 44.0 }, { - "T": 520.0, - "V": 0.1279 + "V": 1099.0, + "T": 48.0 }, { - "T": 525.0, - "V": 0.1059 + "V": 1164.0, + "T": 52.0 }, { - "T": 530.0, - "V": 0.1259 + "V": 1168.0, + "T": 56.0 }, { - "T": 535.0, - "V": 0.1635 + "V": 1164.0, + "T": 60.0 }, { - "T": 540.0, - "V": 0.1128 + "V": 1153.0, + "T": 64.0 }, { - "T": 545.0, - "V": 0.1224 + "V": 1170.0, + "T": 68.0 }, { - "T": 550.0, - "V": 0.1079 + "V": 1173.0, + "T": 72.0 }, { - "T": 555.0, - "V": 0.1179 + "V": 1169.0, + "T": 76.0 }, { - "T": 560.0, - "V": 0.0 + "V": 1170.0, + "T": 80.0 }, { - "T": 565.0, - "V": 0.1101 + "V": 1176.0, + "T": 84.0 }, { - "T": 570.0, - "V": 0.1257 + "V": 1167.0, + "T": 88.0 }, { - "T": 575.0, - "V": 0.0 + "V": 1172.0, + "T": 92.0 }, { - "T": 580.0, - "V": 0.1088 + "V": 1174.0, + "T": 96.0 }, { - "T": 585.0, - "V": 0.0 + "V": 1193.0, + "T": 100.0 }, { - "T": 590.0, - "V": 0.1055 + "V": 1183.0, + "T": 104.0 }, { - "T": 595.0, - "V": 0.1197 + "V": 1178.0, + "T": 108.0 }, { - "T": 600.0, - "V": 0.0957 + "V": 1136.0, + "T": 112.0 }, { - "T": 605.0, - "V": 0.1992 + "V": 1171.0, + "T": 116.0 }, { - "T": 610.0, - "V": 0.1408 + "V": 1165.0, + "T": 120.0 }, { - "T": 615.0, - "V": 0.0937 + "V": 1171.0, + "T": 124.0 }, { - "T": 620.0, - "V": 0.2025 + "V": 1175.0, + "T": 128.0 }, { - "T": 625.0, - "V": 0.1305 - } - ], - "WorkingSetMB": [ + "V": 1140.0, + "T": 132.0 + }, { - "T": 0.0, - "V": 159.06 + "V": 1161.0, + "T": 136.0 }, { - "T": 4.0, - "V": 178.03 + "V": 1197.0, + "T": 140.0 }, { - "T": 9.0, - "V": 207.24 + "V": 1174.0, + "T": 144.0 }, { - "T": 14.0, - "V": 220.48 + "V": 1174.0, + "T": 148.0 }, { - "T": 19.0, - "V": 220.53 + "V": 1169.0, + "T": 152.0 }, { - "T": 24.0, - "V": 229.77 + "V": 1172.0, + "T": 156.0 }, { - "T": 29.0, - "V": 232.34 + "V": 1168.0, + "T": 160.0 }, { - "T": 34.0, - "V": 236.64 + "V": 1147.0, + "T": 164.0 }, { - "T": 39.0, - "V": 242.09 + "V": 1159.0, + "T": 168.0 }, { - "T": 44.0, - "V": 243.78 + "V": 1134.0, + "T": 172.0 }, { - "T": 49.0, - "V": 244.38 + "V": 1140.0, + "T": 176.0 }, { - "T": 54.0, - "V": 244.38 + "V": 1144.0, + "T": 180.0 }, { - "T": 59.0, - "V": 244.41 + "V": 1165.0, + "T": 184.0 }, { - "T": 64.0, - "V": 243.1 + "V": 1161.0, + "T": 188.0 }, { - "T": 69.0, - "V": 243.1 + "V": 1159.0, + "T": 192.0 }, { - "T": 74.0, - "V": 236.25 + "V": 1166.0, + "T": 196.0 }, { - "T": 79.0, - "V": 236.21 + "V": 1171.0, + "T": 200.0 }, { - "T": 84.0, - "V": 234.44 + "V": 1180.0, + "T": 204.0 }, { - "T": 89.0, - "V": 232.6 + "V": 1171.0, + "T": 208.0 }, { - "T": 94.0, - "V": 231.37 + "V": 1168.0, + "T": 212.0 }, { - "T": 99.0, - "V": 230.95 + "V": 1174.0, + "T": 216.0 }, { - "T": 104.0, - "V": 230.04 + "V": 1142.0, + "T": 220.0 }, { - "T": 109.0, - "V": 229.85 + "V": 1178.0, + "T": 224.0 }, { - "T": 114.0, - "V": 229.62 + "V": 1174.0, + "T": 228.0 }, { - "T": 119.0, - "V": 229.57 + "V": 1185.0, + "T": 232.0 }, { - "T": 124.0, - "V": 229.71 + "V": 1171.0, + "T": 236.0 }, { - "T": 129.0, - "V": 229.7 + "V": 1168.0, + "T": 240.0 }, { - "T": 134.0, - "V": 217.86 + "V": 1175.0, + "T": 244.0 }, { - "T": 139.0, - "V": 217.86 + "V": 1163.0, + "T": 248.0 }, { - "T": 144.0, - "V": 217.86 + "V": 1176.0, + "T": 252.0 }, { - "T": 149.0, - "V": 217.98 + "V": 1162.0, + "T": 256.0 }, { - "T": 154.0, - "V": 210.86 + "V": 1183.0, + "T": 260.0 }, { - "T": 159.0, - "V": 210.88 + "V": 1167.0, + "T": 264.0 }, { - "T": 164.0, - "V": 210.88 + "V": 1178.0, + "T": 268.0 }, { - "T": 169.0, - "V": 210.88 + "V": 1173.0, + "T": 272.0 }, { - "T": 174.0, - "V": 210.89 + "V": 1193.0, + "T": 276.0 }, { - "T": 179.0, - "V": 210.89 + "V": 1174.0, + "T": 280.0 }, { - "T": 184.0, - "V": 210.9 + "V": 1170.0, + "T": 284.0 }, { - "T": 189.0, - "V": 210.9 + "V": 1172.0, + "T": 288.0 }, { - "T": 194.0, - "V": 210.9 + "V": 1166.0, + "T": 292.0 }, { - "T": 199.0, - "V": 211.1 + "V": 1173.0, + "T": 296.0 }, { - "T": 204.0, - "V": 211.07 + "V": 1178.0, + "T": 300.0 }, { - "T": 209.0, - "V": 211.08 + "V": 1168.0, + "T": 304.0 }, { - "T": 214.0, - "V": 211.08 + "V": 1143.0, + "T": 308.0 }, { - "T": 219.0, - "V": 211.09 + "V": 1188.0, + "T": 312.0 }, { - "T": 224.0, - "V": 207.05 + "V": 1174.0, + "T": 316.0 }, { - "T": 229.0, - "V": 207.08 + "V": 1193.0, + "T": 320.0 }, { - "T": 234.0, - "V": 207.08 + "V": 1163.0, + "T": 324.0 }, { - "T": 239.0, - "V": 207.11 + "V": 1170.0, + "T": 328.0 }, { - "T": 244.0, - "V": 207.11 + "V": 1174.0, + "T": 332.0 }, { - "T": 249.0, - "V": 207.11 + "V": 1175.0, + "T": 336.0 }, { - "T": 254.0, - "V": 207.1 + "V": 1148.0, + "T": 340.0 }, { - "T": 259.0, - "V": 207.12 + "V": 1160.0, + "T": 344.0 }, { - "T": 264.0, - "V": 207.12 + "V": 1158.0, + "T": 348.0 }, { - "T": 269.0, - "V": 207.12 + "V": 1157.0, + "T": 352.0 }, { - "T": 274.0, - "V": 207.12 + "V": 1152.0, + "T": 356.0 }, { - "T": 279.0, - "V": 207.12 + "V": 1161.0, + "T": 360.0 }, { - "T": 284.0, - "V": 207.12 + "V": 1167.0, + "T": 364.0 }, { - "T": 289.0, - "V": 207.12 + "V": 1150.0, + "T": 368.0 }, { - "T": 294.0, - "V": 207.14 + "V": 1173.0, + "T": 372.0 }, { - "T": 299.0, - "V": 207.28 + "V": 1195.0, + "T": 376.0 }, { - "T": 304.0, - "V": 207.3 + "V": 1174.0, + "T": 380.0 }, { - "T": 309.0, - "V": 207.28 + "V": 1178.0, + "T": 384.0 }, { - "T": 314.0, - "V": 207.28 + "V": 1153.0, + "T": 388.0 }, { - "T": 319.0, - "V": 207.28 + "V": 1177.0, + "T": 392.0 }, { - "T": 324.0, - "V": 207.28 + "V": 1175.0, + "T": 396.0 }, { - "T": 329.0, - "V": 207.47 + "V": 1176.0, + "T": 400.0 }, { - "T": 334.0, - "V": 207.47 + "V": 1173.0, + "T": 404.0 }, { - "T": 339.0, - "V": 207.47 + "V": 1193.0, + "T": 408.0 }, { - "T": 344.0, - "V": 207.7 + "V": 1154.0, + "T": 412.0 }, { - "T": 349.0, - "V": 207.7 + "V": 1164.0, + "T": 416.0 }, { - "T": 354.0, - "V": 208.09 + "V": 1166.0, + "T": 420.0 }, { - "T": 359.0, - "V": 208.09 + "V": 1176.0, + "T": 424.0 }, { - "T": 364.0, - "V": 208.09 + "V": 1172.0, + "T": 428.0 }, { - "T": 369.0, - "V": 208.46 + "V": 1174.0, + "T": 432.0 }, { - "T": 374.0, - "V": 208.48 + "V": 1174.0, + "T": 436.0 }, { - "T": 379.0, - "V": 208.82 + "V": 1176.0, + "T": 440.0 }, { - "T": 384.0, - "V": 208.82 + "V": 1175.0, + "T": 444.0 }, { - "T": 389.0, - "V": 208.82 + "V": 1163.0, + "T": 448.0 }, { - "T": 394.0, - "V": 209.15 + "V": 1177.0, + "T": 452.0 }, { - "T": 399.0, - "V": 209.11 + "V": 1160.0, + "T": 456.0 }, { - "T": 404.0, - "V": 209.11 + "V": 1178.0, + "T": 460.0 }, { - "T": 409.0, - "V": 209.34 + "V": 1169.0, + "T": 464.0 }, { - "T": 414.0, - "V": 209.34 + "V": 1174.0, + "T": 468.0 }, { - "T": 419.0, - "V": 209.68 + "V": 1167.0, + "T": 472.0 }, { - "T": 424.0, - "V": 209.77 + "V": 1186.0, + "T": 476.0 }, { - "T": 429.0, - "V": 209.74 + "V": 1149.0, + "T": 480.0 }, { - "T": 434.0, - "V": 210.07 + "V": 1174.0, + "T": 484.0 }, { - "T": 439.0, - "V": 210.12 + "V": 1144.0, + "T": 488.0 }, { - "T": 444.0, - "V": 210.49 + "V": 1168.0, + "T": 492.0 }, { - "T": 449.0, - "V": 210.49 + "V": 1173.0, + "T": 496.0 }, { - "T": 454.0, - "V": 210.5 + "V": 1157.0, + "T": 500.0 }, { - "T": 459.0, - "V": 210.51 + "V": 1154.0, + "T": 504.0 }, { - "T": 464.0, - "V": 210.51 + "V": 1158.0, + "T": 508.0 }, { - "T": 469.0, - "V": 210.5 + "V": 1157.0, + "T": 512.0 }, { - "T": 474.0, - "V": 210.51 + "V": 1189.0, + "T": 516.0 }, { - "T": 479.0, - "V": 210.51 + "V": 1152.0, + "T": 520.0 }, { - "T": 484.0, - "V": 210.51 + "V": 1169.0, + "T": 524.0 }, { - "T": 489.0, - "V": 210.51 + "V": 1177.0, + "T": 528.0 }, { - "T": 494.0, - "V": 210.51 + "V": 1147.0, + "T": 532.0 }, { - "T": 499.0, - "V": 210.51 + "V": 1145.0, + "T": 536.0 }, { - "T": 504.0, - "V": 210.51 + "V": 1158.0, + "T": 540.0 }, { - "T": 509.0, - "V": 210.51 + "V": 1168.0, + "T": 544.0 }, { - "T": 514.0, - "V": 210.53 + "V": 1166.0, + "T": 548.0 }, { - "T": 519.0, - "V": 210.53 + "V": 1156.0, + "T": 552.0 }, { - "T": 524.0, - "V": 210.55 + "V": 1177.0, + "T": 556.0 }, { - "T": 529.0, - "V": 210.53 + "V": 1165.0, + "T": 560.0 }, { - "T": 534.0, - "V": 210.53 + "V": 1173.0, + "T": 564.0 }, { - "T": 539.0, - "V": 210.53 + "V": 1146.0, + "T": 568.0 }, { - "T": 544.0, - "V": 210.53 + "V": 1167.0, + "T": 572.0 }, { - "T": 549.0, - "V": 210.52 + "V": 1168.0, + "T": 576.0 }, { - "T": 554.0, - "V": 210.53 + "V": 1167.0, + "T": 580.0 }, { - "T": 559.0, - "V": 210.56 + "V": 1165.0, + "T": 584.0 }, { - "T": 564.0, - "V": 210.53 + "V": 1167.0, + "T": 588.0 }, { - "T": 569.0, - "V": 210.53 + "V": 1157.0, + "T": 592.0 }, { - "T": 574.0, - "V": 210.53 - }, + "V": 1184.0, + "T": 596.0 + } + ], + "Gen0PerSec": [ { - "T": 579.0, - "V": 210.82 + "V": 0.0, + "T": 1.0 }, { - "T": 584.0, - "V": 210.82 + "V": 0.0, + "T": 5.0 }, { - "T": 589.0, - "V": 211.16 + "V": 0.0, + "T": 9.0 }, { - "T": 594.0, - "V": 211.18 + "V": 0.0, + "T": 13.0 }, { - "T": 599.0, - "V": 211.51 + "V": 0.0, + "T": 17.0 }, { - "T": 604.0, - "V": 211.51 + "V": 0.0, + "T": 21.0 }, { - "T": 609.0, - "V": 211.51 + "V": 0.0, + "T": 25.0 }, { - "T": 614.0, - "V": 211.51 + "V": 0.0, + "T": 29.0 }, { - "T": 619.0, - "V": 211.51 + "V": 0.0, + "T": 33.0 }, { - "T": 624.0, - "V": 211.51 - } - ], - "AllocRateMB": [ + "V": 0.0, + "T": 37.0 + }, { - "T": 0.0, - "V": 5.45 + "V": 0.0, + "T": 41.0 }, { - "T": 5.0, - "V": 5.96 + "V": 0.0, + "T": 45.0 }, { - "T": 10.0, - "V": 5.76 + "V": 0.0, + "T": 49.0 }, { - "T": 15.0, - "V": 5.89 + "V": 0.0, + "T": 53.0 }, { - "T": 20.0, - "V": 5.75 + "V": 0.0, + "T": 57.0 }, { - "T": 25.0, - "V": 5.8 + "V": 0.0, + "T": 61.0 }, { - "T": 30.0, - "V": 5.85 + "V": 0.0, + "T": 65.0 }, { - "T": 35.0, - "V": 5.62 + "V": 0.0, + "T": 69.0 }, { - "T": 40.0, - "V": 5.89 + "V": 0.0, + "T": 73.0 }, { - "T": 45.0, - "V": 5.7 + "V": 0.0, + "T": 77.0 }, { - "T": 50.0, - "V": 5.65 + "V": 0.0, + "T": 81.0 }, { - "T": 55.0, - "V": 5.99 + "V": 0.0, + "T": 85.0 }, { - "T": 60.0, - "V": 5.87 + "V": 0.0, + "T": 89.0 }, { - "T": 65.0, - "V": 5.76 + "V": 0.0, + "T": 93.0 }, { - "T": 70.0, - "V": 5.63 + "V": 0.0, + "T": 97.0 }, { - "T": 75.0, - "V": 5.76 + "V": 0.0, + "T": 101.0 }, { - "T": 80.0, - "V": 5.68 + "V": 0.0, + "T": 105.0 }, { - "T": 85.0, - "V": 5.85 + "V": 0.0, + "T": 109.0 }, { - "T": 90.0, - "V": 5.7 + "V": 0.0, + "T": 113.0 }, { - "T": 95.0, - "V": 5.98 + "V": 0.0, + "T": 117.0 }, { - "T": 100.0, - "V": 5.75 + "V": 0.0, + "T": 121.0 }, { - "T": 105.0, - "V": 5.96 + "V": 0.0, + "T": 125.0 }, { - "T": 110.0, - "V": 5.75 + "V": 0.0, + "T": 129.0 }, { - "T": 115.0, - "V": 5.66 + "V": 0.0, + "T": 133.0 }, { - "T": 120.0, - "V": 5.65 + "V": 0.0, + "T": 137.0 }, { - "T": 125.0, - "V": 5.74 + "V": 0.0, + "T": 141.0 }, { - "T": 130.0, - "V": 5.73 + "V": 0.0, + "T": 145.0 }, { - "T": 135.0, - "V": 5.71 + "V": 0.0, + "T": 149.0 }, { - "T": 140.0, - "V": 5.75 + "V": 0.0, + "T": 153.0 }, { - "T": 145.0, - "V": 5.62 + "V": 0.0, + "T": 157.0 }, { - "T": 150.0, - "V": 5.76 + "V": 0.0, + "T": 161.0 }, { - "T": 155.0, - "V": 0.0 + "V": 0.0, + "T": 165.0 }, { - "T": 160.0, - "V": 0.0 + "V": 0.0, + "T": 169.0 }, { - "T": 165.0, - "V": 0.0 + "V": 0.0, + "T": 173.0 }, { - "T": 170.0, - "V": 0.0 + "V": 0.0, + "T": 177.0 }, { - "T": 175.0, - "V": 0.0 + "V": 0.0, + "T": 181.0 }, { - "T": 180.0, - "V": 0.0 + "V": 0.0, + "T": 185.0 }, { - "T": 185.0, - "V": 0.0 + "V": 0.0, + "T": 189.0 }, { - "T": 190.0, - "V": 0.0 + "V": 0.0, + "T": 193.0 }, { - "T": 195.0, - "V": 0.0 + "V": 0.0, + "T": 197.0 }, { - "T": 200.0, - "V": 0.0 + "V": 0.0, + "T": 201.0 }, { - "T": 205.0, - "V": 0.0 + "V": 0.0, + "T": 205.0 }, { - "T": 210.0, - "V": 0.0 + "V": 0.0, + "T": 209.0 }, { - "T": 215.0, - "V": 0.0 + "V": 0.0, + "T": 213.0 }, { - "T": 220.0, - "V": 0.0 + "V": 0.0, + "T": 217.0 }, { - "T": 225.0, - "V": 0.0 + "V": 0.0, + "T": 221.0 }, { - "T": 230.0, - "V": 0.0 + "V": 0.0, + "T": 225.0 }, { - "T": 235.0, - "V": 0.0 + "V": 0.0, + "T": 229.0 }, { - "T": 240.0, - "V": 0.0 + "V": 0.0, + "T": 233.0 }, { - "T": 245.0, - "V": 0.0 + "V": 0.0, + "T": 237.0 }, { - "T": 250.0, - "V": 0.0 + "V": 0.0, + "T": 241.0 }, { - "T": 255.0, - "V": 0.0 + "V": 0.0, + "T": 245.0 }, { - "T": 260.0, - "V": 0.0 + "V": 0.0, + "T": 249.0 }, { - "T": 265.0, - "V": 0.0 + "V": 0.0, + "T": 253.0 }, { - "T": 270.0, - "V": 0.0 + "V": 0.0, + "T": 257.0 }, { - "T": 275.0, - "V": 0.0 + "V": 0.0, + "T": 261.0 }, { - "T": 280.0, - "V": 0.0 + "V": 0.0, + "T": 265.0 }, { - "T": 285.0, - "V": 0.0 + "V": 0.0, + "T": 269.0 }, { - "T": 290.0, - "V": 0.0 + "V": 0.0, + "T": 273.0 }, { - "T": 295.0, - "V": 0.0 + "V": 0.0, + "T": 277.0 }, { - "T": 300.0, - "V": 0.0 + "V": 0.0, + "T": 281.0 }, { - "T": 305.0, - "V": 0.0 + "V": 0.0, + "T": 285.0 }, { - "T": 310.0, - "V": 0.0 + "V": 0.0, + "T": 289.0 }, { - "T": 315.0, - "V": 0.0 + "V": 0.0, + "T": 293.0 }, { - "T": 320.0, - "V": 0.0 + "V": 0.0, + "T": 297.0 }, { - "T": 325.0, - "V": 5.73 + "V": 0.0, + "T": 301.0 }, { - "T": 330.0, - "V": 5.76 + "V": 0.0, + "T": 305.0 }, { - "T": 335.0, - "V": 5.75 + "V": 0.0, + "T": 309.0 }, { - "T": 340.0, - "V": 5.84 + "V": 0.0, + "T": 313.0 }, { - "T": 345.0, - "V": 5.75 + "V": 0.0, + "T": 317.0 }, { - "T": 350.0, - "V": 5.61 + "V": 0.0, + "T": 321.0 }, { - "T": 355.0, - "V": 5.68 + "V": 0.0, + "T": 325.0 }, { - "T": 360.0, - "V": 5.69 + "V": 0.0, + "T": 329.0 }, { - "T": 365.0, - "V": 5.75 + "V": 0.0, + "T": 333.0 }, { - "T": 370.0, - "V": 5.72 + "V": 0.0, + "T": 337.0 }, { - "T": 375.0, - "V": 5.7 + "V": 0.0, + "T": 341.0 }, { - "T": 380.0, - "V": 5.86 + "V": 0.0, + "T": 345.0 }, { - "T": 385.0, - "V": 5.71 + "V": 0.0, + "T": 349.0 }, { - "T": 390.0, - "V": 5.75 + "V": 0.0, + "T": 353.0 }, { - "T": 395.0, - "V": 5.85 + "V": 0.0, + "T": 357.0 }, { - "T": 400.0, - "V": 5.79 + "V": 0.0, + "T": 361.0 }, { - "T": 405.0, - "V": 5.87 + "V": 0.0, + "T": 365.0 }, { - "T": 410.0, - "V": 5.75 + "V": 0.0, + "T": 369.0 }, { - "T": 415.0, - "V": 5.65 + "V": 0.0, + "T": 373.0 }, { - "T": 420.0, - "V": 5.67 + "V": 0.0, + "T": 377.0 }, { - "T": 425.0, - "V": 5.78 + "V": 0.0, + "T": 381.0 }, { - "T": 430.0, - "V": 5.86 + "V": 0.0, + "T": 385.0 }, { - "T": 435.0, - "V": 5.81 + "V": 0.0, + "T": 389.0 }, { - "T": 440.0, - "V": 5.95 + "V": 0.0, + "T": 393.0 }, { - "T": 445.0, - "V": 5.61 + "V": 0.0, + "T": 397.0 }, { - "T": 450.0, - "V": 5.81 + "V": 0.0, + "T": 401.0 }, { - "T": 455.0, - "V": 5.9 + "V": 0.0, + "T": 405.0 }, { - "T": 460.0, - "V": 5.7 + "V": 0.0, + "T": 409.0 }, { - "T": 465.0, - "V": 5.73 + "V": 0.0, + "T": 413.0 }, { - "T": 470.0, - "V": 5.91 + "V": 0.0, + "T": 417.0 }, { - "T": 475.0, - "V": 5.81 + "V": 0.0, + "T": 421.0 }, { - "T": 480.0, - "V": 5.75 + "V": 0.0, + "T": 425.0 }, { - "T": 485.0, - "V": 5.77 + "V": 0.0, + "T": 429.0 }, { - "T": 490.0, - "V": 5.76 + "V": 0.0, + "T": 433.0 }, { - "T": 495.0, - "V": 5.76 + "V": 0.0, + "T": 437.0 }, { - "T": 500.0, - "V": 5.79 + "V": 0.0, + "T": 441.0 }, { - "T": 505.0, - "V": 5.77 + "V": 0.0, + "T": 445.0 }, { - "T": 510.0, - "V": 5.82 + "V": 0.0, + "T": 449.0 }, { - "T": 515.0, - "V": 5.74 + "V": 0.0, + "T": 453.0 }, { - "T": 520.0, - "V": 5.72 + "V": 0.0, + "T": 457.0 }, { - "T": 525.0, - "V": 5.8 + "V": 0.0, + "T": 461.0 }, { - "T": 530.0, - "V": 5.68 + "V": 0.0, + "T": 465.0 }, { - "T": 535.0, - "V": 5.78 + "V": 0.0, + "T": 469.0 }, { - "T": 540.0, - "V": 5.73 + "V": 0.0, + "T": 473.0 }, { - "T": 545.0, - "V": 5.5 + "V": 0.0, + "T": 477.0 }, { - "T": 550.0, - "V": 5.82 + "V": 0.0, + "T": 481.0 }, { - "T": 555.0, - "V": 5.76 + "V": 0.0, + "T": 485.0 }, { - "T": 560.0, - "V": 5.71 + "V": 0.0, + "T": 489.0 }, { - "T": 565.0, - "V": 5.87 + "V": 0.0, + "T": 493.0 }, { - "T": 570.0, - "V": 5.78 + "V": 0.0, + "T": 497.0 }, { - "T": 575.0, - "V": 5.74 + "V": 0.0, + "T": 501.0 }, { - "T": 580.0, - "V": 5.77 + "V": 0.0, + "T": 505.0 }, { - "T": 585.0, - "V": 5.79 + "V": 0.0, + "T": 509.0 }, { - "T": 590.0, - "V": 5.73 + "V": 0.0, + "T": 513.0 }, { - "T": 595.0, - "V": 5.79 + "V": 0.0, + "T": 517.0 }, { - "T": 600.0, - "V": 5.79 + "V": 0.0, + "T": 521.0 }, { - "T": 605.0, - "V": 5.77 + "V": 0.0, + "T": 525.0 }, { - "T": 610.0, - "V": 5.68 + "V": 0.0, + "T": 529.0 }, { - "T": 615.0, - "V": 5.69 + "V": 0.0, + "T": 533.0 }, { - "T": 620.0, - "V": 5.74 + "V": 0.0, + "T": 537.0 }, { - "T": 625.0, - "V": 5.66 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ - { - "T": 0.0, - "V": 0.0 + "V": 0.0, + "T": 541.0 }, { - "T": 5.0, - "V": 0.0 + "V": 0.0, + "T": 545.0 }, { - "T": 10.0, - "V": 0.0 + "V": 0.0, + "T": 549.0 }, { - "T": 15.0, - "V": 0.0 + "V": 0.0, + "T": 553.0 }, { - "T": 20.0, - "V": 0.0 + "V": 0.0, + "T": 557.0 }, { - "T": 25.0, - "V": 0.0 + "V": 0.0, + "T": 561.0 }, { - "T": 30.0, - "V": 0.0 + "V": 0.0, + "T": 565.0 }, { - "T": 35.0, - "V": 0.0 + "V": 0.0, + "T": 569.0 }, { - "T": 40.0, - "V": 0.0 + "V": 0.0, + "T": 573.0 }, { - "T": 45.0, - "V": 0.0 + "V": 0.0, + "T": 577.0 }, { - "T": 50.0, - "V": 0.0 + "V": 0.0, + "T": 581.0 }, { - "T": 55.0, - "V": 0.0 + "V": 0.0, + "T": 585.0 }, { - "T": 60.0, - "V": 0.0 + "V": 0.0, + "T": 589.0 }, { - "T": 65.0, - "V": 0.0 + "V": 0.0, + "T": 593.0 }, { - "T": 70.0, - "V": 0.0 + "V": 0.0, + "T": 597.0 + } + ] + } + }, + { + "ScenarioId": "zeroalloc", + "ScenarioName": "Console: near-zero-allocation numeric compute (matrix multiply)", + "GcModeId": "server", + "GcModeName": "Server GC", + "DurationSeconds": 600.0007736, + "Summary": { + "OperationsTotal": 702508, + "OpsPerSecondOverall": 1170.8451570569775, + "TotalAllocatedBytes": 16895544, + "BytesAllocatedThisThreadDuringRun": 1008, + "Gen0Collections": 6, + "Gen1Collections": 1, + "Gen2Collections": 0, + "WorkingSetBytes": 47300608, + "PeakWorkingSetBytes": 47300608, + "HeapSizeBytes": 529360, + "TotalCommittedBytes": 4005888, + "GcName": "CoreCLR (Server)" + }, + "PauseTimePctStats": { + "Avg": 0.0006398659966499162, + "P50": 0.0, + "P90": 0.0, + "P99": 0.02149999999999999, + "Max": 0.1692, + "Min": 0.0, + "Count": 597 + }, + "PauseTimeMsStats": { + "Avg": 0.006398659966499162, + "P50": 0.0, + "P90": 0.0, + "P99": 0.2149999999999999, + "Max": 1.692, + "Min": 0.0, + "Count": 597 + }, + "WorkingSetStats": { + "Avg": 45209565.752508365, + "P50": 45596672.0, + "P90": 45621248.0, + "P99": 45621248.0, + "Max": 45621248.0, + "Min": 36802560.0, + "Count": 598 + }, + "AllocRateMBStats": { + "Avg": 0.025065001930224037, + "P50": 0.0234375, + "P90": 0.03125762939453125, + "P99": 0.03127288818359375, + "Max": 0.03885650634765625, + "Min": 0.012725830078125, + "Count": 597 + }, + "OpsPerSecStats": { + "Avg": 1170.3578595317726, + "P50": 1171.0, + "P90": 1180.0, + "P99": 1274.0, + "Max": 1406.0, + "Min": 1033.0, + "Count": 598 + }, + "TimeSeries": { + "PauseTimePct": [ + { + "V": 0.0, + "T": 1.0 }, { - "T": 75.0, - "V": 0.0 + "V": 0.0, + "T": 5.0 }, { - "T": 80.0, - "V": 0.0 + "V": 0.0, + "T": 9.0 }, { - "T": 85.0, - "V": 0.0 + "V": 0.0, + "T": 13.0 }, { - "T": 90.0, - "V": 0.0 + "V": 0.0, + "T": 17.0 }, { - "T": 95.0, - "V": 0.0 + "V": 0.0, + "T": 21.0 }, { - "T": 100.0, - "V": 1.0 + "V": 0.0, + "T": 25.0 }, { - "T": 105.0, - "V": 1.0 + "V": 0.0, + "T": 29.0 }, { - "T": 110.0, - "V": 1.0 + "V": 0.0, + "T": 33.0 }, { - "T": 115.0, - "V": 0.0 + "V": 0.0, + "T": 37.0 }, { - "T": 120.0, - "V": 0.0 + "V": 0.0, + "T": 41.0 }, { - "T": 125.0, - "V": 1.0 + "V": 0.0, + "T": 45.0 }, { - "T": 130.0, - "V": 0.0 + "V": 0.0, + "T": 49.0 }, { - "T": 135.0, - "V": 1.0 + "V": 0.0, + "T": 53.0 }, { - "T": 140.0, - "V": 0.0 + "V": 0.0, + "T": 57.0 }, { - "T": 145.0, - "V": 0.0 + "V": 0.0, + "T": 61.0 }, { - "T": 150.0, - "V": 1.0 + "V": 0.0, + "T": 65.0 }, { - "T": 155.0, - "V": 1.0 + "V": 0.0, + "T": 69.0 }, { - "T": 160.0, - "V": 0.0 + "V": 0.0, + "T": 73.0 }, { - "T": 165.0, - "V": 1.0 + "V": 0.0, + "T": 77.0 }, { - "T": 170.0, - "V": 0.0 + "V": 0.0, + "T": 81.0 }, { - "T": 175.0, - "V": 0.0 + "V": 0.0, + "T": 85.0 }, { - "T": 180.0, - "V": 0.0 + "V": 0.0, + "T": 89.0 }, { - "T": 185.0, - "V": 0.0 + "V": 0.0, + "T": 93.0 }, { - "T": 190.0, - "V": 0.0 + "V": 0.0, + "T": 97.0 }, { - "T": 195.0, - "V": 0.0 + "V": 0.0, + "T": 101.0 }, { - "T": 200.0, - "V": 1.0 + "V": 0.0, + "T": 105.0 }, { - "T": 205.0, - "V": 1.0 + "V": 0.0, + "T": 109.0 }, { - "T": 210.0, - "V": 1.0 + "V": 0.0, + "T": 113.0 }, { - "T": 215.0, - "V": 1.0 + "V": 0.0, + "T": 117.0 }, { - "T": 220.0, - "V": 1.0 + "V": 0.0, + "T": 121.0 }, { - "T": 225.0, - "V": 1.0 + "V": 0.0, + "T": 125.0 }, { - "T": 230.0, - "V": 1.0 + "V": 0.0, + "T": 129.0 }, { - "T": 235.0, - "V": 3.0 + "V": 0.0, + "T": 133.0 }, { - "T": 240.0, - "V": 1.0 + "V": 0.0, + "T": 137.0 }, { - "T": 245.0, - "V": 2.0 + "V": 0.0, + "T": 141.0 }, { - "T": 250.0, - "V": 1.0 + "V": 0.0, + "T": 145.0 }, { - "T": 255.0, - "V": 0.0 + "V": 0.0, + "T": 149.0 }, { - "T": 260.0, - "V": 2.0 + "V": 0.0, + "T": 153.0 }, { - "T": 265.0, - "V": 1.0 + "V": 0.0, + "T": 157.0 }, { - "T": 270.0, - "V": 1.0 + "V": 0.0, + "T": 161.0 }, { - "T": 275.0, - "V": 2.0 + "V": 0.0, + "T": 165.0 }, { - "T": 280.0, - "V": 1.0 + "V": 0.0, + "T": 169.0 }, { - "T": 285.0, - "V": 1.0 + "V": 0.0, + "T": 173.0 }, { - "T": 290.0, - "V": 2.0 + "V": 0.0, + "T": 177.0 }, { - "T": 295.0, - "V": 1.0 + "V": 0.0, + "T": 181.0 }, { - "T": 300.0, - "V": 2.0 + "V": 0.0, + "T": 185.0 }, { - "T": 305.0, - "V": 1.0 + "V": 0.0, + "T": 189.0 }, { - "T": 310.0, - "V": 1.0 + "V": 0.0, + "T": 193.0 }, { - "T": 315.0, - "V": 2.0 + "V": 0.0, + "T": 197.0 }, { - "T": 320.0, - "V": 1.0 + "V": 0.0, + "T": 201.0 }, { - "T": 325.0, - "V": 0.0 + "V": 0.0, + "T": 205.0 }, { - "T": 330.0, - "V": 2.0 + "V": 0.0, + "T": 209.0 }, { - "T": 335.0, - "V": 1.0 + "V": 0.0, + "T": 213.0 }, { - "T": 340.0, - "V": 0.0 + "V": 0.0, + "T": 217.0 }, { - "T": 345.0, - "V": 2.0 + "V": 0.0, + "T": 221.0 }, { - "T": 350.0, - "V": 0.0 + "V": 0.0, + "T": 225.0 }, { - "T": 355.0, - "V": 1.0 + "V": 0.0, + "T": 229.0 }, { - "T": 360.0, - "V": 1.0 + "V": 0.0, + "T": 233.0 }, { - "T": 365.0, - "V": 0.0 + "V": 0.0, + "T": 237.0 }, { - "T": 370.0, - "V": 1.0 + "V": 0.0, + "T": 241.0 }, { - "T": 375.0, - "V": 1.0 + "V": 0.0, + "T": 245.0 }, { - "T": 380.0, - "V": 1.0 + "V": 0.0, + "T": 249.0 }, { - "T": 385.0, - "V": 1.0 + "V": 0.0488, + "T": 253.0 }, { - "T": 390.0, - "V": 1.0 + "V": 0.0, + "T": 257.0 }, { - "T": 395.0, - "V": 1.0 + "V": 0.0, + "T": 261.0 }, { - "T": 400.0, - "V": 1.0 + "V": 0.0, + "T": 265.0 }, { - "T": 405.0, - "V": 0.0 + "V": 0.0, + "T": 269.0 }, { - "T": 410.0, - "V": 1.0 + "V": 0.0, + "T": 273.0 }, { - "T": 415.0, - "V": 1.0 + "V": 0.0, + "T": 277.0 }, { - "T": 420.0, - "V": 1.0 + "V": 0.0, + "T": 281.0 }, { - "T": 425.0, - "V": 1.0 + "V": 0.0, + "T": 285.0 }, { - "T": 430.0, - "V": 0.0 + "V": 0.0, + "T": 289.0 }, { - "T": 435.0, - "V": 1.0 + "V": 0.0, + "T": 293.0 }, { - "T": 440.0, - "V": 1.0 + "V": 0.0, + "T": 297.0 }, { - "T": 445.0, - "V": 1.0 + "V": 0.0, + "T": 301.0 }, { - "T": 450.0, - "V": 1.0 + "V": 0.0, + "T": 305.0 }, { - "T": 455.0, - "V": 1.0 + "V": 0.0, + "T": 309.0 }, { - "T": 460.0, - "V": 1.0 + "V": 0.0, + "T": 313.0 }, { - "T": 465.0, - "V": 0.0 + "V": 0.0, + "T": 317.0 }, { - "T": 470.0, - "V": 0.0 + "V": 0.0, + "T": 321.0 }, { - "T": 475.0, - "V": 2.0 + "V": 0.0, + "T": 325.0 }, { - "T": 480.0, - "V": 1.0 + "V": 0.0, + "T": 329.0 }, { - "T": 485.0, - "V": 0.0 + "V": 0.0, + "T": 333.0 }, { - "T": 490.0, - "V": 2.0 + "V": 0.0, + "T": 337.0 }, { - "T": 495.0, - "V": 1.0 + "V": 0.0, + "T": 341.0 }, { - "T": 500.0, - "V": 1.0 + "V": 0.0, + "T": 345.0 }, { - "T": 505.0, - "V": 1.0 + "V": 0.0, + "T": 349.0 }, { - "T": 510.0, - "V": 0.0 + "V": 0.0, + "T": 353.0 }, { - "T": 515.0, - "V": 1.0 + "V": 0.0, + "T": 357.0 }, { - "T": 520.0, - "V": 1.0 + "V": 0.0, + "T": 361.0 }, { - "T": 525.0, - "V": 1.0 + "V": 0.0, + "T": 365.0 }, { - "T": 530.0, - "V": 1.0 + "V": 0.0, + "T": 369.0 }, { - "T": 535.0, - "V": 0.0 + "V": 0.0, + "T": 373.0 }, { - "T": 540.0, - "V": 1.0 + "V": 0.0, + "T": 377.0 }, { - "T": 545.0, - "V": 1.0 + "V": 0.0, + "T": 381.0 }, { - "T": 550.0, - "V": 1.0 + "V": 0.0, + "T": 385.0 }, { - "T": 555.0, - "V": 1.0 + "V": 0.0, + "T": 389.0 }, { - "T": 560.0, - "V": 0.0 + "V": 0.0, + "T": 393.0 }, { - "T": 565.0, - "V": 1.0 + "V": 0.0, + "T": 397.0 }, { - "T": 570.0, - "V": 1.0 + "V": 0.0, + "T": 401.0 }, { - "T": 575.0, - "V": 0.0 + "V": 0.0, + "T": 405.0 }, { - "T": 580.0, - "V": 1.0 + "V": 0.0, + "T": 409.0 }, { - "T": 585.0, - "V": 0.0 + "V": 0.0, + "T": 413.0 }, { - "T": 590.0, - "V": 1.0 + "V": 0.0, + "T": 417.0 }, { - "T": 595.0, - "V": 1.0 + "V": 0.0, + "T": 421.0 }, { - "T": 600.0, - "V": 1.0 + "V": 0.0, + "T": 425.0 }, { - "T": 605.0, - "V": 2.0 + "V": 0.0, + "T": 429.0 }, { - "T": 610.0, - "V": 1.0 + "V": 0.0, + "T": 433.0 }, { - "T": 615.0, - "V": 1.0 + "V": 0.0, + "T": 437.0 }, { - "T": 620.0, - "V": 2.0 + "V": 0.0, + "T": 441.0 }, { - "T": 625.0, - "V": 1.0 + "V": 0.0, + "T": 445.0 + }, + { + "V": 0.0, + "T": 449.0 + }, + { + "V": 0.0, + "T": 453.0 + }, + { + "V": 0.0, + "T": 457.0 + }, + { + "V": 0.0, + "T": 461.0 + }, + { + "V": 0.0, + "T": 465.0 + }, + { + "V": 0.0, + "T": 469.0 + }, + { + "V": 0.0, + "T": 473.0 + }, + { + "V": 0.0, + "T": 477.0 + }, + { + "V": 0.0, + "T": 481.0 + }, + { + "V": 0.0, + "T": 485.0 + }, + { + "V": 0.0, + "T": 489.0 + }, + { + "V": 0.0, + "T": 493.0 + }, + { + "V": 0.0, + "T": 497.0 + }, + { + "V": 0.0, + "T": 501.0 + }, + { + "V": 0.0, + "T": 505.0 + }, + { + "V": 0.0, + "T": 509.0 + }, + { + "V": 0.0, + "T": 513.0 + }, + { + "V": 0.0, + "T": 517.0 + }, + { + "V": 0.0, + "T": 521.0 + }, + { + "V": 0.0, + "T": 525.0 + }, + { + "V": 0.0, + "T": 529.0 + }, + { + "V": 0.0, + "T": 533.0 + }, + { + "V": 0.0, + "T": 537.0 + }, + { + "V": 0.0, + "T": 541.0 + }, + { + "V": 0.0, + "T": 545.0 + }, + { + "V": 0.0, + "T": 549.0 + }, + { + "V": 0.0, + "T": 553.0 + }, + { + "V": 0.0, + "T": 557.0 + }, + { + "V": 0.0, + "T": 561.0 + }, + { + "V": 0.0, + "T": 565.0 + }, + { + "V": 0.0, + "T": 569.0 + }, + { + "V": 0.0, + "T": 573.0 + }, + { + "V": 0.0, + "T": 577.0 + }, + { + "V": 0.0, + "T": 581.0 + }, + { + "V": 0.0, + "T": 585.0 + }, + { + "V": 0.0, + "T": 589.0 + }, + { + "V": 0.0, + "T": 593.0 + }, + { + "V": 0.0, + "T": 597.0 } - ] - } - }, - { - "ScenarioId": "zeroalloc", - "ScenarioName": "Console: near-zero-allocation numeric compute (matrix multiply)", - "GcModeId": "workstation", - "GcModeName": "Workstation GC", - "DurationSeconds": 600.0006233, - "Summary": { - "OperationsTotal": 700215, - "OpsPerSecondOverall": 1167.0237876567885, - "TotalAllocatedBytes": 16876128, - "BytesAllocatedThisThreadDuringRun": 1008, - "Gen0Collections": 1, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 55283712, - "PeakWorkingSetBytes": 55283712, - "HeapSizeBytes": 571560, - "TotalCommittedBytes": 17453056, - "GcName": "CoreCLR (Workstation)" - }, - "PauseTimePctStats": { - "Avg": 0.00033852596314907867, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.20209999999999997, - "Min": 0.0, - "Count": 597 - }, - "PauseTimeMsStats": { - "Avg": 0.003385259631490787, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 2.021, - "Min": 0.0, - "Count": 597 - }, - "WorkingSetStats": { - "Avg": 45097439.46488294, - "P50": 45228032.0, - "P90": 51511296.0, - "P99": 53596160.0, - "Max": 53616640.0, - "Min": 31367168.0, - "Count": 598 - }, - "AllocRateMBStats": { - "Avg": 0.02503365368100267, - "P50": 0.02342987060546875, - "P90": 0.03124237060546875, - "P99": 0.038970947265625, - "Max": 0.03910064697265625, - "Min": 0.01531219482421875, - "Count": 597 - }, - "OpsPerSecStats": { - "Avg": 1166.4598662207359, - "P50": 1169.0, - "P90": 1180.0, - "P99": 1247.0, - "Max": 1379.0, - "Min": 994.0, - "Count": 598 - }, - "TimeSeries": { - "PauseTimePct": [ + ], + "PauseTimeMs": [ { "V": 0.0, "T": 1.0 @@ -26101,7 +25459,7 @@ "T": 249.0 }, { - "V": 0.0, + "V": 0.488, "T": 253.0 }, { @@ -26449,9409 +25807,9415 @@ "T": 597.0 } ], - "PauseTimeMs": [ + "WorkingSetMB": [ { - "V": 0.0, - "T": 1.0 + "V": 35.1, + "T": 0.0 }, { - "V": 0.0, - "T": 5.0 + "V": 38.04, + "T": 4.0 }, { - "V": 0.0, - "T": 9.0 + "V": 40.5, + "T": 8.0 }, { - "V": 0.0, - "T": 13.0 + "V": 40.68, + "T": 12.0 }, { - "V": 0.0, - "T": 17.0 + "V": 40.81, + "T": 16.0 }, { - "V": 0.0, - "T": 21.0 + "V": 40.93, + "T": 20.0 }, { - "V": 0.0, - "T": 25.0 + "V": 41.05, + "T": 24.0 }, { - "V": 0.0, - "T": 29.0 + "V": 41.1, + "T": 28.0 }, { - "V": 0.0, - "T": 33.0 + "V": 41.47, + "T": 32.0 }, { - "V": 0.0, - "T": 37.0 + "V": 41.52, + "T": 36.0 }, { - "V": 0.0, - "T": 41.0 + "V": 41.61, + "T": 40.0 }, { - "V": 0.0, - "T": 45.0 + "V": 41.72, + "T": 44.0 }, { - "V": 0.0, - "T": 49.0 + "V": 41.82, + "T": 48.0 }, { - "V": 0.0, - "T": 53.0 + "V": 41.92, + "T": 52.0 }, { - "V": 0.0, - "T": 57.0 + "V": 42.9, + "T": 56.0 }, { - "V": 0.0, - "T": 61.0 + "V": 42.9, + "T": 60.0 }, { - "V": 0.0, - "T": 65.0 + "V": 42.96, + "T": 64.0 }, { - "V": 0.0, - "T": 69.0 + "V": 42.91, + "T": 68.0 }, { - "V": 0.0, - "T": 73.0 + "V": 42.91, + "T": 72.0 }, { - "V": 0.0, - "T": 77.0 + "V": 42.91, + "T": 76.0 }, { - "V": 0.0, - "T": 81.0 + "V": 42.91, + "T": 80.0 }, { - "V": 0.0, - "T": 85.0 + "V": 42.91, + "T": 84.0 }, { - "V": 0.0, - "T": 89.0 + "V": 42.91, + "T": 88.0 }, { - "V": 0.0, - "T": 93.0 + "V": 42.91, + "T": 92.0 }, { - "V": 0.0, - "T": 97.0 + "V": 42.91, + "T": 96.0 }, { - "V": 0.0, - "T": 101.0 + "V": 42.91, + "T": 100.0 }, { - "V": 0.0, - "T": 105.0 + "V": 42.91, + "T": 104.0 }, { - "V": 0.0, - "T": 109.0 + "V": 42.91, + "T": 108.0 }, { - "V": 0.0, - "T": 113.0 + "V": 42.91, + "T": 112.0 }, { - "V": 0.0, - "T": 117.0 + "V": 42.91, + "T": 116.0 }, { - "V": 0.0, - "T": 121.0 + "V": 42.91, + "T": 120.0 }, { - "V": 0.0, - "T": 125.0 + "V": 42.91, + "T": 124.0 }, { - "V": 0.0, - "T": 129.0 + "V": 42.91, + "T": 128.0 }, { - "V": 0.0, - "T": 133.0 + "V": 42.91, + "T": 132.0 }, { - "V": 0.0, - "T": 137.0 + "V": 42.91, + "T": 136.0 }, { - "V": 0.0, - "T": 141.0 + "V": 42.91, + "T": 140.0 }, { - "V": 0.0, - "T": 145.0 + "V": 42.91, + "T": 144.0 }, { - "V": 0.0, - "T": 149.0 + "V": 42.91, + "T": 148.0 }, { - "V": 0.0, - "T": 153.0 + "V": 42.91, + "T": 152.0 }, { - "V": 0.0, - "T": 157.0 + "V": 43.38, + "T": 156.0 }, { - "V": 0.0, - "T": 161.0 + "V": 43.36, + "T": 160.0 }, { - "V": 0.0, - "T": 165.0 + "V": 43.36, + "T": 164.0 }, { - "V": 0.0, - "T": 169.0 + "V": 43.36, + "T": 168.0 }, { - "V": 0.0, - "T": 173.0 + "V": 43.36, + "T": 172.0 }, { - "V": 0.0, - "T": 177.0 + "V": 43.36, + "T": 176.0 }, { - "V": 0.0, - "T": 181.0 + "V": 43.36, + "T": 180.0 }, { - "V": 0.0, - "T": 185.0 + "V": 43.36, + "T": 184.0 }, { - "V": 0.0, - "T": 189.0 + "V": 43.36, + "T": 188.0 }, { - "V": 0.0, - "T": 193.0 + "V": 43.36, + "T": 192.0 }, { - "V": 0.0, - "T": 197.0 + "V": 43.36, + "T": 196.0 }, { - "V": 0.0, - "T": 201.0 + "V": 43.36, + "T": 200.0 }, { - "V": 0.0, - "T": 205.0 + "V": 43.36, + "T": 204.0 }, { - "V": 0.0, - "T": 209.0 + "V": 43.36, + "T": 208.0 }, { - "V": 0.0, - "T": 213.0 + "V": 43.36, + "T": 212.0 }, { - "V": 0.0, - "T": 217.0 + "V": 43.36, + "T": 216.0 }, { - "V": 0.0, - "T": 221.0 + "V": 43.36, + "T": 220.0 }, { - "V": 0.0, - "T": 225.0 + "V": 43.36, + "T": 224.0 }, { - "V": 0.0, - "T": 229.0 + "V": 43.36, + "T": 228.0 }, { - "V": 0.0, - "T": 233.0 + "V": 43.36, + "T": 232.0 }, { - "V": 0.0, - "T": 237.0 + "V": 43.36, + "T": 236.0 }, { - "V": 0.0, - "T": 241.0 + "V": 43.36, + "T": 240.0 }, { - "V": 0.0, - "T": 245.0 + "V": 43.36, + "T": 244.0 }, { - "V": 0.0, - "T": 249.0 + "V": 43.36, + "T": 248.0 }, { - "V": 0.0, - "T": 253.0 + "V": 43.36, + "T": 252.0 }, { - "V": 0.0, - "T": 257.0 + "V": 43.37, + "T": 256.0 }, { - "V": 0.0, - "T": 261.0 + "V": 43.37, + "T": 260.0 }, { - "V": 0.0, - "T": 265.0 + "V": 43.37, + "T": 264.0 }, { - "V": 0.0, - "T": 269.0 + "V": 43.37, + "T": 268.0 }, { - "V": 0.0, - "T": 273.0 + "V": 43.37, + "T": 272.0 }, { - "V": 0.0, - "T": 277.0 + "V": 43.37, + "T": 276.0 }, { - "V": 0.0, - "T": 281.0 + "V": 43.37, + "T": 280.0 }, { - "V": 0.0, - "T": 285.0 + "V": 43.37, + "T": 284.0 }, { - "V": 0.0, - "T": 289.0 + "V": 43.37, + "T": 288.0 }, { - "V": 0.0, - "T": 293.0 + "V": 43.37, + "T": 292.0 }, { - "V": 0.0, - "T": 297.0 + "V": 43.37, + "T": 296.0 }, { - "V": 0.0, - "T": 301.0 + "V": 43.51, + "T": 300.0 }, { - "V": 0.0, - "T": 305.0 + "V": 43.51, + "T": 304.0 }, { - "V": 0.0, - "T": 309.0 + "V": 43.51, + "T": 308.0 }, { - "V": 0.0, - "T": 313.0 + "V": 43.51, + "T": 312.0 }, { - "V": 0.0, - "T": 317.0 + "V": 43.51, + "T": 316.0 }, { - "V": 0.0, - "T": 321.0 + "V": 43.51, + "T": 320.0 }, { - "V": 0.0, - "T": 325.0 + "V": 43.51, + "T": 324.0 }, { - "V": 0.0, - "T": 329.0 + "V": 43.51, + "T": 328.0 }, { - "V": 0.0, - "T": 333.0 + "V": 43.51, + "T": 332.0 }, { - "V": 0.0, - "T": 337.0 + "V": 43.51, + "T": 336.0 }, { - "V": 0.0, - "T": 341.0 + "V": 43.51, + "T": 340.0 }, { - "V": 0.0, - "T": 345.0 + "V": 43.51, + "T": 344.0 }, { - "V": 0.0, - "T": 349.0 + "V": 43.51, + "T": 348.0 }, { - "V": 0.0, - "T": 353.0 + "V": 43.51, + "T": 352.0 }, { - "V": 0.0, - "T": 357.0 + "V": 43.51, + "T": 356.0 }, { - "V": 0.0, - "T": 361.0 + "V": 43.51, + "T": 360.0 }, { - "V": 0.0, - "T": 365.0 + "V": 43.51, + "T": 364.0 }, { - "V": 0.0, - "T": 369.0 + "V": 43.51, + "T": 368.0 }, { - "V": 0.0, - "T": 373.0 + "V": 43.51, + "T": 372.0 }, { - "V": 0.0, - "T": 377.0 + "V": 43.51, + "T": 376.0 }, { - "V": 0.0, - "T": 381.0 + "V": 43.51, + "T": 380.0 }, { - "V": 0.0, - "T": 385.0 + "V": 43.51, + "T": 384.0 }, { - "V": 0.0, - "T": 389.0 + "V": 43.51, + "T": 388.0 }, { - "V": 0.0, - "T": 393.0 + "V": 43.51, + "T": 392.0 }, { - "V": 0.0, - "T": 397.0 + "V": 43.51, + "T": 396.0 }, { - "V": 0.0, - "T": 401.0 + "V": 43.48, + "T": 400.0 }, { - "V": 0.0, - "T": 405.0 + "V": 43.48, + "T": 404.0 }, { - "V": 0.0, - "T": 409.0 + "V": 43.48, + "T": 408.0 }, { - "V": 0.0, - "T": 413.0 + "V": 43.48, + "T": 412.0 }, { - "V": 0.0, - "T": 417.0 + "V": 43.48, + "T": 416.0 }, { - "V": 0.0, - "T": 421.0 + "V": 43.48, + "T": 420.0 }, { - "V": 0.0, - "T": 425.0 + "V": 43.48, + "T": 424.0 }, { - "V": 0.0, - "T": 429.0 + "V": 43.48, + "T": 428.0 }, { - "V": 0.0, - "T": 433.0 + "V": 43.48, + "T": 432.0 }, { - "V": 0.0, - "T": 437.0 + "V": 43.48, + "T": 436.0 }, { - "V": 0.0, - "T": 441.0 + "V": 43.48, + "T": 440.0 }, { - "V": 0.0, - "T": 445.0 + "V": 43.48, + "T": 444.0 }, { - "V": 0.0, - "T": 449.0 + "V": 43.48, + "T": 448.0 }, { - "V": 0.0, - "T": 453.0 + "V": 43.48, + "T": 452.0 }, { - "V": 0.0, - "T": 457.0 + "V": 43.48, + "T": 456.0 }, { - "V": 0.0, - "T": 461.0 + "V": 43.48, + "T": 460.0 }, { - "V": 0.0, - "T": 465.0 + "V": 43.48, + "T": 464.0 }, { - "V": 0.0, - "T": 469.0 + "V": 43.48, + "T": 468.0 }, { - "V": 0.0, - "T": 473.0 + "V": 43.48, + "T": 472.0 }, { - "V": 0.0, - "T": 477.0 + "V": 43.48, + "T": 476.0 }, { - "V": 0.0, - "T": 481.0 + "V": 43.48, + "T": 480.0 }, { - "V": 0.0, - "T": 485.0 + "V": 43.48, + "T": 484.0 }, { - "V": 0.0, - "T": 489.0 + "V": 43.48, + "T": 488.0 }, { - "V": 0.0, - "T": 493.0 + "V": 43.48, + "T": 492.0 }, { - "V": 0.0, - "T": 497.0 + "V": 43.48, + "T": 496.0 }, { - "V": 0.0, - "T": 501.0 + "V": 43.48, + "T": 500.0 }, { - "V": 0.0, - "T": 505.0 + "V": 43.48, + "T": 504.0 }, { - "V": 0.0, - "T": 509.0 + "V": 43.48, + "T": 508.0 }, { - "V": 0.0, - "T": 513.0 + "V": 43.48, + "T": 512.0 }, { - "V": 0.0, - "T": 517.0 + "V": 43.48, + "T": 516.0 }, { - "V": 0.0, - "T": 521.0 + "V": 43.48, + "T": 520.0 }, { - "V": 0.0, - "T": 525.0 + "V": 43.48, + "T": 524.0 }, { - "V": 0.0, - "T": 529.0 + "V": 43.48, + "T": 528.0 }, { - "V": 0.0, - "T": 533.0 + "V": 43.48, + "T": 532.0 }, { - "V": 0.0, - "T": 537.0 + "V": 43.48, + "T": 536.0 }, { - "V": 0.0, - "T": 541.0 + "V": 43.48, + "T": 540.0 }, { - "V": 0.0, - "T": 545.0 + "V": 43.48, + "T": 544.0 }, { - "V": 0.0, - "T": 549.0 + "V": 43.48, + "T": 548.0 }, { - "V": 0.0, - "T": 553.0 + "V": 43.48, + "T": 552.0 }, { - "V": 0.0, - "T": 557.0 + "V": 43.48, + "T": 556.0 }, { - "V": 0.0, - "T": 561.0 + "V": 43.48, + "T": 560.0 }, { - "V": 0.0, - "T": 565.0 + "V": 43.48, + "T": 564.0 }, { - "V": 0.0, - "T": 569.0 + "V": 43.48, + "T": 568.0 }, { - "V": 0.0, - "T": 573.0 + "V": 43.48, + "T": 572.0 }, { - "V": 0.0, - "T": 577.0 + "V": 43.48, + "T": 576.0 }, { - "V": 0.0, - "T": 581.0 + "V": 43.48, + "T": 580.0 }, { - "V": 0.0, - "T": 585.0 + "V": 43.48, + "T": 584.0 }, { - "V": 0.0, - "T": 589.0 + "V": 43.48, + "T": 588.0 }, { - "V": 0.0, - "T": 593.0 + "V": 43.48, + "T": 592.0 }, { - "V": 0.0, - "T": 597.0 + "V": 43.48, + "T": 596.0 } ], - "WorkingSetMB": [ + "AllocRateMB": [ { - "V": 29.91, - "T": 0.0 + "V": 0.04, + "T": 1.0 }, { - "V": 32.86, - "T": 4.0 + "V": 0.02, + "T": 5.0 }, { - "V": 35.36, - "T": 8.0 + "V": 0.02, + "T": 9.0 }, { - "V": 35.58, - "T": 12.0 + "V": 0.02, + "T": 13.0 }, { - "V": 35.71, - "T": 16.0 + "V": 0.02, + "T": 17.0 }, { - "V": 35.82, - "T": 20.0 + "V": 0.02, + "T": 21.0 }, { - "V": 35.94, - "T": 24.0 + "V": 0.02, + "T": 25.0 }, { - "V": 35.94, - "T": 28.0 + "V": 0.02, + "T": 29.0 }, { - "V": 36.3, - "T": 32.0 + "V": 0.02, + "T": 33.0 }, { - "V": 36.35, - "T": 36.0 + "V": 0.02, + "T": 37.0 }, { - "V": 36.46, - "T": 40.0 + "V": 0.02, + "T": 41.0 }, { - "V": 36.57, - "T": 44.0 + "V": 0.02, + "T": 45.0 }, { - "V": 36.67, - "T": 48.0 + "V": 0.02, + "T": 49.0 }, { - "V": 36.76, - "T": 52.0 + "V": 0.02, + "T": 53.0 }, { - "V": 36.86, - "T": 56.0 + "V": 0.02, + "T": 57.0 }, { - "V": 36.98, - "T": 60.0 + "V": 0.02, + "T": 61.0 }, { - "V": 37.14, - "T": 64.0 + "V": 0.02, + "T": 65.0 }, { - "V": 37.18, - "T": 68.0 + "V": 0.02, + "T": 69.0 }, { - "V": 37.29, - "T": 72.0 + "V": 0.02, + "T": 73.0 }, { - "V": 37.38, - "T": 76.0 + "V": 0.02, + "T": 77.0 }, { - "V": 37.49, - "T": 80.0 + "V": 0.02, + "T": 81.0 }, { - "V": 37.58, - "T": 84.0 + "V": 0.02, + "T": 85.0 }, { - "V": 37.7, - "T": 88.0 + "V": 0.02, + "T": 89.0 }, { - "V": 37.79, - "T": 92.0 + "V": 0.02, + "T": 93.0 }, { - "V": 37.9, - "T": 96.0 + "V": 0.02, + "T": 97.0 }, { - "V": 37.99, - "T": 100.0 + "V": 0.02, + "T": 101.0 }, { - "V": 38.09, - "T": 104.0 + "V": 0.02, + "T": 105.0 }, { - "V": 38.2, - "T": 108.0 + "V": 0.03, + "T": 109.0 }, { - "V": 38.28, - "T": 112.0 + "V": 0.02, + "T": 113.0 }, { - "V": 38.39, - "T": 116.0 + "V": 0.02, + "T": 117.0 }, { - "V": 38.5, - "T": 120.0 + "V": 0.03, + "T": 121.0 }, { - "V": 38.6, - "T": 124.0 + "V": 0.03, + "T": 125.0 }, { - "V": 38.7, - "T": 128.0 + "V": 0.03, + "T": 129.0 }, { - "V": 38.8, - "T": 132.0 + "V": 0.03, + "T": 133.0 }, { - "V": 38.9, - "T": 136.0 + "V": 0.02, + "T": 137.0 }, { - "V": 39.0, - "T": 140.0 + "V": 0.03, + "T": 141.0 }, { - "V": 39.1, - "T": 144.0 + "V": 0.03, + "T": 145.0 }, { - "V": 39.2, - "T": 148.0 + "V": 0.03, + "T": 149.0 }, { - "V": 39.3, - "T": 152.0 + "V": 0.03, + "T": 153.0 }, { - "V": 39.4, - "T": 156.0 + "V": 0.02, + "T": 157.0 }, { - "V": 39.5, - "T": 160.0 + "V": 0.02, + "T": 161.0 }, { - "V": 39.61, - "T": 164.0 + "V": 0.02, + "T": 165.0 }, { - "V": 39.71, - "T": 168.0 + "V": 0.02, + "T": 169.0 }, { - "V": 39.81, - "T": 172.0 + "V": 0.02, + "T": 173.0 }, { - "V": 39.89, - "T": 176.0 + "V": 0.02, + "T": 177.0 }, { - "V": 40.01, - "T": 180.0 + "V": 0.02, + "T": 181.0 }, { - "V": 40.11, - "T": 184.0 + "V": 0.02, + "T": 185.0 }, { - "V": 40.21, - "T": 188.0 + "V": 0.02, + "T": 189.0 }, { - "V": 40.31, - "T": 192.0 + "V": 0.02, + "T": 193.0 }, { - "V": 40.41, - "T": 196.0 + "V": 0.03, + "T": 197.0 }, { - "V": 40.5, - "T": 200.0 + "V": 0.02, + "T": 201.0 }, { - "V": 40.61, - "T": 204.0 + "V": 0.03, + "T": 205.0 }, { - "V": 40.7, - "T": 208.0 + "V": 0.03, + "T": 209.0 }, { - "V": 40.81, - "T": 212.0 + "V": 0.03, + "T": 213.0 }, { - "V": 40.9, - "T": 216.0 + "V": 0.03, + "T": 217.0 }, { - "V": 41.01, - "T": 220.0 + "V": 0.02, + "T": 221.0 }, { - "V": 41.11, - "T": 224.0 + "V": 0.02, + "T": 225.0 }, { - "V": 41.21, - "T": 228.0 + "V": 0.03, + "T": 229.0 }, { - "V": 41.32, - "T": 232.0 + "V": 0.03, + "T": 233.0 }, { - "V": 41.41, - "T": 236.0 + "V": 0.03, + "T": 237.0 }, { - "V": 41.5, - "T": 240.0 + "V": 0.03, + "T": 241.0 }, { - "V": 41.61, - "T": 244.0 + "V": 0.02, + "T": 245.0 }, { - "V": 41.71, - "T": 248.0 + "V": 0.02, + "T": 249.0 }, { - "V": 41.8, - "T": 252.0 + "V": 0.01, + "T": 253.0 }, { - "V": 41.91, - "T": 256.0 + "V": 0.02, + "T": 257.0 }, { - "V": 42.01, - "T": 260.0 + "V": 0.02, + "T": 261.0 }, { - "V": 42.11, - "T": 264.0 + "V": 0.02, + "T": 265.0 }, { - "V": 42.21, - "T": 268.0 + "V": 0.02, + "T": 269.0 }, { - "V": 42.3, - "T": 272.0 + "V": 0.02, + "T": 273.0 }, { - "V": 42.43, - "T": 276.0 + "V": 0.03, + "T": 277.0 }, { - "V": 42.53, - "T": 280.0 + "V": 0.03, + "T": 281.0 }, { - "V": 42.62, - "T": 284.0 + "V": 0.03, + "T": 285.0 }, { - "V": 42.71, - "T": 288.0 + "V": 0.03, + "T": 289.0 }, { - "V": 42.83, - "T": 292.0 + "V": 0.02, + "T": 293.0 }, { - "V": 42.91, - "T": 296.0 + "V": 0.02, + "T": 297.0 }, { - "V": 43.19, - "T": 300.0 + "V": 0.03, + "T": 301.0 }, { - "V": 43.27, - "T": 304.0 + "V": 0.03, + "T": 305.0 }, { - "V": 43.38, - "T": 308.0 + "V": 0.03, + "T": 309.0 }, { - "V": 43.48, - "T": 312.0 + "V": 0.03, + "T": 313.0 }, { - "V": 43.58, - "T": 316.0 + "V": 0.02, + "T": 317.0 }, { - "V": 43.69, - "T": 320.0 + "V": 0.03, + "T": 321.0 }, { - "V": 43.77, - "T": 324.0 + "V": 0.03, + "T": 325.0 }, { - "V": 43.88, - "T": 328.0 + "V": 0.03, + "T": 329.0 }, { - "V": 43.98, - "T": 332.0 + "V": 0.02, + "T": 333.0 }, { - "V": 44.08, - "T": 336.0 + "V": 0.02, + "T": 337.0 }, { - "V": 44.19, - "T": 340.0 + "V": 0.02, + "T": 341.0 }, { - "V": 44.29, - "T": 344.0 + "V": 0.02, + "T": 345.0 }, { - "V": 44.39, - "T": 348.0 + "V": 0.02, + "T": 349.0 }, { - "V": 44.48, - "T": 352.0 + "V": 0.02, + "T": 353.0 }, { - "V": 44.57, - "T": 356.0 + "V": 0.02, + "T": 357.0 }, { - "V": 44.67, - "T": 360.0 + "V": 0.03, + "T": 361.0 }, { - "V": 44.79, - "T": 364.0 + "V": 0.02, + "T": 365.0 }, { - "V": 44.89, - "T": 368.0 + "V": 0.03, + "T": 369.0 }, { - "V": 44.98, - "T": 372.0 + "V": 0.03, + "T": 373.0 }, { - "V": 45.08, - "T": 376.0 + "V": 0.03, + "T": 377.0 }, { - "V": 45.19, - "T": 380.0 + "V": 0.03, + "T": 381.0 }, { - "V": 45.27, - "T": 384.0 + "V": 0.02, + "T": 385.0 }, { - "V": 45.39, - "T": 388.0 + "V": 0.02, + "T": 389.0 }, { - "V": 45.49, - "T": 392.0 + "V": 0.03, + "T": 393.0 }, { - "V": 45.59, - "T": 396.0 + "V": 0.03, + "T": 397.0 }, { - "V": 45.64, - "T": 400.0 + "V": 0.03, + "T": 401.0 }, { - "V": 45.75, - "T": 404.0 + "V": 0.03, + "T": 405.0 }, { - "V": 45.85, - "T": 408.0 + "V": 0.02, + "T": 409.0 }, { - "V": 45.94, - "T": 412.0 + "V": 0.02, + "T": 413.0 }, { - "V": 46.06, - "T": 416.0 + "V": 0.02, + "T": 417.0 }, { - "V": 46.14, - "T": 420.0 + "V": 0.02, + "T": 421.0 }, { - "V": 46.25, - "T": 424.0 + "V": 0.02, + "T": 425.0 }, { - "V": 46.34, - "T": 428.0 + "V": 0.02, + "T": 429.0 }, { - "V": 46.44, - "T": 432.0 + "V": 0.02, + "T": 433.0 }, { - "V": 46.56, - "T": 436.0 + "V": 0.02, + "T": 437.0 }, { - "V": 46.65, - "T": 440.0 + "V": 0.02, + "T": 441.0 }, { - "V": 46.77, - "T": 444.0 + "V": 0.02, + "T": 445.0 }, { - "V": 46.86, - "T": 448.0 + "V": 0.02, + "T": 449.0 }, { - "V": 46.95, - "T": 452.0 + "V": 0.03, + "T": 453.0 }, { - "V": 47.06, - "T": 456.0 + "V": 0.02, + "T": 457.0 }, { - "V": 47.15, - "T": 460.0 + "V": 0.02, + "T": 461.0 }, { - "V": 47.27, - "T": 464.0 + "V": 0.03, + "T": 465.0 }, { - "V": 47.35, - "T": 468.0 + "V": 0.03, + "T": 469.0 }, { - "V": 47.46, - "T": 472.0 + "V": 0.03, + "T": 473.0 }, { - "V": 47.56, - "T": 476.0 + "V": 0.03, + "T": 477.0 }, { - "V": 47.66, - "T": 480.0 + "V": 0.02, + "T": 481.0 }, { - "V": 47.77, - "T": 484.0 + "V": 0.03, + "T": 485.0 }, { - "V": 47.87, - "T": 488.0 + "V": 0.03, + "T": 489.0 }, { - "V": 47.96, - "T": 492.0 + "V": 0.03, + "T": 493.0 }, { - "V": 48.06, - "T": 496.0 + "V": 0.03, + "T": 497.0 }, { - "V": 48.15, - "T": 500.0 + "V": 0.02, + "T": 501.0 }, { - "V": 48.27, - "T": 504.0 + "V": 0.02, + "T": 505.0 }, { - "V": 48.38, - "T": 508.0 + "V": 0.02, + "T": 509.0 }, { - "V": 48.47, - "T": 512.0 + "V": 0.02, + "T": 513.0 }, { - "V": 48.57, - "T": 516.0 + "V": 0.02, + "T": 517.0 }, { - "V": 48.67, - "T": 520.0 + "V": 0.02, + "T": 521.0 }, { - "V": 48.77, - "T": 524.0 + "V": 0.02, + "T": 525.0 }, { - "V": 48.88, - "T": 528.0 + "V": 0.02, + "T": 529.0 }, { - "V": 48.96, - "T": 532.0 + "V": 0.02, + "T": 533.0 }, { - "V": 49.07, - "T": 536.0 + "V": 0.02, + "T": 537.0 }, { - "V": 49.16, - "T": 540.0 + "V": 0.02, + "T": 541.0 }, { - "V": 49.27, - "T": 544.0 + "V": 0.02, + "T": 545.0 }, { - "V": 49.38, - "T": 548.0 + "V": 0.02, + "T": 549.0 }, { - "V": 49.47, - "T": 552.0 + "V": 0.02, + "T": 553.0 }, { - "V": 49.58, - "T": 556.0 + "V": 0.02, + "T": 557.0 }, { - "V": 49.67, - "T": 560.0 + "V": 0.02, + "T": 561.0 }, { - "V": 49.77, - "T": 564.0 + "V": 0.02, + "T": 565.0 }, { - "V": 49.86, - "T": 568.0 + "V": 0.02, + "T": 569.0 }, { - "V": 49.97, - "T": 572.0 + "V": 0.02, + "T": 573.0 }, { - "V": 50.08, - "T": 576.0 + "V": 0.02, + "T": 577.0 }, { - "V": 50.18, - "T": 580.0 + "V": 0.02, + "T": 581.0 }, { - "V": 50.27, - "T": 584.0 + "V": 0.02, + "T": 585.0 }, { - "V": 50.38, - "T": 588.0 + "V": 0.02, + "T": 589.0 }, { - "V": 51.13, - "T": 592.0 + "V": 0.02, + "T": 593.0 }, { - "V": 51.13, - "T": 596.0 + "V": 0.02, + "T": 597.0 } ], - "AllocRateMB": [ + "OpsPerSec": [ { - "V": 0.04, - "T": 1.0 + "V": 1406.0, + "T": 0.0 }, { - "V": 0.02, - "T": 5.0 + "V": 1404.0, + "T": 4.0 }, { - "V": 0.02, - "T": 9.0 + "V": 1156.0, + "T": 8.0 }, { - "V": 0.02, - "T": 13.0 + "V": 1190.0, + "T": 12.0 }, { - "V": 0.02, - "T": 17.0 + "V": 1163.0, + "T": 16.0 }, { - "V": 0.02, - "T": 21.0 + "V": 1173.0, + "T": 20.0 }, { - "V": 0.02, - "T": 25.0 + "V": 1131.0, + "T": 24.0 }, { - "V": 0.03, - "T": 29.0 + "V": 1167.0, + "T": 28.0 }, { - "V": 0.02, - "T": 33.0 + "V": 1165.0, + "T": 32.0 }, { - "V": 0.03, - "T": 37.0 + "V": 1185.0, + "T": 36.0 }, { - "V": 0.02, - "T": 41.0 + "V": 1166.0, + "T": 40.0 }, { - "V": 0.02, - "T": 45.0 + "V": 1168.0, + "T": 44.0 }, { - "V": 0.02, - "T": 49.0 + "V": 1175.0, + "T": 48.0 }, { - "V": 0.02, - "T": 53.0 + "V": 1179.0, + "T": 52.0 }, { - "V": 0.02, - "T": 57.0 + "V": 1166.0, + "T": 56.0 }, { - "V": 0.03, - "T": 61.0 + "V": 1156.0, + "T": 60.0 }, { - "V": 0.02, - "T": 65.0 + "V": 1161.0, + "T": 64.0 }, { - "V": 0.02, - "T": 69.0 + "V": 1176.0, + "T": 68.0 }, { - "V": 0.02, - "T": 73.0 + "V": 1168.0, + "T": 72.0 }, { - "V": 0.02, - "T": 77.0 + "V": 1174.0, + "T": 76.0 }, { - "V": 0.02, - "T": 81.0 + "V": 1177.0, + "T": 80.0 }, { - "V": 0.03, - "T": 85.0 + "V": 1174.0, + "T": 84.0 }, { - "V": 0.02, - "T": 89.0 + "V": 1176.0, + "T": 88.0 }, { - "V": 0.02, - "T": 93.0 + "V": 1172.0, + "T": 92.0 }, { - "V": 0.02, - "T": 97.0 + "V": 1184.0, + "T": 96.0 }, { - "V": 0.02, - "T": 101.0 + "V": 1175.0, + "T": 100.0 }, { - "V": 0.02, - "T": 105.0 + "V": 1175.0, + "T": 104.0 }, { - "V": 0.02, - "T": 109.0 + "V": 1179.0, + "T": 108.0 }, { - "V": 0.04, - "T": 113.0 + "V": 1177.0, + "T": 112.0 }, { - "V": 0.03, - "T": 117.0 + "V": 1165.0, + "T": 116.0 }, { - "V": 0.02, - "T": 121.0 + "V": 1196.0, + "T": 120.0 }, { - "V": 0.02, - "T": 125.0 + "V": 1177.0, + "T": 124.0 }, { - "V": 0.02, - "T": 129.0 + "V": 1179.0, + "T": 128.0 }, { - "V": 0.03, - "T": 133.0 + "V": 1182.0, + "T": 132.0 }, { - "V": 0.02, - "T": 137.0 + "V": 1194.0, + "T": 136.0 }, { - "V": 0.02, - "T": 141.0 + "V": 1173.0, + "T": 140.0 }, { - "V": 0.03, - "T": 145.0 + "V": 1172.0, + "T": 144.0 }, { - "V": 0.03, - "T": 149.0 + "V": 1195.0, + "T": 148.0 }, { - "V": 0.02, - "T": 153.0 + "V": 1174.0, + "T": 152.0 }, { - "V": 0.03, - "T": 157.0 + "V": 1165.0, + "T": 156.0 }, { - "V": 0.02, - "T": 161.0 + "V": 1179.0, + "T": 160.0 }, { - "V": 0.02, - "T": 165.0 + "V": 1177.0, + "T": 164.0 }, { - "V": 0.02, - "T": 169.0 + "V": 1171.0, + "T": 168.0 }, { - "V": 0.02, - "T": 173.0 + "V": 1176.0, + "T": 172.0 }, { - "V": 0.03, - "T": 177.0 + "V": 1190.0, + "T": 176.0 }, { - "V": 0.02, - "T": 181.0 + "V": 1172.0, + "T": 180.0 }, { - "V": 0.02, - "T": 185.0 + "V": 1167.0, + "T": 184.0 }, { - "V": 0.02, - "T": 189.0 + "V": 1173.0, + "T": 188.0 }, { - "V": 0.02, - "T": 193.0 + "V": 1173.0, + "T": 192.0 }, { - "V": 0.02, - "T": 197.0 + "V": 1167.0, + "T": 196.0 }, { - "V": 0.03, - "T": 201.0 + "V": 1169.0, + "T": 200.0 }, { - "V": 0.02, - "T": 205.0 + "V": 1174.0, + "T": 204.0 }, { - "V": 0.02, - "T": 209.0 + "V": 1171.0, + "T": 208.0 }, { - "V": 0.02, - "T": 213.0 + "V": 1194.0, + "T": 212.0 }, { - "V": 0.02, - "T": 217.0 + "V": 1178.0, + "T": 216.0 }, { - "V": 0.02, - "T": 221.0 + "V": 1171.0, + "T": 220.0 }, { - "V": 0.03, - "T": 225.0 + "V": 1196.0, + "T": 224.0 }, { - "V": 0.02, - "T": 229.0 + "V": 1170.0, + "T": 228.0 }, { - "V": 0.02, - "T": 233.0 + "V": 1170.0, + "T": 232.0 }, { - "V": 0.03, - "T": 237.0 + "V": 1174.0, + "T": 236.0 }, { - "V": 0.03, - "T": 241.0 + "V": 1172.0, + "T": 240.0 }, { - "V": 0.02, - "T": 245.0 + "V": 1173.0, + "T": 244.0 }, { - "V": 0.03, - "T": 249.0 + "V": 1175.0, + "T": 248.0 }, { - "V": 0.03, - "T": 253.0 + "V": 1167.0, + "T": 252.0 }, { - "V": 0.02, - "T": 257.0 + "V": 1173.0, + "T": 256.0 }, { - "V": 0.03, - "T": 261.0 + "V": 1174.0, + "T": 260.0 }, { - "V": 0.03, - "T": 265.0 + "V": 1168.0, + "T": 264.0 }, { - "V": 0.03, - "T": 269.0 + "V": 1174.0, + "T": 268.0 }, { - "V": 0.03, - "T": 273.0 + "V": 1173.0, + "T": 272.0 }, { - "V": 0.02, - "T": 277.0 + "V": 1167.0, + "T": 276.0 }, { - "V": 0.02, - "T": 281.0 + "V": 1172.0, + "T": 280.0 }, { - "V": 0.02, - "T": 285.0 + "V": 1175.0, + "T": 284.0 }, { - "V": 0.02, - "T": 289.0 + "V": 1168.0, + "T": 288.0 }, { - "V": 0.02, - "T": 293.0 + "V": 1177.0, + "T": 292.0 }, { - "V": 0.03, - "T": 297.0 + "V": 1161.0, + "T": 296.0 }, { - "V": 0.02, - "T": 301.0 + "V": 1165.0, + "T": 300.0 }, { - "V": 0.02, - "T": 305.0 + "V": 1176.0, + "T": 304.0 }, { - "V": 0.02, - "T": 309.0 + "V": 1160.0, + "T": 308.0 }, { - "V": 0.02, - "T": 313.0 + "V": 1168.0, + "T": 312.0 }, { - "V": 0.02, - "T": 317.0 + "V": 1189.0, + "T": 316.0 }, { - "V": 0.02, - "T": 321.0 + "V": 1175.0, + "T": 320.0 }, { - "V": 0.02, - "T": 325.0 + "V": 1175.0, + "T": 324.0 }, { - "V": 0.03, - "T": 329.0 + "V": 1169.0, + "T": 328.0 }, { - "V": 0.02, - "T": 333.0 + "V": 1179.0, + "T": 332.0 }, { - "V": 0.03, - "T": 337.0 + "V": 1165.0, + "T": 336.0 }, { - "V": 0.02, - "T": 341.0 + "V": 1175.0, + "T": 340.0 }, { - "V": 0.02, - "T": 345.0 + "V": 1178.0, + "T": 344.0 }, { - "V": 0.02, - "T": 349.0 + "V": 1146.0, + "T": 348.0 }, { - "V": 0.03, - "T": 353.0 + "V": 1148.0, + "T": 352.0 }, { - "V": 0.02, - "T": 357.0 + "V": 1139.0, + "T": 356.0 }, { - "V": 0.04, - "T": 361.0 + "V": 1147.0, + "T": 360.0 }, { - "V": 0.02, - "T": 365.0 + "V": 1151.0, + "T": 364.0 }, { - "V": 0.02, - "T": 369.0 + "V": 1171.0, + "T": 368.0 }, { - "V": 0.03, - "T": 373.0 + "V": 1133.0, + "T": 372.0 }, { - "V": 0.03, - "T": 377.0 + "V": 1147.0, + "T": 376.0 }, { - "V": 0.03, - "T": 381.0 + "V": 1158.0, + "T": 380.0 }, { - "V": 0.04, - "T": 385.0 + "V": 1153.0, + "T": 384.0 }, { - "V": 0.03, - "T": 389.0 + "V": 1152.0, + "T": 388.0 }, { - "V": 0.02, - "T": 393.0 + "V": 1139.0, + "T": 392.0 }, { - "V": 0.02, - "T": 397.0 + "V": 1148.0, + "T": 396.0 }, { - "V": 0.02, - "T": 401.0 + "V": 1147.0, + "T": 400.0 }, { - "V": 0.02, - "T": 405.0 + "V": 1167.0, + "T": 404.0 }, { - "V": 0.02, - "T": 409.0 + "V": 1151.0, + "T": 408.0 }, { - "V": 0.02, - "T": 413.0 + "V": 1172.0, + "T": 412.0 }, { - "V": 0.02, - "T": 417.0 + "V": 1153.0, + "T": 416.0 }, { - "V": 0.02, - "T": 421.0 + "V": 1151.0, + "T": 420.0 }, { - "V": 0.02, - "T": 425.0 + "V": 1171.0, + "T": 424.0 }, { - "V": 0.03, - "T": 429.0 + "V": 1174.0, + "T": 428.0 }, { - "V": 0.02, - "T": 433.0 + "V": 1173.0, + "T": 432.0 }, { - "V": 0.02, - "T": 437.0 + "V": 1157.0, + "T": 436.0 }, { - "V": 0.02, - "T": 441.0 + "V": 1158.0, + "T": 440.0 }, { - "V": 0.02, - "T": 445.0 + "V": 1168.0, + "T": 444.0 }, { - "V": 0.03, - "T": 449.0 + "V": 1158.0, + "T": 448.0 }, { - "V": 0.02, - "T": 453.0 + "V": 1171.0, + "T": 452.0 }, { - "V": 0.03, - "T": 457.0 + "V": 1149.0, + "T": 456.0 }, { - "V": 0.04, - "T": 461.0 + "V": 1183.0, + "T": 460.0 }, { - "V": 0.02, - "T": 465.0 + "V": 1160.0, + "T": 464.0 }, { - "V": 0.03, - "T": 469.0 + "V": 1172.0, + "T": 468.0 }, { - "V": 0.03, - "T": 473.0 + "V": 1174.0, + "T": 472.0 }, { - "V": 0.03, - "T": 477.0 + "V": 1187.0, + "T": 476.0 }, { - "V": 0.02, - "T": 481.0 + "V": 1169.0, + "T": 480.0 }, { - "V": 0.03, - "T": 485.0 + "V": 1163.0, + "T": 484.0 }, { - "V": 0.02, - "T": 489.0 + "V": 1177.0, + "T": 488.0 }, { - "V": 0.03, - "T": 493.0 + "V": 1170.0, + "T": 492.0 }, { - "V": 0.03, - "T": 497.0 + "V": 1166.0, + "T": 496.0 }, { - "V": 0.04, - "T": 501.0 + "V": 1180.0, + "T": 500.0 }, { - "V": 0.03, - "T": 505.0 + "V": 1170.0, + "T": 504.0 }, { - "V": 0.02, - "T": 509.0 + "V": 1167.0, + "T": 508.0 }, { - "V": 0.02, - "T": 513.0 + "V": 1190.0, + "T": 512.0 }, { - "V": 0.02, - "T": 517.0 + "V": 1162.0, + "T": 516.0 }, { - "V": 0.02, - "T": 521.0 + "V": 1179.0, + "T": 520.0 }, { - "V": 0.02, - "T": 525.0 + "V": 1176.0, + "T": 524.0 }, { - "V": 0.02, - "T": 529.0 + "V": 1160.0, + "T": 528.0 }, { - "V": 0.02, - "T": 533.0 + "V": 1170.0, + "T": 532.0 }, { - "V": 0.02, - "T": 537.0 + "V": 1154.0, + "T": 536.0 }, { - "V": 0.02, - "T": 541.0 + "V": 1173.0, + "T": 540.0 }, { - "V": 0.02, - "T": 545.0 + "V": 1178.0, + "T": 544.0 }, { - "V": 0.02, - "T": 549.0 + "V": 1169.0, + "T": 548.0 }, { - "V": 0.02, - "T": 553.0 + "V": 1174.0, + "T": 552.0 }, { - "V": 0.02, - "T": 557.0 + "V": 1165.0, + "T": 556.0 }, { - "V": 0.02, - "T": 561.0 + "V": 1173.0, + "T": 560.0 }, { - "V": 0.03, - "T": 565.0 + "V": 1169.0, + "T": 564.0 }, { - "V": 0.03, - "T": 569.0 + "V": 1175.0, + "T": 568.0 }, { - "V": 0.03, - "T": 573.0 + "V": 1171.0, + "T": 572.0 }, { - "V": 0.02, - "T": 577.0 + "V": 1186.0, + "T": 576.0 }, { - "V": 0.02, - "T": 581.0 + "V": 1171.0, + "T": 580.0 }, { - "V": 0.03, - "T": 585.0 + "V": 1189.0, + "T": 584.0 }, { - "V": 0.03, - "T": 589.0 + "V": 1173.0, + "T": 588.0 }, { - "V": 0.02, - "T": 593.0 + "V": 1162.0, + "T": 592.0 }, { - "V": 0.02, - "T": 597.0 + "V": 1171.0, + "T": 596.0 } ], - "OpsPerSec": [ + "Gen0PerSec": [ { - "V": 1379.0, - "T": 0.0 + "V": 0.0, + "T": 1.0 }, { - "V": 1360.0, - "T": 4.0 + "V": 0.0, + "T": 5.0 }, { - "V": 1155.0, - "T": 8.0 + "V": 0.0, + "T": 9.0 }, { - "V": 1143.0, - "T": 12.0 + "V": 0.0, + "T": 13.0 }, { - "V": 1146.0, - "T": 16.0 + "V": 0.0, + "T": 17.0 }, { - "V": 1159.0, - "T": 20.0 + "V": 0.0, + "T": 21.0 }, { - "V": 1058.0, - "T": 24.0 + "V": 0.0, + "T": 25.0 }, { - "V": 1160.0, - "T": 28.0 + "V": 0.0, + "T": 29.0 }, { - "V": 1112.0, - "T": 32.0 + "V": 0.0, + "T": 33.0 }, { - "V": 1157.0, - "T": 36.0 + "V": 0.0, + "T": 37.0 }, { - "V": 1132.0, - "T": 40.0 + "V": 0.0, + "T": 41.0 }, { - "V": 1164.0, - "T": 44.0 + "V": 0.0, + "T": 45.0 }, { - "V": 1099.0, - "T": 48.0 + "V": 0.0, + "T": 49.0 }, { - "V": 1164.0, - "T": 52.0 + "V": 0.0, + "T": 53.0 }, { - "V": 1168.0, - "T": 56.0 + "V": 0.0, + "T": 57.0 }, { - "V": 1164.0, - "T": 60.0 + "V": 0.0, + "T": 61.0 }, { - "V": 1153.0, - "T": 64.0 + "V": 0.0, + "T": 65.0 }, { - "V": 1170.0, - "T": 68.0 + "V": 0.0, + "T": 69.0 }, { - "V": 1173.0, - "T": 72.0 + "V": 0.0, + "T": 73.0 }, { - "V": 1169.0, - "T": 76.0 + "V": 0.0, + "T": 77.0 }, { - "V": 1170.0, - "T": 80.0 + "V": 0.0, + "T": 81.0 }, { - "V": 1176.0, - "T": 84.0 + "V": 0.0, + "T": 85.0 }, { - "V": 1167.0, - "T": 88.0 + "V": 0.0, + "T": 89.0 }, { - "V": 1172.0, - "T": 92.0 + "V": 0.0, + "T": 93.0 }, { - "V": 1174.0, - "T": 96.0 + "V": 0.0, + "T": 97.0 }, { - "V": 1193.0, - "T": 100.0 + "V": 0.0, + "T": 101.0 }, { - "V": 1183.0, - "T": 104.0 + "V": 0.0, + "T": 105.0 }, { - "V": 1178.0, - "T": 108.0 + "V": 0.0, + "T": 109.0 }, { - "V": 1136.0, - "T": 112.0 + "V": 0.0, + "T": 113.0 }, { - "V": 1171.0, - "T": 116.0 + "V": 0.0, + "T": 117.0 }, { - "V": 1165.0, - "T": 120.0 + "V": 0.0, + "T": 121.0 }, { - "V": 1171.0, - "T": 124.0 + "V": 0.0, + "T": 125.0 }, { - "V": 1175.0, - "T": 128.0 + "V": 0.0, + "T": 129.0 }, { - "V": 1140.0, - "T": 132.0 + "V": 0.0, + "T": 133.0 }, { - "V": 1161.0, - "T": 136.0 + "V": 0.0, + "T": 137.0 }, { - "V": 1197.0, - "T": 140.0 + "V": 0.0, + "T": 141.0 }, { - "V": 1174.0, - "T": 144.0 + "V": 0.0, + "T": 145.0 }, { - "V": 1174.0, - "T": 148.0 + "V": 0.0, + "T": 149.0 }, { - "V": 1169.0, - "T": 152.0 + "V": 0.0, + "T": 153.0 }, { - "V": 1172.0, - "T": 156.0 + "V": 0.0, + "T": 157.0 }, { - "V": 1168.0, - "T": 160.0 + "V": 0.0, + "T": 161.0 }, { - "V": 1147.0, - "T": 164.0 + "V": 0.0, + "T": 165.0 }, { - "V": 1159.0, - "T": 168.0 + "V": 0.0, + "T": 169.0 }, { - "V": 1134.0, - "T": 172.0 + "V": 0.0, + "T": 173.0 }, { - "V": 1140.0, - "T": 176.0 + "V": 0.0, + "T": 177.0 }, { - "V": 1144.0, - "T": 180.0 + "V": 0.0, + "T": 181.0 }, { - "V": 1165.0, - "T": 184.0 + "V": 0.0, + "T": 185.0 }, { - "V": 1161.0, - "T": 188.0 + "V": 0.0, + "T": 189.0 }, { - "V": 1159.0, - "T": 192.0 + "V": 0.0, + "T": 193.0 }, { - "V": 1166.0, - "T": 196.0 + "V": 0.0, + "T": 197.0 }, { - "V": 1171.0, - "T": 200.0 + "V": 0.0, + "T": 201.0 }, { - "V": 1180.0, - "T": 204.0 + "V": 0.0, + "T": 205.0 }, { - "V": 1171.0, - "T": 208.0 + "V": 0.0, + "T": 209.0 }, { - "V": 1168.0, - "T": 212.0 + "V": 0.0, + "T": 213.0 }, { - "V": 1174.0, - "T": 216.0 + "V": 0.0, + "T": 217.0 }, { - "V": 1142.0, - "T": 220.0 + "V": 0.0, + "T": 221.0 }, { - "V": 1178.0, - "T": 224.0 + "V": 0.0, + "T": 225.0 }, { - "V": 1174.0, - "T": 228.0 + "V": 0.0, + "T": 229.0 }, { - "V": 1185.0, - "T": 232.0 + "V": 0.0, + "T": 233.0 }, { - "V": 1171.0, - "T": 236.0 + "V": 0.0, + "T": 237.0 }, { - "V": 1168.0, - "T": 240.0 + "V": 0.0, + "T": 241.0 }, { - "V": 1175.0, - "T": 244.0 + "V": 0.0, + "T": 245.0 }, { - "V": 1163.0, - "T": 248.0 + "V": 0.0, + "T": 249.0 }, { - "V": 1176.0, - "T": 252.0 + "V": 1.0, + "T": 253.0 }, { - "V": 1162.0, - "T": 256.0 + "V": 0.0, + "T": 257.0 }, { - "V": 1183.0, - "T": 260.0 + "V": 0.0, + "T": 261.0 }, { - "V": 1167.0, - "T": 264.0 + "V": 0.0, + "T": 265.0 }, { - "V": 1178.0, - "T": 268.0 + "V": 0.0, + "T": 269.0 }, { - "V": 1173.0, - "T": 272.0 + "V": 0.0, + "T": 273.0 }, { - "V": 1193.0, - "T": 276.0 + "V": 0.0, + "T": 277.0 }, { - "V": 1174.0, - "T": 280.0 + "V": 0.0, + "T": 281.0 }, { - "V": 1170.0, - "T": 284.0 + "V": 0.0, + "T": 285.0 }, { - "V": 1172.0, - "T": 288.0 + "V": 0.0, + "T": 289.0 }, { - "V": 1166.0, - "T": 292.0 + "V": 0.0, + "T": 293.0 }, { - "V": 1173.0, - "T": 296.0 + "V": 0.0, + "T": 297.0 }, { - "V": 1178.0, - "T": 300.0 + "V": 0.0, + "T": 301.0 }, { - "V": 1168.0, - "T": 304.0 + "V": 0.0, + "T": 305.0 }, { - "V": 1143.0, - "T": 308.0 + "V": 0.0, + "T": 309.0 }, { - "V": 1188.0, - "T": 312.0 + "V": 0.0, + "T": 313.0 }, { - "V": 1174.0, - "T": 316.0 + "V": 0.0, + "T": 317.0 }, { - "V": 1193.0, - "T": 320.0 + "V": 0.0, + "T": 321.0 }, { - "V": 1163.0, - "T": 324.0 + "V": 0.0, + "T": 325.0 }, { - "V": 1170.0, - "T": 328.0 + "V": 0.0, + "T": 329.0 }, { - "V": 1174.0, - "T": 332.0 + "V": 0.0, + "T": 333.0 }, { - "V": 1175.0, - "T": 336.0 + "V": 0.0, + "T": 337.0 }, { - "V": 1148.0, - "T": 340.0 + "V": 0.0, + "T": 341.0 }, { - "V": 1160.0, - "T": 344.0 + "V": 0.0, + "T": 345.0 }, { - "V": 1158.0, - "T": 348.0 + "V": 0.0, + "T": 349.0 }, { - "V": 1157.0, - "T": 352.0 + "V": 0.0, + "T": 353.0 }, { - "V": 1152.0, - "T": 356.0 + "V": 0.0, + "T": 357.0 }, { - "V": 1161.0, - "T": 360.0 + "V": 0.0, + "T": 361.0 }, { - "V": 1167.0, - "T": 364.0 + "V": 0.0, + "T": 365.0 }, { - "V": 1150.0, - "T": 368.0 + "V": 0.0, + "T": 369.0 }, { - "V": 1173.0, - "T": 372.0 + "V": 0.0, + "T": 373.0 }, { - "V": 1195.0, - "T": 376.0 + "V": 0.0, + "T": 377.0 }, { - "V": 1174.0, - "T": 380.0 + "V": 0.0, + "T": 381.0 }, { - "V": 1178.0, - "T": 384.0 + "V": 0.0, + "T": 385.0 }, { - "V": 1153.0, - "T": 388.0 + "V": 0.0, + "T": 389.0 }, { - "V": 1177.0, - "T": 392.0 + "V": 0.0, + "T": 393.0 }, { - "V": 1175.0, - "T": 396.0 + "V": 0.0, + "T": 397.0 }, { - "V": 1176.0, - "T": 400.0 + "V": 0.0, + "T": 401.0 }, { - "V": 1173.0, - "T": 404.0 + "V": 0.0, + "T": 405.0 }, { - "V": 1193.0, - "T": 408.0 + "V": 0.0, + "T": 409.0 }, { - "V": 1154.0, - "T": 412.0 + "V": 0.0, + "T": 413.0 }, { - "V": 1164.0, - "T": 416.0 + "V": 0.0, + "T": 417.0 }, { - "V": 1166.0, - "T": 420.0 + "V": 0.0, + "T": 421.0 }, { - "V": 1176.0, - "T": 424.0 + "V": 0.0, + "T": 425.0 }, { - "V": 1172.0, - "T": 428.0 + "V": 0.0, + "T": 429.0 }, { - "V": 1174.0, - "T": 432.0 + "V": 0.0, + "T": 433.0 }, { - "V": 1174.0, - "T": 436.0 + "V": 0.0, + "T": 437.0 }, { - "V": 1176.0, - "T": 440.0 + "V": 0.0, + "T": 441.0 }, { - "V": 1175.0, - "T": 444.0 + "V": 0.0, + "T": 445.0 }, { - "V": 1163.0, - "T": 448.0 + "V": 0.0, + "T": 449.0 }, { - "V": 1177.0, - "T": 452.0 + "V": 0.0, + "T": 453.0 }, { - "V": 1160.0, - "T": 456.0 + "V": 0.0, + "T": 457.0 }, { - "V": 1178.0, - "T": 460.0 + "V": 0.0, + "T": 461.0 }, { - "V": 1169.0, - "T": 464.0 + "V": 0.0, + "T": 465.0 }, { - "V": 1174.0, - "T": 468.0 + "V": 0.0, + "T": 469.0 }, { - "V": 1167.0, - "T": 472.0 + "V": 0.0, + "T": 473.0 }, { - "V": 1186.0, - "T": 476.0 + "V": 0.0, + "T": 477.0 }, { - "V": 1149.0, - "T": 480.0 + "V": 0.0, + "T": 481.0 }, { - "V": 1174.0, - "T": 484.0 + "V": 0.0, + "T": 485.0 }, { - "V": 1144.0, - "T": 488.0 + "V": 0.0, + "T": 489.0 }, { - "V": 1168.0, - "T": 492.0 + "V": 0.0, + "T": 493.0 }, { - "V": 1173.0, - "T": 496.0 + "V": 0.0, + "T": 497.0 }, { - "V": 1157.0, - "T": 500.0 + "V": 0.0, + "T": 501.0 }, { - "V": 1154.0, - "T": 504.0 + "V": 0.0, + "T": 505.0 }, { - "V": 1158.0, - "T": 508.0 + "V": 0.0, + "T": 509.0 }, { - "V": 1157.0, - "T": 512.0 + "V": 0.0, + "T": 513.0 }, { - "V": 1189.0, - "T": 516.0 + "V": 0.0, + "T": 517.0 }, { - "V": 1152.0, - "T": 520.0 + "V": 0.0, + "T": 521.0 }, { - "V": 1169.0, - "T": 524.0 + "V": 0.0, + "T": 525.0 }, { - "V": 1177.0, - "T": 528.0 + "V": 0.0, + "T": 529.0 }, { - "V": 1147.0, - "T": 532.0 + "V": 0.0, + "T": 533.0 }, { - "V": 1145.0, - "T": 536.0 + "V": 0.0, + "T": 537.0 }, { - "V": 1158.0, - "T": 540.0 + "V": 0.0, + "T": 541.0 }, { - "V": 1168.0, - "T": 544.0 + "V": 0.0, + "T": 545.0 }, { - "V": 1166.0, - "T": 548.0 + "V": 0.0, + "T": 549.0 }, { - "V": 1156.0, - "T": 552.0 + "V": 0.0, + "T": 553.0 }, { - "V": 1177.0, - "T": 556.0 + "V": 0.0, + "T": 557.0 }, { - "V": 1165.0, - "T": 560.0 + "V": 0.0, + "T": 561.0 }, { - "V": 1173.0, - "T": 564.0 + "V": 0.0, + "T": 565.0 }, { - "V": 1146.0, - "T": 568.0 + "V": 0.0, + "T": 569.0 }, { - "V": 1167.0, - "T": 572.0 + "V": 0.0, + "T": 573.0 }, { - "V": 1168.0, - "T": 576.0 + "V": 0.0, + "T": 577.0 }, { - "V": 1167.0, - "T": 580.0 + "V": 0.0, + "T": 581.0 }, { - "V": 1165.0, - "T": 584.0 + "V": 0.0, + "T": 585.0 }, { - "V": 1167.0, - "T": 588.0 + "V": 0.0, + "T": 589.0 }, { - "V": 1157.0, - "T": 592.0 + "V": 0.0, + "T": 593.0 }, { - "V": 1184.0, - "T": 596.0 + "V": 0.0, + "T": 597.0 } - ], - "Gen0PerSec": [ + ] + } + }, + { + "ScenarioId": "dotllm-serve", + "ScenarioName": "dotLLM: zero-alloc-inference HTTP server (github.com/kkokosa/dotLLM)", + "GcModeId": "workstation", + "GcModeName": "Workstation GC", + "DurationSeconds": 600, + "Summary": { + "OperationsTotal": 1461.0, + "OpsPerSecondOverall": 2.435, + "TotalAllocatedBytes": 51541256.0, + "Gen0Collections": 1, + "Gen1Collections": 2, + "Gen2Collections": 1, + "WorkingSetBytes": 340824064.0, + "PeakWorkingSetBytes": 340824064.0, + "HeapSizeBytes": null, + "TotalCommittedBytes": 52637696.0, + "GcName": "Workstation GC" + }, + "PauseTimePctStats": { + "Avg": 0.004798344370860929, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 2.2687000000000004, + "Min": 0.0, + "Count": 604 + }, + "PauseTimeMsStats": { + "Avg": 0.047983443708609276, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 22.687, + "Min": 0.0, + "Count": 604 + }, + "WorkingSetStats": { + "Avg": 336567629.43471074, + "P50": 337678336.0, + "P90": 340631552.0, + "P99": 340807680.0, + "Max": 340824064.0, + "Min": 321630208.0, + "Count": 605 + }, + "AllocRateMBStats": { + "Avg": 0.08138008622933697, + "P50": 0.07769775390625, + "P90": 0.12439727783203125, + "P99": 0.15163421630859375, + "Max": 0.16262054443359375, + "Min": 0.0, + "Count": 604 + }, + "OpsPerSecStats": { + "Avg": 2.4889267461669506, + "P50": 2.0, + "P90": 4.0, + "P99": 5.0, + "Max": 6.0, + "Min": 1.0, + "Count": 587 + }, + "TimeSeries": { + "PauseTimePct": [ { "V": 0.0, "T": 1.0 }, { "V": 0.0, - "T": 5.0 + "T": 6.0 }, { "V": 0.0, - "T": 9.0 + "T": 11.0 }, { "V": 0.0, - "T": 13.0 + "T": 16.0 }, { "V": 0.0, - "T": 17.0 + "T": 21.0 }, { "V": 0.0, - "T": 21.0 + "T": 26.0 }, { "V": 0.0, - "T": 25.0 + "T": 31.0 }, { "V": 0.0, - "T": 29.0 + "T": 36.0 }, { "V": 0.0, - "T": 33.0 + "T": 41.0 }, { "V": 0.0, - "T": 37.0 + "T": 46.0 }, { "V": 0.0, - "T": 41.0 + "T": 51.0 }, { "V": 0.0, - "T": 45.0 + "T": 56.0 }, { "V": 0.0, - "T": 49.0 + "T": 61.0 }, { "V": 0.0, - "T": 53.0 + "T": 66.0 }, { "V": 0.0, - "T": 57.0 + "T": 71.0 }, { "V": 0.0, - "T": 61.0 + "T": 76.0 }, { "V": 0.0, - "T": 65.0 + "T": 81.0 }, { "V": 0.0, - "T": 69.0 + "T": 86.0 }, { "V": 0.0, - "T": 73.0 + "T": 91.0 }, { "V": 0.0, - "T": 77.0 + "T": 96.0 }, { "V": 0.0, - "T": 81.0 + "T": 101.0 }, { "V": 0.0, - "T": 85.0 + "T": 106.0 }, { "V": 0.0, - "T": 89.0 + "T": 111.0 }, { "V": 0.0, - "T": 93.0 + "T": 116.0 }, { "V": 0.0, - "T": 97.0 + "T": 121.0 }, { "V": 0.0, - "T": 101.0 + "T": 126.0 }, { "V": 0.0, - "T": 105.0 + "T": 131.0 }, { "V": 0.0, - "T": 109.0 + "T": 136.0 }, { "V": 0.0, - "T": 113.0 + "T": 141.0 }, { "V": 0.0, - "T": 117.0 + "T": 146.0 }, { "V": 0.0, - "T": 121.0 + "T": 151.0 }, { "V": 0.0, - "T": 125.0 + "T": 156.0 }, { "V": 0.0, - "T": 129.0 + "T": 161.0 }, { "V": 0.0, - "T": 133.0 + "T": 166.0 }, { "V": 0.0, - "T": 137.0 + "T": 171.0 }, { "V": 0.0, - "T": 141.0 + "T": 176.0 }, { "V": 0.0, - "T": 145.0 + "T": 181.0 }, { "V": 0.0, - "T": 149.0 + "T": 186.0 }, { "V": 0.0, - "T": 153.0 + "T": 191.0 }, { "V": 0.0, - "T": 157.0 + "T": 196.0 }, { "V": 0.0, - "T": 161.0 + "T": 201.0 }, { "V": 0.0, - "T": 165.0 + "T": 206.0 }, { "V": 0.0, - "T": 169.0 + "T": 211.0 }, { "V": 0.0, - "T": 173.0 + "T": 216.0 }, { "V": 0.0, - "T": 177.0 + "T": 221.0 }, { "V": 0.0, - "T": 181.0 + "T": 226.0 }, { "V": 0.0, - "T": 185.0 + "T": 231.0 }, { "V": 0.0, - "T": 189.0 + "T": 236.0 }, { "V": 0.0, - "T": 193.0 + "T": 241.0 }, { "V": 0.0, - "T": 197.0 + "T": 246.0 }, { "V": 0.0, - "T": 201.0 + "T": 251.0 }, { "V": 0.0, - "T": 205.0 + "T": 256.0 }, { "V": 0.0, - "T": 209.0 + "T": 261.0 }, { "V": 0.0, - "T": 213.0 + "T": 266.0 }, { "V": 0.0, - "T": 217.0 + "T": 271.0 }, { "V": 0.0, - "T": 221.0 + "T": 276.0 }, { "V": 0.0, - "T": 225.0 + "T": 281.0 }, { "V": 0.0, - "T": 229.0 + "T": 286.0 }, { "V": 0.0, - "T": 233.0 + "T": 291.0 }, { "V": 0.0, - "T": 237.0 + "T": 296.0 }, { "V": 0.0, - "T": 241.0 + "T": 301.0 }, { "V": 0.0, - "T": 245.0 + "T": 306.0 }, { "V": 0.0, - "T": 249.0 + "T": 311.0 }, { "V": 0.0, - "T": 253.0 + "T": 316.0 }, { "V": 0.0, - "T": 257.0 + "T": 321.0 }, { "V": 0.0, - "T": 261.0 + "T": 326.0 }, { "V": 0.0, - "T": 265.0 + "T": 331.0 }, { "V": 0.0, - "T": 269.0 + "T": 336.0 }, { "V": 0.0, - "T": 273.0 + "T": 341.0 }, { - "V": 0.0, - "T": 277.0 + "V": 0.2351, + "T": 346.0 }, { "V": 0.0, - "T": 281.0 + "T": 351.0 }, { "V": 0.0, - "T": 285.0 + "T": 356.0 }, { "V": 0.0, - "T": 289.0 + "T": 361.0 }, { "V": 0.0, - "T": 293.0 + "T": 366.0 }, { "V": 0.0, - "T": 297.0 + "T": 371.0 }, { "V": 0.0, - "T": 301.0 + "T": 376.0 }, { "V": 0.0, - "T": 305.0 + "T": 381.0 }, { "V": 0.0, - "T": 309.0 + "T": 386.0 }, { "V": 0.0, - "T": 313.0 + "T": 391.0 }, { "V": 0.0, - "T": 317.0 + "T": 396.0 }, { "V": 0.0, - "T": 321.0 + "T": 401.0 }, { "V": 0.0, - "T": 325.0 + "T": 406.0 }, { "V": 0.0, - "T": 329.0 + "T": 411.0 }, { "V": 0.0, - "T": 333.0 + "T": 416.0 }, { "V": 0.0, - "T": 337.0 + "T": 421.0 }, { "V": 0.0, - "T": 341.0 + "T": 426.0 }, { "V": 0.0, - "T": 345.0 + "T": 431.0 }, { "V": 0.0, - "T": 349.0 + "T": 436.0 }, { "V": 0.0, - "T": 353.0 + "T": 441.0 }, { "V": 0.0, - "T": 357.0 + "T": 446.0 }, { "V": 0.0, - "T": 361.0 + "T": 451.0 }, { "V": 0.0, - "T": 365.0 + "T": 456.0 }, { "V": 0.0, - "T": 369.0 + "T": 461.0 }, { "V": 0.0, - "T": 373.0 + "T": 466.0 }, { "V": 0.0, - "T": 377.0 + "T": 471.0 }, { "V": 0.0, - "T": 381.0 + "T": 476.0 }, { "V": 0.0, - "T": 385.0 + "T": 481.0 }, { "V": 0.0, - "T": 389.0 + "T": 486.0 }, { "V": 0.0, - "T": 393.0 + "T": 491.0 }, { "V": 0.0, - "T": 397.0 + "T": 496.0 }, { "V": 0.0, - "T": 401.0 + "T": 501.0 }, { "V": 0.0, - "T": 405.0 + "T": 506.0 }, { "V": 0.0, - "T": 409.0 + "T": 511.0 }, { "V": 0.0, - "T": 413.0 + "T": 516.0 }, { "V": 0.0, - "T": 417.0 + "T": 521.0 }, { - "V": 0.0, - "T": 421.0 + "V": 0.3944, + "T": 526.0 }, { "V": 0.0, - "T": 425.0 + "T": 531.0 }, { "V": 0.0, - "T": 429.0 + "T": 536.0 }, { "V": 0.0, - "T": 433.0 + "T": 541.0 }, { "V": 0.0, - "T": 437.0 + "T": 546.0 }, { "V": 0.0, - "T": 441.0 + "T": 551.0 }, { "V": 0.0, - "T": 445.0 + "T": 556.0 }, { "V": 0.0, - "T": 449.0 + "T": 561.0 }, { "V": 0.0, - "T": 453.0 + "T": 566.0 }, { "V": 0.0, - "T": 457.0 + "T": 571.0 }, { "V": 0.0, - "T": 461.0 + "T": 576.0 }, { "V": 0.0, - "T": 465.0 + "T": 581.0 }, { "V": 0.0, - "T": 469.0 + "T": 586.0 }, { "V": 0.0, - "T": 473.0 + "T": 591.0 }, { "V": 0.0, - "T": 477.0 + "T": 596.0 }, { "V": 0.0, - "T": 481.0 - }, + "T": 601.0 + } + ], + "PauseTimeMs": [ { "V": 0.0, - "T": 485.0 + "T": 1.0 }, { "V": 0.0, - "T": 489.0 + "T": 6.0 }, { "V": 0.0, - "T": 493.0 + "T": 11.0 }, { "V": 0.0, - "T": 497.0 + "T": 16.0 }, { "V": 0.0, - "T": 501.0 + "T": 21.0 }, { "V": 0.0, - "T": 505.0 + "T": 26.0 }, { "V": 0.0, - "T": 509.0 + "T": 31.0 }, { "V": 0.0, - "T": 513.0 + "T": 36.0 }, { "V": 0.0, - "T": 517.0 + "T": 41.0 }, { "V": 0.0, - "T": 521.0 + "T": 46.0 }, { "V": 0.0, - "T": 525.0 + "T": 51.0 }, { "V": 0.0, - "T": 529.0 + "T": 56.0 }, { "V": 0.0, - "T": 533.0 + "T": 61.0 }, { "V": 0.0, - "T": 537.0 + "T": 66.0 }, { "V": 0.0, - "T": 541.0 + "T": 71.0 }, { "V": 0.0, - "T": 545.0 + "T": 76.0 }, { "V": 0.0, - "T": 549.0 + "T": 81.0 }, { "V": 0.0, - "T": 553.0 + "T": 86.0 }, { "V": 0.0, - "T": 557.0 + "T": 91.0 }, { "V": 0.0, - "T": 561.0 + "T": 96.0 }, { "V": 0.0, - "T": 565.0 + "T": 101.0 }, { "V": 0.0, - "T": 569.0 + "T": 106.0 }, { "V": 0.0, - "T": 573.0 + "T": 111.0 }, { "V": 0.0, - "T": 577.0 + "T": 116.0 }, { "V": 0.0, - "T": 581.0 + "T": 121.0 }, { "V": 0.0, - "T": 585.0 + "T": 126.0 }, { "V": 0.0, - "T": 589.0 + "T": 131.0 }, { "V": 0.0, - "T": 593.0 + "T": 136.0 }, { "V": 0.0, - "T": 597.0 - } - ] - } - }, - { - "ScenarioId": "zeroalloc", - "ScenarioName": "Console: near-zero-allocation numeric compute (matrix multiply)", - "GcModeId": "server", - "GcModeName": "Server GC", - "DurationSeconds": 600.0007736, - "Summary": { - "OperationsTotal": 702508, - "OpsPerSecondOverall": 1170.8451570569775, - "TotalAllocatedBytes": 16895544, - "BytesAllocatedThisThreadDuringRun": 1008, - "Gen0Collections": 6, - "Gen1Collections": 1, - "Gen2Collections": 0, - "WorkingSetBytes": 47300608, - "PeakWorkingSetBytes": 47300608, - "HeapSizeBytes": 529360, - "TotalCommittedBytes": 4005888, - "GcName": "CoreCLR (Server)" - }, - "PauseTimePctStats": { - "Avg": 0.0006398659966499162, - "P50": 0.0, - "P90": 0.0, - "P99": 0.02149999999999999, - "Max": 0.1692, - "Min": 0.0, - "Count": 597 - }, - "PauseTimeMsStats": { - "Avg": 0.006398659966499162, - "P50": 0.0, - "P90": 0.0, - "P99": 0.2149999999999999, - "Max": 1.692, - "Min": 0.0, - "Count": 597 - }, - "WorkingSetStats": { - "Avg": 45209565.752508365, - "P50": 45596672.0, - "P90": 45621248.0, - "P99": 45621248.0, - "Max": 45621248.0, - "Min": 36802560.0, - "Count": 598 - }, - "AllocRateMBStats": { - "Avg": 0.025065001930224037, - "P50": 0.0234375, - "P90": 0.03125762939453125, - "P99": 0.03127288818359375, - "Max": 0.03885650634765625, - "Min": 0.012725830078125, - "Count": 597 - }, - "OpsPerSecStats": { - "Avg": 1170.3578595317726, - "P50": 1171.0, - "P90": 1180.0, - "P99": 1274.0, - "Max": 1406.0, - "Min": 1033.0, - "Count": 598 - }, - "TimeSeries": { - "PauseTimePct": [ - { - "V": 0.0, - "T": 1.0 + "T": 141.0 }, { "V": 0.0, - "T": 5.0 + "T": 146.0 }, { "V": 0.0, - "T": 9.0 + "T": 151.0 }, { "V": 0.0, - "T": 13.0 + "T": 156.0 }, { "V": 0.0, - "T": 17.0 + "T": 161.0 }, { "V": 0.0, - "T": 21.0 + "T": 166.0 }, { "V": 0.0, - "T": 25.0 + "T": 171.0 }, { "V": 0.0, - "T": 29.0 + "T": 176.0 }, { "V": 0.0, - "T": 33.0 + "T": 181.0 }, { "V": 0.0, - "T": 37.0 + "T": 186.0 }, { "V": 0.0, - "T": 41.0 + "T": 191.0 }, { "V": 0.0, - "T": 45.0 + "T": 196.0 }, { "V": 0.0, - "T": 49.0 + "T": 201.0 }, { "V": 0.0, - "T": 53.0 + "T": 206.0 }, { "V": 0.0, - "T": 57.0 + "T": 211.0 }, { "V": 0.0, - "T": 61.0 + "T": 216.0 }, { "V": 0.0, - "T": 65.0 + "T": 221.0 }, { "V": 0.0, - "T": 69.0 + "T": 226.0 }, { "V": 0.0, - "T": 73.0 + "T": 231.0 }, { "V": 0.0, - "T": 77.0 + "T": 236.0 }, { "V": 0.0, - "T": 81.0 + "T": 241.0 }, { "V": 0.0, - "T": 85.0 + "T": 246.0 }, { "V": 0.0, - "T": 89.0 + "T": 251.0 }, { "V": 0.0, - "T": 93.0 + "T": 256.0 }, { "V": 0.0, - "T": 97.0 + "T": 261.0 }, { "V": 0.0, - "T": 101.0 + "T": 266.0 }, { "V": 0.0, - "T": 105.0 + "T": 271.0 }, { "V": 0.0, - "T": 109.0 + "T": 276.0 }, { "V": 0.0, - "T": 113.0 + "T": 281.0 }, { "V": 0.0, - "T": 117.0 + "T": 286.0 }, { "V": 0.0, - "T": 121.0 + "T": 291.0 }, { "V": 0.0, - "T": 125.0 + "T": 296.0 }, { "V": 0.0, - "T": 129.0 + "T": 301.0 }, { "V": 0.0, - "T": 133.0 + "T": 306.0 }, { "V": 0.0, - "T": 137.0 + "T": 311.0 }, { "V": 0.0, - "T": 141.0 + "T": 316.0 }, { "V": 0.0, - "T": 145.0 + "T": 321.0 }, { "V": 0.0, - "T": 149.0 + "T": 326.0 }, { "V": 0.0, - "T": 153.0 + "T": 331.0 }, { "V": 0.0, - "T": 157.0 + "T": 336.0 }, { "V": 0.0, - "T": 161.0 + "T": 341.0 }, { - "V": 0.0, - "T": 165.0 + "V": 2.351, + "T": 346.0 }, { "V": 0.0, - "T": 169.0 + "T": 351.0 }, { "V": 0.0, - "T": 173.0 + "T": 356.0 }, { "V": 0.0, - "T": 177.0 + "T": 361.0 }, { "V": 0.0, - "T": 181.0 + "T": 366.0 }, { "V": 0.0, - "T": 185.0 + "T": 371.0 }, { "V": 0.0, - "T": 189.0 + "T": 376.0 }, { "V": 0.0, - "T": 193.0 + "T": 381.0 }, { "V": 0.0, - "T": 197.0 + "T": 386.0 }, { "V": 0.0, - "T": 201.0 + "T": 391.0 }, { "V": 0.0, - "T": 205.0 + "T": 396.0 }, { "V": 0.0, - "T": 209.0 + "T": 401.0 }, { "V": 0.0, - "T": 213.0 + "T": 406.0 }, { "V": 0.0, - "T": 217.0 + "T": 411.0 }, { "V": 0.0, - "T": 221.0 + "T": 416.0 }, { "V": 0.0, - "T": 225.0 + "T": 421.0 }, { "V": 0.0, - "T": 229.0 + "T": 426.0 }, { "V": 0.0, - "T": 233.0 + "T": 431.0 }, { "V": 0.0, - "T": 237.0 + "T": 436.0 }, { "V": 0.0, - "T": 241.0 + "T": 441.0 }, { "V": 0.0, - "T": 245.0 + "T": 446.0 }, { "V": 0.0, - "T": 249.0 - }, - { - "V": 0.0488, - "T": 253.0 + "T": 451.0 }, { "V": 0.0, - "T": 257.0 + "T": 456.0 }, { "V": 0.0, - "T": 261.0 + "T": 461.0 }, { "V": 0.0, - "T": 265.0 + "T": 466.0 }, { "V": 0.0, - "T": 269.0 + "T": 471.0 }, { "V": 0.0, - "T": 273.0 + "T": 476.0 }, { "V": 0.0, - "T": 277.0 + "T": 481.0 }, { "V": 0.0, - "T": 281.0 + "T": 486.0 }, { "V": 0.0, - "T": 285.0 + "T": 491.0 }, { "V": 0.0, - "T": 289.0 + "T": 496.0 }, { "V": 0.0, - "T": 293.0 + "T": 501.0 }, { "V": 0.0, - "T": 297.0 + "T": 506.0 }, { "V": 0.0, - "T": 301.0 + "T": 511.0 }, { "V": 0.0, - "T": 305.0 + "T": 516.0 }, { "V": 0.0, - "T": 309.0 + "T": 521.0 }, { - "V": 0.0, - "T": 313.0 + "V": 3.944, + "T": 526.0 }, { "V": 0.0, - "T": 317.0 + "T": 531.0 }, { "V": 0.0, - "T": 321.0 + "T": 536.0 }, { "V": 0.0, - "T": 325.0 + "T": 541.0 }, { "V": 0.0, - "T": 329.0 + "T": 546.0 }, { "V": 0.0, - "T": 333.0 + "T": 551.0 }, { "V": 0.0, - "T": 337.0 + "T": 556.0 }, { "V": 0.0, - "T": 341.0 + "T": 561.0 }, { "V": 0.0, - "T": 345.0 + "T": 566.0 }, { "V": 0.0, - "T": 349.0 + "T": 571.0 }, { "V": 0.0, - "T": 353.0 + "T": 576.0 }, { "V": 0.0, - "T": 357.0 + "T": 581.0 }, { "V": 0.0, - "T": 361.0 + "T": 586.0 }, { "V": 0.0, - "T": 365.0 + "T": 591.0 }, { "V": 0.0, - "T": 369.0 + "T": 596.0 }, { "V": 0.0, - "T": 373.0 - }, + "T": 601.0 + } + ], + "WorkingSetMB": [ { - "V": 0.0, - "T": 377.0 + "V": 310.84, + "T": 0.0 }, { - "V": 0.0, - "T": 381.0 + "V": 307.3, + "T": 5.0 }, { - "V": 0.0, - "T": 385.0 + "V": 308.84, + "T": 10.0 }, { - "V": 0.0, - "T": 389.0 + "V": 311.93, + "T": 15.0 }, { - "V": 0.0, - "T": 393.0 + "V": 312.61, + "T": 20.0 }, { - "V": 0.0, - "T": 397.0 + "V": 315.43, + "T": 25.0 }, { - "V": 0.0, - "T": 401.0 + "V": 315.87, + "T": 30.0 }, { - "V": 0.0, - "T": 405.0 + "V": 316.2, + "T": 35.0 }, { - "V": 0.0, - "T": 409.0 + "V": 316.66, + "T": 40.0 }, { - "V": 0.0, - "T": 413.0 + "V": 317.06, + "T": 45.0 }, { - "V": 0.0, - "T": 417.0 + "V": 317.49, + "T": 50.0 }, { - "V": 0.0, - "T": 421.0 + "V": 317.75, + "T": 55.0 }, { - "V": 0.0, - "T": 425.0 + "V": 318.24, + "T": 60.0 }, { - "V": 0.0, - "T": 429.0 + "V": 318.64, + "T": 65.0 }, { - "V": 0.0, - "T": 433.0 + "V": 318.94, + "T": 70.0 }, { - "V": 0.0, - "T": 437.0 + "V": 319.23, + "T": 75.0 }, { - "V": 0.0, - "T": 441.0 + "V": 319.6, + "T": 80.0 }, { - "V": 0.0, - "T": 445.0 + "V": 319.88, + "T": 85.0 }, { - "V": 0.0, - "T": 449.0 + "V": 320.19, + "T": 90.0 }, { - "V": 0.0, - "T": 453.0 + "V": 320.47, + "T": 95.0 }, { - "V": 0.0, - "T": 457.0 + "V": 320.77, + "T": 100.0 }, { - "V": 0.0, - "T": 461.0 + "V": 321.04, + "T": 105.0 }, { - "V": 0.0, - "T": 465.0 + "V": 321.43, + "T": 110.0 }, { - "V": 0.0, - "T": 469.0 + "V": 321.68, + "T": 115.0 }, { - "V": 0.0, - "T": 473.0 + "V": 321.91, + "T": 120.0 }, { - "V": 0.0, - "T": 477.0 + "V": 322.25, + "T": 125.0 }, { - "V": 0.0, - "T": 481.0 + "V": 322.61, + "T": 130.0 }, { - "V": 0.0, - "T": 485.0 + "V": 322.87, + "T": 135.0 }, { - "V": 0.0, - "T": 489.0 + "V": 323.2, + "T": 140.0 }, { - "V": 0.0, - "T": 493.0 + "V": 323.49, + "T": 145.0 }, { - "V": 0.0, - "T": 497.0 + "V": 323.79, + "T": 150.0 }, { - "V": 0.0, - "T": 501.0 + "V": 324.18, + "T": 155.0 }, { - "V": 0.0, - "T": 505.0 + "V": 318.5, + "T": 160.0 }, { - "V": 0.0, - "T": 509.0 + "V": 318.47, + "T": 165.0 }, { - "V": 0.0, - "T": 513.0 + "V": 318.41, + "T": 170.0 }, { - "V": 0.0, - "T": 517.0 + "V": 318.39, + "T": 175.0 }, { - "V": 0.0, - "T": 521.0 + "V": 318.5, + "T": 180.0 }, { - "V": 0.0, - "T": 525.0 + "V": 318.48, + "T": 185.0 }, { - "V": 0.0, - "T": 529.0 + "V": 318.49, + "T": 190.0 }, { - "V": 0.0, - "T": 533.0 + "V": 318.48, + "T": 195.0 }, { - "V": 0.0, - "T": 537.0 + "V": 318.49, + "T": 200.0 }, { - "V": 0.0, - "T": 541.0 + "V": 318.52, + "T": 205.0 }, { - "V": 0.0, - "T": 545.0 + "V": 318.49, + "T": 210.0 }, { - "V": 0.0, - "T": 549.0 + "V": 318.48, + "T": 215.0 }, { - "V": 0.0, - "T": 553.0 + "V": 318.49, + "T": 220.0 }, { - "V": 0.0, - "T": 557.0 + "V": 318.48, + "T": 225.0 }, { - "V": 0.0, - "T": 561.0 + "V": 318.44, + "T": 230.0 }, { - "V": 0.0, - "T": 565.0 + "V": 318.46, + "T": 235.0 }, { - "V": 0.0, - "T": 569.0 + "V": 318.49, + "T": 240.0 }, { - "V": 0.0, - "T": 573.0 + "V": 318.47, + "T": 245.0 }, { - "V": 0.0, - "T": 577.0 + "V": 318.46, + "T": 250.0 }, { - "V": 0.0, - "T": 581.0 + "V": 318.52, + "T": 255.0 }, { - "V": 0.0, - "T": 585.0 + "V": 318.52, + "T": 260.0 }, { - "V": 0.0, - "T": 589.0 + "V": 318.52, + "T": 265.0 }, { - "V": 0.0, - "T": 593.0 + "V": 318.53, + "T": 270.0 }, { - "V": 0.0, - "T": 597.0 - } - ], - "PauseTimeMs": [ - { - "V": 0.0, - "T": 1.0 + "V": 318.58, + "T": 275.0 }, { - "V": 0.0, - "T": 5.0 + "V": 318.62, + "T": 280.0 }, { - "V": 0.0, - "T": 9.0 + "V": 318.58, + "T": 285.0 }, { - "V": 0.0, - "T": 13.0 + "V": 318.59, + "T": 290.0 }, { - "V": 0.0, - "T": 17.0 + "V": 318.96, + "T": 295.0 }, { - "V": 0.0, - "T": 21.0 + "V": 319.3, + "T": 300.0 }, { - "V": 0.0, - "T": 25.0 + "V": 319.77, + "T": 305.0 }, { - "V": 0.0, - "T": 29.0 + "V": 320.33, + "T": 310.0 }, { - "V": 0.0, - "T": 33.0 + "V": 320.87, + "T": 315.0 }, { - "V": 0.0, - "T": 37.0 + "V": 321.27, + "T": 320.0 }, { - "V": 0.0, - "T": 41.0 + "V": 321.46, + "T": 325.0 }, { - "V": 0.0, - "T": 45.0 + "V": 321.71, + "T": 330.0 }, { - "V": 0.0, - "T": 49.0 + "V": 321.95, + "T": 335.0 }, { - "V": 0.0, - "T": 53.0 + "V": 322.32, + "T": 340.0 }, { - "V": 0.0, - "T": 57.0 + "V": 322.91, + "T": 345.0 }, { - "V": 0.0, - "T": 61.0 + "V": 322.95, + "T": 350.0 }, { - "V": 0.0, - "T": 65.0 + "V": 322.97, + "T": 355.0 }, { - "V": 0.0, - "T": 69.0 + "V": 323.02, + "T": 360.0 }, { - "V": 0.0, - "T": 73.0 + "V": 323.0, + "T": 365.0 }, { - "V": 0.0, - "T": 77.0 + "V": 323.05, + "T": 370.0 }, { - "V": 0.0, - "T": 81.0 + "V": 323.05, + "T": 375.0 }, { - "V": 0.0, - "T": 85.0 + "V": 323.08, + "T": 380.0 }, { - "V": 0.0, - "T": 89.0 + "V": 323.09, + "T": 385.0 }, { - "V": 0.0, - "T": 93.0 + "V": 323.06, + "T": 390.0 }, { - "V": 0.0, - "T": 97.0 + "V": 323.05, + "T": 395.0 }, { - "V": 0.0, - "T": 101.0 + "V": 323.04, + "T": 400.0 }, { - "V": 0.0, - "T": 105.0 + "V": 323.07, + "T": 405.0 }, { - "V": 0.0, - "T": 109.0 + "V": 323.07, + "T": 410.0 }, { - "V": 0.0, - "T": 113.0 + "V": 323.1, + "T": 415.0 }, { - "V": 0.0, - "T": 117.0 + "V": 323.1, + "T": 420.0 }, { - "V": 0.0, - "T": 121.0 + "V": 323.13, + "T": 425.0 }, { - "V": 0.0, - "T": 125.0 + "V": 323.14, + "T": 430.0 }, { - "V": 0.0, - "T": 129.0 + "V": 323.14, + "T": 435.0 }, { - "V": 0.0, - "T": 133.0 + "V": 323.15, + "T": 440.0 }, { - "V": 0.0, - "T": 137.0 + "V": 323.16, + "T": 445.0 }, { - "V": 0.0, - "T": 141.0 + "V": 323.15, + "T": 450.0 }, { - "V": 0.0, - "T": 145.0 + "V": 323.25, + "T": 455.0 }, { - "V": 0.0, - "T": 149.0 + "V": 323.27, + "T": 460.0 }, { - "V": 0.0, - "T": 153.0 + "V": 323.29, + "T": 465.0 }, { - "V": 0.0, - "T": 157.0 + "V": 323.3, + "T": 470.0 }, { - "V": 0.0, - "T": 161.0 + "V": 323.31, + "T": 475.0 }, { - "V": 0.0, - "T": 165.0 + "V": 323.32, + "T": 480.0 }, { - "V": 0.0, - "T": 169.0 + "V": 323.3, + "T": 485.0 }, { - "V": 0.0, - "T": 173.0 + "V": 323.35, + "T": 490.0 }, { - "V": 0.0, - "T": 177.0 + "V": 323.36, + "T": 495.0 }, { - "V": 0.0, - "T": 181.0 + "V": 323.37, + "T": 500.0 }, { - "V": 0.0, - "T": 185.0 + "V": 323.39, + "T": 505.0 }, { - "V": 0.0, - "T": 189.0 + "V": 323.41, + "T": 510.0 }, { - "V": 0.0, - "T": 193.0 + "V": 323.42, + "T": 515.0 }, { - "V": 0.0, - "T": 197.0 + "V": 323.45, + "T": 520.0 }, { - "V": 0.0, - "T": 201.0 + "V": 323.49, + "T": 525.0 }, { - "V": 0.0, - "T": 205.0 + "V": 324.8, + "T": 530.0 }, { - "V": 0.0, - "T": 209.0 + "V": 324.8, + "T": 535.0 }, { - "V": 0.0, - "T": 213.0 + "V": 324.85, + "T": 540.0 }, { - "V": 0.0, - "T": 217.0 + "V": 324.86, + "T": 545.0 }, { - "V": 0.0, - "T": 221.0 + "V": 324.87, + "T": 550.0 }, { - "V": 0.0, - "T": 225.0 + "V": 324.87, + "T": 555.0 }, { - "V": 0.0, - "T": 229.0 + "V": 324.88, + "T": 560.0 }, { - "V": 0.0, - "T": 233.0 + "V": 324.91, + "T": 565.0 }, { - "V": 0.0, - "T": 237.0 + "V": 324.92, + "T": 570.0 }, { - "V": 0.0, - "T": 241.0 + "V": 324.92, + "T": 575.0 }, { - "V": 0.0, - "T": 245.0 + "V": 324.94, + "T": 580.0 }, { - "V": 0.0, - "T": 249.0 + "V": 324.94, + "T": 585.0 }, { - "V": 0.488, - "T": 253.0 + "V": 324.98, + "T": 590.0 }, { - "V": 0.0, - "T": 257.0 + "V": 325.03, + "T": 595.0 }, { - "V": 0.0, - "T": 261.0 + "V": 325.01, + "T": 600.0 + } + ], + "AllocRateMB": [ + { + "V": 0.09, + "T": 1.0 }, { - "V": 0.0, - "T": 265.0 + "V": 0.11, + "T": 6.0 }, { - "V": 0.0, - "T": 269.0 + "V": 0.09, + "T": 11.0 }, { - "V": 0.0, - "T": 273.0 + "V": 0.1, + "T": 16.0 }, { - "V": 0.0, - "T": 277.0 + "V": 0.1, + "T": 21.0 }, { - "V": 0.0, - "T": 281.0 + "V": 0.14, + "T": 26.0 }, { - "V": 0.0, - "T": 285.0 + "V": 0.08, + "T": 31.0 }, { - "V": 0.0, - "T": 289.0 + "V": 0.08, + "T": 36.0 }, { - "V": 0.0, - "T": 293.0 + "V": 0.1, + "T": 41.0 }, { - "V": 0.0, - "T": 297.0 + "V": 0.1, + "T": 46.0 }, { - "V": 0.0, - "T": 301.0 + "V": 0.05, + "T": 51.0 }, { - "V": 0.0, - "T": 305.0 + "V": 0.09, + "T": 56.0 }, { - "V": 0.0, - "T": 309.0 + "V": 0.07, + "T": 61.0 }, { - "V": 0.0, - "T": 313.0 + "V": 0.04, + "T": 66.0 }, { - "V": 0.0, - "T": 317.0 + "V": 0.05, + "T": 71.0 }, { - "V": 0.0, - "T": 321.0 + "V": 0.08, + "T": 76.0 }, { - "V": 0.0, - "T": 325.0 + "V": 0.06, + "T": 81.0 }, { - "V": 0.0, - "T": 329.0 + "V": 0.05, + "T": 86.0 }, { - "V": 0.0, - "T": 333.0 + "V": 0.05, + "T": 91.0 }, { - "V": 0.0, - "T": 337.0 + "V": 0.05, + "T": 96.0 }, { - "V": 0.0, - "T": 341.0 + "V": 0.05, + "T": 101.0 }, { - "V": 0.0, - "T": 345.0 + "V": 0.08, + "T": 106.0 }, { - "V": 0.0, - "T": 349.0 + "V": 0.04, + "T": 111.0 }, { - "V": 0.0, - "T": 353.0 + "V": 0.05, + "T": 116.0 }, { - "V": 0.0, - "T": 357.0 + "V": 0.05, + "T": 121.0 }, { - "V": 0.0, - "T": 361.0 + "V": 0.07, + "T": 126.0 }, { - "V": 0.0, - "T": 365.0 + "V": 0.05, + "T": 131.0 }, { - "V": 0.0, - "T": 369.0 + "V": 0.07, + "T": 136.0 }, { - "V": 0.0, - "T": 373.0 + "V": 0.04, + "T": 141.0 }, { - "V": 0.0, - "T": 377.0 + "V": 0.05, + "T": 146.0 }, { - "V": 0.0, - "T": 381.0 + "V": 0.05, + "T": 151.0 }, { - "V": 0.0, - "T": 385.0 + "V": 0.06, + "T": 156.0 }, { - "V": 0.0, - "T": 389.0 + "V": 0.05, + "T": 161.0 }, { - "V": 0.0, - "T": 393.0 + "V": 0.05, + "T": 166.0 }, { - "V": 0.0, - "T": 397.0 + "V": 0.04, + "T": 171.0 }, { - "V": 0.0, - "T": 401.0 + "V": 0.06, + "T": 176.0 }, { - "V": 0.0, - "T": 405.0 + "V": 0.05, + "T": 181.0 }, { - "V": 0.0, - "T": 409.0 + "V": 0.12, + "T": 186.0 }, { - "V": 0.0, - "T": 413.0 + "V": 0.1, + "T": 191.0 }, { - "V": 0.0, - "T": 417.0 + "V": 0.1, + "T": 196.0 }, { - "V": 0.0, - "T": 421.0 + "V": 0.06, + "T": 201.0 }, { - "V": 0.0, - "T": 425.0 + "V": 0.1, + "T": 206.0 }, { - "V": 0.0, - "T": 429.0 + "V": 0.11, + "T": 211.0 }, { - "V": 0.0, - "T": 433.0 + "V": 0.07, + "T": 216.0 }, { - "V": 0.0, - "T": 437.0 + "V": 0.11, + "T": 221.0 }, { - "V": 0.0, - "T": 441.0 + "V": 0.11, + "T": 226.0 }, { - "V": 0.0, - "T": 445.0 + "V": 0.12, + "T": 231.0 }, { - "V": 0.0, - "T": 449.0 + "V": 0.12, + "T": 236.0 }, { - "V": 0.0, - "T": 453.0 + "V": 0.08, + "T": 241.0 }, { - "V": 0.0, - "T": 457.0 + "V": 0.13, + "T": 246.0 }, { - "V": 0.0, - "T": 461.0 + "V": 0.13, + "T": 251.0 }, { - "V": 0.0, - "T": 465.0 + "V": 0.11, + "T": 256.0 }, { - "V": 0.0, - "T": 469.0 + "V": 0.12, + "T": 261.0 }, { - "V": 0.0, - "T": 473.0 + "V": 0.04, + "T": 266.0 }, { - "V": 0.0, - "T": 477.0 + "V": 0.1, + "T": 271.0 }, { - "V": 0.0, - "T": 481.0 + "V": 0.11, + "T": 276.0 }, { - "V": 0.0, - "T": 485.0 + "V": 0.07, + "T": 281.0 }, { - "V": 0.0, - "T": 489.0 + "V": 0.07, + "T": 286.0 }, { - "V": 0.0, - "T": 493.0 + "V": 0.11, + "T": 291.0 }, { - "V": 0.0, - "T": 497.0 + "V": 0.09, + "T": 296.0 }, { - "V": 0.0, - "T": 501.0 + "V": 0.07, + "T": 301.0 }, { - "V": 0.0, - "T": 505.0 + "V": 0.09, + "T": 306.0 }, { - "V": 0.0, - "T": 509.0 + "V": 0.08, + "T": 311.0 }, { - "V": 0.0, - "T": 513.0 + "V": 0.11, + "T": 316.0 }, { - "V": 0.0, - "T": 517.0 + "V": 0.03, + "T": 321.0 }, { - "V": 0.0, - "T": 521.0 + "V": 0.03, + "T": 326.0 }, { - "V": 0.0, - "T": 525.0 + "V": 0.05, + "T": 331.0 }, { - "V": 0.0, - "T": 529.0 + "V": 0.05, + "T": 336.0 }, { - "V": 0.0, - "T": 533.0 + "V": 0.08, + "T": 341.0 }, { - "V": 0.0, - "T": 537.0 + "V": 0.11, + "T": 346.0 }, { - "V": 0.0, - "T": 541.0 + "V": 0.04, + "T": 351.0 }, { - "V": 0.0, - "T": 545.0 + "V": 0.13, + "T": 356.0 }, { - "V": 0.0, - "T": 549.0 + "V": 0.09, + "T": 361.0 }, { - "V": 0.0, - "T": 553.0 + "V": 0.13, + "T": 366.0 }, { - "V": 0.0, - "T": 557.0 + "V": 0.12, + "T": 371.0 }, { - "V": 0.0, - "T": 561.0 + "V": 0.12, + "T": 376.0 }, { - "V": 0.0, - "T": 565.0 + "V": 0.12, + "T": 381.0 }, { - "V": 0.0, - "T": 569.0 + "V": 0.12, + "T": 386.0 }, { - "V": 0.0, - "T": 573.0 + "V": 0.1, + "T": 391.0 }, { - "V": 0.0, - "T": 577.0 + "V": 0.11, + "T": 396.0 }, { - "V": 0.0, - "T": 581.0 + "V": 0.1, + "T": 401.0 }, { - "V": 0.0, - "T": 585.0 + "V": 0.12, + "T": 406.0 }, { - "V": 0.0, - "T": 589.0 + "V": 0.11, + "T": 411.0 }, { - "V": 0.0, - "T": 593.0 + "V": 0.13, + "T": 416.0 }, { - "V": 0.0, - "T": 597.0 - } - ], - "WorkingSetMB": [ - { - "V": 35.1, - "T": 0.0 + "V": 0.08, + "T": 421.0 }, { - "V": 38.04, - "T": 4.0 + "V": 0.15, + "T": 426.0 }, { - "V": 40.5, - "T": 8.0 + "V": 0.04, + "T": 431.0 }, { - "V": 40.68, - "T": 12.0 + "V": 0.03, + "T": 436.0 }, { - "V": 40.81, - "T": 16.0 + "V": 0.04, + "T": 441.0 }, { - "V": 40.93, - "T": 20.0 + "V": 0.04, + "T": 446.0 }, { - "V": 41.05, - "T": 24.0 + "V": 0.13, + "T": 451.0 }, { - "V": 41.1, - "T": 28.0 + "V": 0.1, + "T": 456.0 }, { - "V": 41.47, - "T": 32.0 + "V": 0.12, + "T": 461.0 }, { - "V": 41.52, - "T": 36.0 + "V": 0.1, + "T": 466.0 }, { - "V": 41.61, - "T": 40.0 + "V": 0.07, + "T": 471.0 }, { - "V": 41.72, - "T": 44.0 + "V": 0.05, + "T": 476.0 }, { - "V": 41.82, - "T": 48.0 + "V": 0.06, + "T": 481.0 }, { - "V": 41.92, - "T": 52.0 + "V": 0.12, + "T": 486.0 }, { - "V": 42.9, - "T": 56.0 + "V": 0.12, + "T": 491.0 }, { - "V": 42.9, - "T": 60.0 + "V": 0.07, + "T": 496.0 }, { - "V": 42.96, - "T": 64.0 + "V": 0.1, + "T": 501.0 }, { - "V": 42.91, - "T": 68.0 + "V": 0.09, + "T": 506.0 }, { - "V": 42.91, - "T": 72.0 + "V": 0.16, + "T": 511.0 }, { - "V": 42.91, - "T": 76.0 + "V": 0.11, + "T": 516.0 }, { - "V": 42.91, - "T": 80.0 + "V": 0.09, + "T": 521.0 }, { - "V": 42.91, - "T": 84.0 + "V": 0.11, + "T": 526.0 }, { - "V": 42.91, - "T": 88.0 + "V": 0.06, + "T": 531.0 }, { - "V": 42.91, - "T": 92.0 + "V": 0.12, + "T": 536.0 }, { - "V": 42.91, - "T": 96.0 + "V": 0.07, + "T": 541.0 }, { - "V": 42.91, - "T": 100.0 + "V": 0.14, + "T": 546.0 }, { - "V": 42.91, - "T": 104.0 + "V": 0.12, + "T": 551.0 }, { - "V": 42.91, - "T": 108.0 + "V": 0.14, + "T": 556.0 }, { - "V": 42.91, - "T": 112.0 + "V": 0.05, + "T": 561.0 }, { - "V": 42.91, - "T": 116.0 + "V": 0.06, + "T": 566.0 }, { - "V": 42.91, - "T": 120.0 + "V": 0.11, + "T": 571.0 }, { - "V": 42.91, - "T": 124.0 + "V": 0.05, + "T": 576.0 }, { - "V": 42.91, - "T": 128.0 + "V": 0.07, + "T": 581.0 }, { - "V": 42.91, - "T": 132.0 + "V": 0.1, + "T": 586.0 }, { - "V": 42.91, - "T": 136.0 + "V": 0.07, + "T": 591.0 }, { - "V": 42.91, - "T": 140.0 + "V": 0.07, + "T": 596.0 }, { - "V": 42.91, - "T": 144.0 + "V": 0.02, + "T": 601.0 + } + ], + "OpsPerSec": [ + { + "V": 1.0, + "T": 0.0 }, { - "V": 42.91, - "T": 148.0 + "V": 2.0, + "T": 4.0 }, { - "V": 42.91, - "T": 152.0 + "V": 3.0, + "T": 8.0 }, { - "V": 43.38, - "T": 156.0 + "V": 1.0, + "T": 12.0 }, { - "V": 43.36, - "T": 160.0 + "V": 3.0, + "T": 16.0 }, { - "V": 43.36, - "T": 164.0 + "V": 2.0, + "T": 20.0 }, { - "V": 43.36, - "T": 168.0 + "V": 2.0, + "T": 24.0 }, { - "V": 43.36, - "T": 172.0 + "V": 1.0, + "T": 28.0 }, { - "V": 43.36, - "T": 176.0 + "V": 1.0, + "T": 32.0 }, { - "V": 43.36, - "T": 180.0 + "V": 2.0, + "T": 36.0 }, { - "V": 43.36, - "T": 184.0 + "V": 2.0, + "T": 40.0 }, { - "V": 43.36, - "T": 188.0 + "V": 1.0, + "T": 44.0 }, { - "V": 43.36, - "T": 192.0 + "V": 2.0, + "T": 48.0 }, { - "V": 43.36, - "T": 196.0 + "V": 3.0, + "T": 52.0 }, { - "V": 43.36, - "T": 200.0 + "V": 2.0, + "T": 56.0 }, { - "V": 43.36, - "T": 204.0 + "V": 2.0, + "T": 60.0 }, { - "V": 43.36, - "T": 208.0 + "V": 1.0, + "T": 64.0 }, { - "V": 43.36, - "T": 212.0 + "V": 2.0, + "T": 68.0 }, { - "V": 43.36, - "T": 216.0 + "V": 1.0, + "T": 72.0 }, { - "V": 43.36, - "T": 220.0 + "V": 2.0, + "T": 76.0 }, { - "V": 43.36, - "T": 224.0 + "V": 1.0, + "T": 80.0 }, { - "V": 43.36, - "T": 228.0 + "V": 1.0, + "T": 84.0 }, { - "V": 43.36, - "T": 232.0 + "V": 1.0, + "T": 88.0 }, { - "V": 43.36, - "T": 236.0 + "V": 1.0, + "T": 92.0 }, { - "V": 43.36, - "T": 240.0 + "V": 1.0, + "T": 96.0 }, { - "V": 43.36, - "T": 244.0 + "V": 1.0, + "T": 100.0 }, { - "V": 43.36, - "T": 248.0 + "V": 1.0, + "T": 104.0 }, { - "V": 43.36, - "T": 252.0 + "V": 2.0, + "T": 108.0 }, { - "V": 43.37, - "T": 256.0 + "V": 2.0, + "T": 112.0 }, { - "V": 43.37, - "T": 260.0 + "V": 1.0, + "T": 116.0 }, { - "V": 43.37, - "T": 264.0 + "V": 1.0, + "T": 120.0 }, { - "V": 43.37, - "T": 268.0 + "V": 1.0, + "T": 124.0 }, { - "V": 43.37, - "T": 272.0 + "V": 1.0, + "T": 128.0 }, { - "V": 43.37, - "T": 276.0 + "V": 2.0, + "T": 132.0 }, { - "V": 43.37, - "T": 280.0 + "V": 2.0, + "T": 136.0 }, { - "V": 43.37, - "T": 284.0 + "V": 1.0, + "T": 140.0 }, { - "V": 43.37, - "T": 288.0 + "V": 2.0, + "T": 144.0 }, { - "V": 43.37, - "T": 292.0 + "V": 1.0, + "T": 148.0 }, { - "V": 43.37, - "T": 296.0 + "V": 1.0, + "T": 152.0 }, { - "V": 43.51, - "T": 300.0 + "V": 1.0, + "T": 156.0 }, { - "V": 43.51, - "T": 304.0 + "V": 1.0, + "T": 161.0 }, { - "V": 43.51, - "T": 308.0 + "V": 2.0, + "T": 165.0 }, { - "V": 43.51, - "T": 312.0 + "V": 1.0, + "T": 169.0 }, { - "V": 43.51, - "T": 316.0 + "V": 2.0, + "T": 173.0 }, { - "V": 43.51, - "T": 320.0 + "V": 3.0, + "T": 177.0 }, { - "V": 43.51, - "T": 324.0 + "V": 1.0, + "T": 181.0 }, { - "V": 43.51, - "T": 328.0 + "V": 2.0, + "T": 185.0 }, { - "V": 43.51, - "T": 332.0 + "V": 4.0, + "T": 189.0 }, { - "V": 43.51, - "T": 336.0 + "V": 4.0, + "T": 193.0 }, { - "V": 43.51, - "T": 340.0 + "V": 3.0, + "T": 197.0 }, { - "V": 43.51, - "T": 344.0 + "V": 1.0, + "T": 201.0 }, { - "V": 43.51, - "T": 348.0 + "V": 1.0, + "T": 205.0 }, { - "V": 43.51, - "T": 352.0 + "V": 3.0, + "T": 209.0 }, { - "V": 43.51, - "T": 356.0 + "V": 4.0, + "T": 213.0 }, { - "V": 43.51, - "T": 360.0 + "V": 2.0, + "T": 217.0 }, { - "V": 43.51, - "T": 364.0 + "V": 4.0, + "T": 221.0 }, { - "V": 43.51, - "T": 368.0 + "V": 2.0, + "T": 225.0 }, { - "V": 43.51, - "T": 372.0 + "V": 5.0, + "T": 229.0 }, { - "V": 43.51, - "T": 376.0 + "V": 5.0, + "T": 233.0 }, { - "V": 43.51, - "T": 380.0 + "V": 4.0, + "T": 237.0 }, { - "V": 43.51, - "T": 384.0 + "V": 3.0, + "T": 241.0 }, { - "V": 43.51, - "T": 388.0 + "V": 2.0, + "T": 245.0 }, { - "V": 43.51, - "T": 392.0 + "V": 5.0, + "T": 249.0 }, { - "V": 43.51, - "T": 396.0 + "V": 4.0, + "T": 253.0 }, { - "V": 43.48, - "T": 400.0 + "V": 5.0, + "T": 257.0 }, { - "V": 43.48, - "T": 404.0 + "V": 4.0, + "T": 261.0 }, { - "V": 43.48, - "T": 408.0 + "V": 2.0, + "T": 265.0 }, { - "V": 43.48, - "T": 412.0 + "V": 2.0, + "T": 269.0 }, { - "V": 43.48, - "T": 416.0 + "V": 2.0, + "T": 273.0 }, { - "V": 43.48, - "T": 420.0 + "V": 4.0, + "T": 277.0 }, { - "V": 43.48, - "T": 424.0 + "V": 2.0, + "T": 281.0 }, { - "V": 43.48, - "T": 428.0 + "V": 2.0, + "T": 285.0 }, { - "V": 43.48, - "T": 432.0 + "V": 2.0, + "T": 289.0 }, { - "V": 43.48, - "T": 436.0 + "V": 3.0, + "T": 293.0 }, { - "V": 43.48, - "T": 440.0 + "V": 2.0, + "T": 297.0 }, { - "V": 43.48, - "T": 444.0 + "V": 2.0, + "T": 301.0 }, { - "V": 43.48, - "T": 448.0 + "V": 3.0, + "T": 305.0 }, { - "V": 43.48, - "T": 452.0 + "V": 3.0, + "T": 309.0 }, { - "V": 43.48, - "T": 456.0 + "V": 4.0, + "T": 313.0 }, { - "V": 43.48, - "T": 460.0 + "V": 4.0, + "T": 317.0 }, { - "V": 43.48, - "T": 464.0 + "V": 1.0, + "T": 322.0 }, { - "V": 43.48, - "T": 468.0 + "V": 1.0, + "T": 328.0 }, { - "V": 43.48, - "T": 472.0 + "V": 1.0, + "T": 333.0 }, { - "V": 43.48, - "T": 476.0 + "V": 3.0, + "T": 338.0 }, { - "V": 43.48, - "T": 480.0 + "V": 3.0, + "T": 342.0 }, { - "V": 43.48, - "T": 484.0 + "V": 4.0, + "T": 346.0 }, { - "V": 43.48, - "T": 488.0 + "V": 3.0, + "T": 350.0 }, { - "V": 43.48, - "T": 492.0 + "V": 4.0, + "T": 354.0 }, { - "V": 43.48, - "T": 496.0 + "V": 4.0, + "T": 358.0 }, { - "V": 43.48, - "T": 500.0 + "V": 3.0, + "T": 362.0 }, { - "V": 43.48, - "T": 504.0 + "V": 4.0, + "T": 366.0 }, { - "V": 43.48, - "T": 508.0 + "V": 4.0, + "T": 370.0 }, { - "V": 43.48, - "T": 512.0 + "V": 4.0, + "T": 374.0 }, { - "V": 43.48, - "T": 516.0 + "V": 2.0, + "T": 378.0 }, { - "V": 43.48, - "T": 520.0 + "V": 3.0, + "T": 382.0 }, { - "V": 43.48, - "T": 524.0 + "V": 4.0, + "T": 386.0 }, { - "V": 43.48, - "T": 528.0 + "V": 3.0, + "T": 390.0 }, { - "V": 43.48, - "T": 532.0 + "V": 3.0, + "T": 394.0 }, { - "V": 43.48, - "T": 536.0 + "V": 4.0, + "T": 398.0 }, { - "V": 43.48, - "T": 540.0 + "V": 5.0, + "T": 402.0 }, { - "V": 43.48, - "T": 544.0 + "V": 3.0, + "T": 406.0 }, { - "V": 43.48, - "T": 548.0 + "V": 3.0, + "T": 410.0 }, { - "V": 43.48, - "T": 552.0 + "V": 3.0, + "T": 414.0 }, { - "V": 43.48, - "T": 556.0 + "V": 4.0, + "T": 418.0 }, { - "V": 43.48, - "T": 560.0 + "V": 3.0, + "T": 422.0 }, { - "V": 43.48, - "T": 564.0 + "V": 5.0, + "T": 426.0 }, { - "V": 43.48, - "T": 568.0 + "V": 2.0, + "T": 430.0 }, { - "V": 43.48, - "T": 572.0 + "V": 1.0, + "T": 435.0 }, { - "V": 43.48, - "T": 576.0 + "V": 1.0, + "T": 441.0 }, { - "V": 43.48, - "T": 580.0 + "V": 1.0, + "T": 445.0 }, { - "V": 43.48, - "T": 584.0 + "V": 3.0, + "T": 449.0 }, { - "V": 43.48, - "T": 588.0 + "V": 3.0, + "T": 453.0 }, { - "V": 43.48, - "T": 592.0 + "V": 2.0, + "T": 457.0 }, { - "V": 43.48, - "T": 596.0 - } - ], - "AllocRateMB": [ + "V": 4.0, + "T": 461.0 + }, { - "V": 0.04, - "T": 1.0 + "V": 3.0, + "T": 465.0 }, { - "V": 0.02, - "T": 5.0 + "V": 1.0, + "T": 469.0 }, { - "V": 0.02, - "T": 9.0 + "V": 1.0, + "T": 475.0 }, { - "V": 0.02, - "T": 13.0 + "V": 1.0, + "T": 480.0 }, { - "V": 0.02, - "T": 17.0 + "V": 5.0, + "T": 484.0 }, { - "V": 0.02, - "T": 21.0 + "V": 3.0, + "T": 488.0 }, { - "V": 0.02, - "T": 25.0 + "V": 5.0, + "T": 492.0 }, { - "V": 0.02, - "T": 29.0 + "V": 3.0, + "T": 496.0 }, { - "V": 0.02, - "T": 33.0 + "V": 3.0, + "T": 500.0 }, { - "V": 0.02, - "T": 37.0 + "V": 3.0, + "T": 504.0 }, { - "V": 0.02, - "T": 41.0 + "V": 3.0, + "T": 508.0 }, { - "V": 0.02, - "T": 45.0 + "V": 4.0, + "T": 512.0 }, { - "V": 0.02, - "T": 49.0 + "V": 3.0, + "T": 516.0 }, { - "V": 0.02, - "T": 53.0 + "V": 2.0, + "T": 520.0 }, { - "V": 0.02, - "T": 57.0 + "V": 2.0, + "T": 524.0 }, { - "V": 0.02, - "T": 61.0 + "V": 3.0, + "T": 528.0 }, { - "V": 0.02, - "T": 65.0 + "V": 4.0, + "T": 532.0 }, { - "V": 0.02, - "T": 69.0 + "V": 4.0, + "T": 536.0 }, { - "V": 0.02, - "T": 73.0 + "V": 3.0, + "T": 540.0 }, { - "V": 0.02, - "T": 77.0 + "V": 5.0, + "T": 544.0 }, { - "V": 0.02, - "T": 81.0 + "V": 4.0, + "T": 548.0 }, { - "V": 0.02, - "T": 85.0 + "V": 4.0, + "T": 552.0 }, { - "V": 0.02, - "T": 89.0 + "V": 5.0, + "T": 556.0 }, { - "V": 0.02, - "T": 93.0 + "V": 1.0, + "T": 561.0 }, { - "V": 0.02, - "T": 97.0 + "V": 2.0, + "T": 565.0 }, { - "V": 0.02, - "T": 101.0 + "V": 2.0, + "T": 569.0 }, { - "V": 0.02, - "T": 105.0 + "V": 2.0, + "T": 573.0 }, { - "V": 0.03, - "T": 109.0 + "V": 1.0, + "T": 577.0 }, { - "V": 0.02, - "T": 113.0 + "V": 1.0, + "T": 581.0 }, { - "V": 0.02, - "T": 117.0 + "V": 2.0, + "T": 586.0 }, { - "V": 0.03, - "T": 121.0 + "V": 1.0, + "T": 590.0 }, { - "V": 0.03, - "T": 125.0 + "V": 2.0, + "T": 594.0 }, { - "V": 0.03, - "T": 129.0 - }, + "V": 2.0, + "T": 598.0 + } + ], + "Gen0PerSec": [ { - "V": 0.03, - "T": 133.0 + "V": 0.0, + "T": 1.0 }, { - "V": 0.02, - "T": 137.0 + "V": 0.0, + "T": 6.0 }, { - "V": 0.03, - "T": 141.0 + "V": 0.0, + "T": 11.0 }, { - "V": 0.03, - "T": 145.0 + "V": 0.0, + "T": 16.0 }, { - "V": 0.03, - "T": 149.0 + "V": 0.0, + "T": 21.0 }, { - "V": 0.03, - "T": 153.0 + "V": 0.0, + "T": 26.0 }, { - "V": 0.02, - "T": 157.0 + "V": 0.0, + "T": 31.0 }, { - "V": 0.02, - "T": 161.0 + "V": 0.0, + "T": 36.0 }, { - "V": 0.02, - "T": 165.0 + "V": 0.0, + "T": 41.0 }, { - "V": 0.02, - "T": 169.0 + "V": 0.0, + "T": 46.0 }, { - "V": 0.02, - "T": 173.0 + "V": 0.0, + "T": 51.0 }, { - "V": 0.02, - "T": 177.0 + "V": 0.0, + "T": 56.0 }, { - "V": 0.02, - "T": 181.0 + "V": 0.0, + "T": 61.0 }, { - "V": 0.02, - "T": 185.0 + "V": 0.0, + "T": 66.0 }, { - "V": 0.02, - "T": 189.0 + "V": 0.0, + "T": 71.0 }, { - "V": 0.02, - "T": 193.0 + "V": 0.0, + "T": 76.0 }, { - "V": 0.03, - "T": 197.0 + "V": 0.0, + "T": 81.0 }, { - "V": 0.02, - "T": 201.0 + "V": 0.0, + "T": 86.0 }, { - "V": 0.03, - "T": 205.0 + "V": 0.0, + "T": 91.0 }, { - "V": 0.03, - "T": 209.0 + "V": 0.0, + "T": 96.0 }, { - "V": 0.03, - "T": 213.0 + "V": 0.0, + "T": 101.0 }, { - "V": 0.03, - "T": 217.0 + "V": 0.0, + "T": 106.0 }, { - "V": 0.02, - "T": 221.0 + "V": 0.0, + "T": 111.0 }, { - "V": 0.02, - "T": 225.0 + "V": 0.0, + "T": 116.0 }, { - "V": 0.03, - "T": 229.0 + "V": 0.0, + "T": 121.0 }, { - "V": 0.03, - "T": 233.0 + "V": 0.0, + "T": 126.0 }, { - "V": 0.03, - "T": 237.0 + "V": 0.0, + "T": 131.0 }, { - "V": 0.03, - "T": 241.0 + "V": 0.0, + "T": 136.0 }, { - "V": 0.02, - "T": 245.0 + "V": 0.0, + "T": 141.0 }, { - "V": 0.02, - "T": 249.0 + "V": 0.0, + "T": 146.0 }, { - "V": 0.01, - "T": 253.0 + "V": 0.0, + "T": 151.0 }, { - "V": 0.02, - "T": 257.0 + "V": 0.0, + "T": 156.0 }, { - "V": 0.02, - "T": 261.0 + "V": 0.0, + "T": 161.0 }, { - "V": 0.02, - "T": 265.0 + "V": 0.0, + "T": 166.0 }, { - "V": 0.02, - "T": 269.0 + "V": 0.0, + "T": 171.0 }, { - "V": 0.02, - "T": 273.0 + "V": 0.0, + "T": 176.0 }, { - "V": 0.03, - "T": 277.0 + "V": 0.0, + "T": 181.0 }, { - "V": 0.03, - "T": 281.0 + "V": 0.0, + "T": 186.0 }, { - "V": 0.03, - "T": 285.0 + "V": 0.0, + "T": 191.0 }, { - "V": 0.03, - "T": 289.0 + "V": 0.0, + "T": 196.0 }, { - "V": 0.02, - "T": 293.0 + "V": 0.0, + "T": 201.0 }, { - "V": 0.02, - "T": 297.0 + "V": 0.0, + "T": 206.0 }, { - "V": 0.03, - "T": 301.0 + "V": 0.0, + "T": 211.0 }, { - "V": 0.03, - "T": 305.0 + "V": 0.0, + "T": 216.0 }, { - "V": 0.03, - "T": 309.0 + "V": 0.0, + "T": 221.0 }, { - "V": 0.03, - "T": 313.0 + "V": 0.0, + "T": 226.0 }, { - "V": 0.02, - "T": 317.0 + "V": 0.0, + "T": 231.0 }, { - "V": 0.03, - "T": 321.0 + "V": 0.0, + "T": 236.0 }, { - "V": 0.03, - "T": 325.0 + "V": 0.0, + "T": 241.0 }, { - "V": 0.03, - "T": 329.0 + "V": 0.0, + "T": 246.0 }, { - "V": 0.02, - "T": 333.0 + "V": 0.0, + "T": 251.0 }, { - "V": 0.02, - "T": 337.0 + "V": 0.0, + "T": 256.0 }, { - "V": 0.02, - "T": 341.0 + "V": 0.0, + "T": 261.0 }, { - "V": 0.02, - "T": 345.0 + "V": 0.0, + "T": 266.0 }, { - "V": 0.02, - "T": 349.0 + "V": 0.0, + "T": 271.0 }, { - "V": 0.02, - "T": 353.0 + "V": 0.0, + "T": 276.0 }, { - "V": 0.02, - "T": 357.0 + "V": 0.0, + "T": 281.0 }, { - "V": 0.03, - "T": 361.0 + "V": 0.0, + "T": 286.0 }, { - "V": 0.02, - "T": 365.0 + "V": 0.0, + "T": 291.0 }, { - "V": 0.03, - "T": 369.0 + "V": 0.0, + "T": 296.0 }, { - "V": 0.03, - "T": 373.0 + "V": 0.0, + "T": 301.0 }, { - "V": 0.03, - "T": 377.0 + "V": 0.0, + "T": 306.0 }, { - "V": 0.03, - "T": 381.0 + "V": 0.0, + "T": 311.0 }, { - "V": 0.02, - "T": 385.0 + "V": 0.0, + "T": 316.0 }, { - "V": 0.02, - "T": 389.0 + "V": 0.0, + "T": 321.0 }, { - "V": 0.03, - "T": 393.0 + "V": 0.0, + "T": 326.0 }, { - "V": 0.03, - "T": 397.0 + "V": 0.0, + "T": 331.0 }, { - "V": 0.03, - "T": 401.0 + "V": 0.0, + "T": 336.0 }, { - "V": 0.03, - "T": 405.0 + "V": 0.0, + "T": 341.0 }, { - "V": 0.02, - "T": 409.0 + "V": 1.0, + "T": 346.0 }, { - "V": 0.02, - "T": 413.0 + "V": 0.0, + "T": 351.0 }, { - "V": 0.02, - "T": 417.0 + "V": 0.0, + "T": 356.0 }, { - "V": 0.02, - "T": 421.0 + "V": 0.0, + "T": 361.0 }, { - "V": 0.02, - "T": 425.0 + "V": 0.0, + "T": 366.0 }, { - "V": 0.02, - "T": 429.0 + "V": 0.0, + "T": 371.0 }, { - "V": 0.02, - "T": 433.0 + "V": 0.0, + "T": 376.0 }, { - "V": 0.02, - "T": 437.0 + "V": 0.0, + "T": 381.0 }, { - "V": 0.02, - "T": 441.0 + "V": 0.0, + "T": 386.0 }, { - "V": 0.02, - "T": 445.0 + "V": 0.0, + "T": 391.0 }, { - "V": 0.02, - "T": 449.0 + "V": 0.0, + "T": 396.0 }, { - "V": 0.03, - "T": 453.0 + "V": 0.0, + "T": 401.0 }, { - "V": 0.02, - "T": 457.0 + "V": 0.0, + "T": 406.0 }, { - "V": 0.02, - "T": 461.0 + "V": 0.0, + "T": 411.0 }, { - "V": 0.03, - "T": 465.0 + "V": 0.0, + "T": 416.0 }, { - "V": 0.03, - "T": 469.0 + "V": 0.0, + "T": 421.0 }, { - "V": 0.03, - "T": 473.0 + "V": 0.0, + "T": 426.0 }, { - "V": 0.03, - "T": 477.0 + "V": 0.0, + "T": 431.0 }, { - "V": 0.02, - "T": 481.0 + "V": 0.0, + "T": 436.0 }, { - "V": 0.03, - "T": 485.0 + "V": 0.0, + "T": 441.0 }, { - "V": 0.03, - "T": 489.0 + "V": 0.0, + "T": 446.0 }, { - "V": 0.03, - "T": 493.0 + "V": 0.0, + "T": 451.0 }, { - "V": 0.03, - "T": 497.0 + "V": 0.0, + "T": 456.0 }, { - "V": 0.02, - "T": 501.0 + "V": 0.0, + "T": 461.0 }, { - "V": 0.02, - "T": 505.0 + "V": 0.0, + "T": 466.0 }, { - "V": 0.02, - "T": 509.0 + "V": 0.0, + "T": 471.0 }, { - "V": 0.02, - "T": 513.0 + "V": 0.0, + "T": 476.0 }, { - "V": 0.02, - "T": 517.0 + "V": 0.0, + "T": 481.0 }, { - "V": 0.02, - "T": 521.0 + "V": 0.0, + "T": 486.0 }, { - "V": 0.02, - "T": 525.0 + "V": 0.0, + "T": 491.0 }, { - "V": 0.02, - "T": 529.0 + "V": 0.0, + "T": 496.0 }, { - "V": 0.02, - "T": 533.0 + "V": 0.0, + "T": 501.0 }, { - "V": 0.02, - "T": 537.0 + "V": 0.0, + "T": 506.0 }, { - "V": 0.02, - "T": 541.0 + "V": 0.0, + "T": 511.0 }, { - "V": 0.02, - "T": 545.0 + "V": 0.0, + "T": 516.0 }, { - "V": 0.02, - "T": 549.0 + "V": 0.0, + "T": 521.0 }, { - "V": 0.02, - "T": 553.0 + "V": 0.0, + "T": 526.0 }, { - "V": 0.02, - "T": 557.0 + "V": 0.0, + "T": 531.0 }, { - "V": 0.02, - "T": 561.0 + "V": 0.0, + "T": 536.0 }, { - "V": 0.02, - "T": 565.0 + "V": 0.0, + "T": 541.0 }, { - "V": 0.02, - "T": 569.0 + "V": 0.0, + "T": 546.0 }, { - "V": 0.02, - "T": 573.0 + "V": 0.0, + "T": 551.0 }, { - "V": 0.02, - "T": 577.0 + "V": 0.0, + "T": 556.0 }, { - "V": 0.02, - "T": 581.0 + "V": 0.0, + "T": 561.0 }, { - "V": 0.02, - "T": 585.0 + "V": 0.0, + "T": 566.0 }, { - "V": 0.02, - "T": 589.0 + "V": 0.0, + "T": 571.0 }, { - "V": 0.02, - "T": 593.0 + "V": 0.0, + "T": 576.0 }, { - "V": 0.02, - "T": 597.0 - } - ], - "OpsPerSec": [ + "V": 0.0, + "T": 581.0 + }, { - "V": 1406.0, - "T": 0.0 + "V": 0.0, + "T": 586.0 }, { - "V": 1404.0, - "T": 4.0 + "V": 0.0, + "T": 591.0 }, { - "V": 1156.0, - "T": 8.0 + "V": 0.0, + "T": 596.0 }, { - "V": 1190.0, - "T": 12.0 - }, + "V": 0.0, + "T": 601.0 + } + ] + } + }, + { + "ScenarioId": "dotllm-serve", + "ScenarioName": "dotLLM: zero-alloc-inference HTTP server (github.com/kkokosa/dotLLM)", + "GcModeId": "server", + "GcModeName": "Server GC", + "DurationSeconds": 600, + "Summary": { + "OperationsTotal": 1779.0, + "OpsPerSecondOverall": 2.965, + "TotalAllocatedBytes": 58629488.0, + "Gen0Collections": 1, + "Gen1Collections": 0, + "Gen2Collections": 1, + "WorkingSetBytes": 378380288.0, + "PeakWorkingSetBytes": 378380288.0, + "HeapSizeBytes": null, + "TotalCommittedBytes": 83992576.0, + "GcName": "Server GC" + }, + "PauseTimePctStats": { + "Avg": 0.0009806291390728474, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.5922999999999998, + "Min": 0.0, + "Count": 604 + }, + "PauseTimeMsStats": { + "Avg": 0.009806291390728472, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 5.922999999999997, + "Min": 0.0, + "Count": 604 + }, + "WorkingSetStats": { + "Avg": 355968133.7123967, + "P50": 357662720.0, + "P90": 373665792.0, + "P99": 377737216.0, + "Max": 378380288.0, + "Min": 321490944.0, + "Count": 605 + }, + "AllocRateMBStats": { + "Avg": 0.09257191538021264, + "P50": 0.09317779541015625, + "P90": 0.1328582763671875, + "P99": 0.16768646240234375, + "Max": 0.19870758056640625, + "Min": 0.0, + "Count": 604 + }, + "OpsPerSecStats": { + "Avg": 3.010152284263959, + "P50": 3.0, + "P90": 5.0, + "P99": 6.0, + "Max": 7.0, + "Min": 1.0, + "Count": 591 + }, + "TimeSeries": { + "PauseTimePct": [ { - "V": 1163.0, - "T": 16.0 + "V": 0.0, + "T": 1.0 }, { - "V": 1173.0, - "T": 20.0 + "V": 0.0, + "T": 6.0 }, { - "V": 1131.0, - "T": 24.0 + "V": 0.0, + "T": 11.0 }, { - "V": 1167.0, - "T": 28.0 + "V": 0.0, + "T": 16.0 }, { - "V": 1165.0, - "T": 32.0 + "V": 0.0, + "T": 21.0 }, { - "V": 1185.0, - "T": 36.0 + "V": 0.0, + "T": 26.0 }, { - "V": 1166.0, - "T": 40.0 + "V": 0.0, + "T": 31.0 }, { - "V": 1168.0, - "T": 44.0 + "V": 0.0, + "T": 36.0 }, { - "V": 1175.0, - "T": 48.0 + "V": 0.0, + "T": 41.0 }, { - "V": 1179.0, - "T": 52.0 + "V": 0.0, + "T": 46.0 }, { - "V": 1166.0, - "T": 56.0 + "V": 0.0, + "T": 51.0 }, { - "V": 1156.0, - "T": 60.0 + "V": 0.0, + "T": 56.0 }, { - "V": 1161.0, - "T": 64.0 + "V": 0.0, + "T": 61.0 }, { - "V": 1176.0, - "T": 68.0 + "V": 0.0, + "T": 66.0 }, { - "V": 1168.0, - "T": 72.0 + "V": 0.0, + "T": 71.0 }, { - "V": 1174.0, + "V": 0.0, "T": 76.0 }, { - "V": 1177.0, - "T": 80.0 - }, - { - "V": 1174.0, - "T": 84.0 + "V": 0.0, + "T": 81.0 }, { - "V": 1176.0, - "T": 88.0 + "V": 0.0, + "T": 86.0 }, { - "V": 1172.0, - "T": 92.0 + "V": 0.0, + "T": 91.0 }, { - "V": 1184.0, + "V": 0.0, "T": 96.0 }, { - "V": 1175.0, - "T": 100.0 - }, - { - "V": 1175.0, - "T": 104.0 + "V": 0.0, + "T": 101.0 }, { - "V": 1179.0, - "T": 108.0 + "V": 0.0, + "T": 106.0 }, { - "V": 1177.0, - "T": 112.0 + "V": 0.0, + "T": 111.0 }, { - "V": 1165.0, + "V": 0.0, "T": 116.0 }, { - "V": 1196.0, - "T": 120.0 - }, - { - "V": 1177.0, - "T": 124.0 + "V": 0.0, + "T": 121.0 }, { - "V": 1179.0, - "T": 128.0 + "V": 0.0, + "T": 126.0 }, { - "V": 1182.0, - "T": 132.0 + "V": 0.0, + "T": 131.0 }, { - "V": 1194.0, + "V": 0.0, "T": 136.0 }, { - "V": 1173.0, - "T": 140.0 - }, - { - "V": 1172.0, - "T": 144.0 + "V": 0.0, + "T": 141.0 }, { - "V": 1195.0, - "T": 148.0 + "V": 0.0, + "T": 146.0 }, { - "V": 1174.0, - "T": 152.0 + "V": 0.0, + "T": 151.0 }, { - "V": 1165.0, + "V": 0.0, "T": 156.0 }, { - "V": 1179.0, - "T": 160.0 - }, - { - "V": 1177.0, - "T": 164.0 + "V": 0.0, + "T": 161.0 }, { - "V": 1171.0, - "T": 168.0 + "V": 0.0, + "T": 166.0 }, { - "V": 1176.0, - "T": 172.0 + "V": 0.0, + "T": 171.0 }, { - "V": 1190.0, + "V": 0.0, "T": 176.0 }, { - "V": 1172.0, - "T": 180.0 - }, - { - "V": 1167.0, - "T": 184.0 + "V": 0.0, + "T": 181.0 }, { - "V": 1173.0, - "T": 188.0 + "V": 0.0, + "T": 186.0 }, { - "V": 1173.0, - "T": 192.0 + "V": 0.0, + "T": 191.0 }, { - "V": 1167.0, + "V": 0.0, "T": 196.0 }, { - "V": 1169.0, - "T": 200.0 - }, - { - "V": 1174.0, - "T": 204.0 + "V": 0.0, + "T": 201.0 }, { - "V": 1171.0, - "T": 208.0 + "V": 0.0, + "T": 206.0 }, { - "V": 1194.0, - "T": 212.0 + "V": 0.0, + "T": 211.0 }, { - "V": 1178.0, + "V": 0.0, "T": 216.0 }, { - "V": 1171.0, - "T": 220.0 - }, - { - "V": 1196.0, - "T": 224.0 + "V": 0.0, + "T": 221.0 }, { - "V": 1170.0, - "T": 228.0 + "V": 0.0, + "T": 226.0 }, { - "V": 1170.0, - "T": 232.0 + "V": 0.0, + "T": 231.0 }, { - "V": 1174.0, + "V": 0.0, "T": 236.0 }, { - "V": 1172.0, - "T": 240.0 - }, - { - "V": 1173.0, - "T": 244.0 + "V": 0.0, + "T": 241.0 }, { - "V": 1175.0, - "T": 248.0 + "V": 0.0, + "T": 246.0 }, { - "V": 1167.0, - "T": 252.0 + "V": 0.0, + "T": 251.0 }, { - "V": 1173.0, + "V": 0.0, "T": 256.0 }, { - "V": 1174.0, - "T": 260.0 - }, - { - "V": 1168.0, - "T": 264.0 + "V": 0.0, + "T": 261.0 }, { - "V": 1174.0, - "T": 268.0 + "V": 0.0, + "T": 266.0 }, { - "V": 1173.0, - "T": 272.0 + "V": 0.0, + "T": 271.0 }, { - "V": 1167.0, + "V": 0.0, "T": 276.0 }, { - "V": 1172.0, - "T": 280.0 - }, - { - "V": 1175.0, - "T": 284.0 + "V": 0.0, + "T": 281.0 }, { - "V": 1168.0, - "T": 288.0 + "V": 0.0, + "T": 286.0 }, { - "V": 1177.0, - "T": 292.0 + "V": 0.0, + "T": 291.0 }, { - "V": 1161.0, + "V": 0.0, "T": 296.0 }, { - "V": 1165.0, - "T": 300.0 - }, - { - "V": 1176.0, - "T": 304.0 + "V": 0.0, + "T": 301.0 }, { - "V": 1160.0, - "T": 308.0 + "V": 0.0, + "T": 306.0 }, { - "V": 1168.0, - "T": 312.0 + "V": 0.0, + "T": 311.0 }, { - "V": 1189.0, + "V": 0.0, "T": 316.0 }, { - "V": 1175.0, - "T": 320.0 - }, - { - "V": 1175.0, - "T": 324.0 + "V": 0.0, + "T": 321.0 }, { - "V": 1169.0, - "T": 328.0 + "V": 0.0, + "T": 326.0 }, { - "V": 1179.0, - "T": 332.0 + "V": 0.0, + "T": 331.0 }, { - "V": 1165.0, + "V": 0.0, "T": 336.0 }, { - "V": 1175.0, - "T": 340.0 - }, - { - "V": 1178.0, - "T": 344.0 + "V": 0.0, + "T": 341.0 }, { - "V": 1146.0, - "T": 348.0 + "V": 0.0, + "T": 346.0 }, { - "V": 1148.0, - "T": 352.0 + "V": 0.0, + "T": 351.0 }, { - "V": 1139.0, + "V": 0.0, "T": 356.0 }, { - "V": 1147.0, - "T": 360.0 - }, - { - "V": 1151.0, - "T": 364.0 + "V": 0.0, + "T": 361.0 }, { - "V": 1171.0, - "T": 368.0 + "V": 0.0, + "T": 366.0 }, { - "V": 1133.0, - "T": 372.0 + "V": 0.0, + "T": 371.0 }, { - "V": 1147.0, + "V": 0.0, "T": 376.0 }, { - "V": 1158.0, - "T": 380.0 - }, - { - "V": 1153.0, - "T": 384.0 + "V": 0.0, + "T": 381.0 }, { - "V": 1152.0, - "T": 388.0 + "V": 0.0, + "T": 386.0 }, { - "V": 1139.0, - "T": 392.0 + "V": 0.0, + "T": 391.0 }, { - "V": 1148.0, + "V": 0.0, "T": 396.0 }, { - "V": 1147.0, - "T": 400.0 - }, - { - "V": 1167.0, - "T": 404.0 + "V": 0.0, + "T": 401.0 }, { - "V": 1151.0, - "T": 408.0 + "V": 0.0, + "T": 406.0 }, { - "V": 1172.0, - "T": 412.0 + "V": 0.0, + "T": 411.0 }, { - "V": 1153.0, + "V": 0.0, "T": 416.0 }, { - "V": 1151.0, - "T": 420.0 - }, - { - "V": 1171.0, - "T": 424.0 + "V": 0.0, + "T": 421.0 }, { - "V": 1174.0, - "T": 428.0 + "V": 0.0, + "T": 426.0 }, { - "V": 1173.0, - "T": 432.0 + "V": 0.0, + "T": 431.0 }, { - "V": 1157.0, + "V": 0.0, "T": 436.0 }, { - "V": 1158.0, - "T": 440.0 - }, - { - "V": 1168.0, - "T": 444.0 + "V": 0.0, + "T": 441.0 }, { - "V": 1158.0, - "T": 448.0 + "V": 0.0, + "T": 446.0 }, { - "V": 1171.0, - "T": 452.0 + "V": 0.0, + "T": 451.0 }, { - "V": 1149.0, + "V": 0.0, "T": 456.0 }, { - "V": 1183.0, - "T": 460.0 - }, - { - "V": 1160.0, - "T": 464.0 + "V": 0.0, + "T": 461.0 }, { - "V": 1172.0, - "T": 468.0 + "V": 0.0, + "T": 466.0 }, { - "V": 1174.0, - "T": 472.0 + "V": 0.0, + "T": 471.0 }, { - "V": 1187.0, + "V": 0.0, "T": 476.0 }, { - "V": 1169.0, - "T": 480.0 + "V": 0.0, + "T": 481.0 }, { - "V": 1163.0, - "T": 484.0 + "V": 0.0, + "T": 486.0 }, { - "V": 1177.0, - "T": 488.0 + "V": 0.0, + "T": 491.0 }, { - "V": 1170.0, - "T": 492.0 + "V": 0.0, + "T": 496.0 }, { - "V": 1166.0, - "T": 496.0 - }, - { - "V": 1180.0, - "T": 500.0 - }, - { - "V": 1170.0, - "T": 504.0 + "V": 0.0, + "T": 501.0 }, { - "V": 1167.0, - "T": 508.0 + "V": 0.0, + "T": 506.0 }, { - "V": 1190.0, - "T": 512.0 + "V": 0.0, + "T": 511.0 }, { - "V": 1162.0, + "V": 0.0, "T": 516.0 }, { - "V": 1179.0, - "T": 520.0 - }, - { - "V": 1176.0, - "T": 524.0 + "V": 0.0, + "T": 521.0 }, { - "V": 1160.0, - "T": 528.0 + "V": 0.0, + "T": 526.0 }, { - "V": 1170.0, - "T": 532.0 + "V": 0.0, + "T": 531.0 }, { - "V": 1154.0, + "V": 0.0, "T": 536.0 }, { - "V": 1173.0, - "T": 540.0 - }, - { - "V": 1178.0, - "T": 544.0 + "V": 0.0, + "T": 541.0 }, { - "V": 1169.0, - "T": 548.0 + "V": 0.0, + "T": 546.0 }, { - "V": 1174.0, - "T": 552.0 + "V": 0.0, + "T": 551.0 }, { - "V": 1165.0, + "V": 0.0, "T": 556.0 }, { - "V": 1173.0, - "T": 560.0 - }, - { - "V": 1169.0, - "T": 564.0 + "V": 0.0, + "T": 561.0 }, { - "V": 1175.0, - "T": 568.0 + "V": 0.0, + "T": 566.0 }, { - "V": 1171.0, - "T": 572.0 + "V": 0.0, + "T": 571.0 }, { - "V": 1186.0, + "V": 0.0, "T": 576.0 }, { - "V": 1171.0, - "T": 580.0 + "V": 0.0, + "T": 581.0 }, { - "V": 1189.0, - "T": 584.0 + "V": 0.0, + "T": 586.0 }, { - "V": 1173.0, - "T": 588.0 + "V": 0.0, + "T": 591.0 }, { - "V": 1162.0, - "T": 592.0 + "V": 0.0, + "T": 596.0 }, { - "V": 1171.0, - "T": 596.0 + "V": 0.0, + "T": 601.0 } ], - "Gen0PerSec": [ + "PauseTimeMs": [ { "V": 0.0, "T": 1.0 }, { "V": 0.0, - "T": 5.0 + "T": 6.0 }, { "V": 0.0, - "T": 9.0 + "T": 11.0 }, { "V": 0.0, - "T": 13.0 + "T": 16.0 }, { "V": 0.0, - "T": 17.0 + "T": 21.0 }, { "V": 0.0, - "T": 21.0 + "T": 26.0 }, { "V": 0.0, - "T": 25.0 + "T": 31.0 }, { "V": 0.0, - "T": 29.0 + "T": 36.0 }, { "V": 0.0, - "T": 33.0 + "T": 41.0 }, { "V": 0.0, - "T": 37.0 + "T": 46.0 }, { "V": 0.0, - "T": 41.0 + "T": 51.0 }, { "V": 0.0, - "T": 45.0 + "T": 56.0 }, { "V": 0.0, - "T": 49.0 + "T": 61.0 }, { "V": 0.0, - "T": 53.0 + "T": 66.0 }, { "V": 0.0, - "T": 57.0 + "T": 71.0 }, { "V": 0.0, - "T": 61.0 + "T": 76.0 }, { "V": 0.0, - "T": 65.0 + "T": 81.0 }, { "V": 0.0, - "T": 69.0 + "T": 86.0 }, { "V": 0.0, - "T": 73.0 + "T": 91.0 }, { "V": 0.0, - "T": 77.0 + "T": 96.0 }, { "V": 0.0, - "T": 81.0 + "T": 101.0 }, { "V": 0.0, - "T": 85.0 + "T": 106.0 }, { "V": 0.0, - "T": 89.0 + "T": 111.0 }, { "V": 0.0, - "T": 93.0 + "T": 116.0 }, { "V": 0.0, - "T": 97.0 + "T": 121.0 }, { "V": 0.0, - "T": 101.0 + "T": 126.0 }, { "V": 0.0, - "T": 105.0 + "T": 131.0 }, { "V": 0.0, - "T": 109.0 + "T": 136.0 }, { "V": 0.0, - "T": 113.0 + "T": 141.0 }, { "V": 0.0, - "T": 117.0 + "T": 146.0 }, { "V": 0.0, - "T": 121.0 + "T": 151.0 }, { "V": 0.0, - "T": 125.0 + "T": 156.0 }, { "V": 0.0, - "T": 129.0 + "T": 161.0 }, { "V": 0.0, - "T": 133.0 + "T": 166.0 }, { "V": 0.0, - "T": 137.0 + "T": 171.0 }, { "V": 0.0, - "T": 141.0 + "T": 176.0 }, { "V": 0.0, - "T": 145.0 + "T": 181.0 }, { "V": 0.0, - "T": 149.0 + "T": 186.0 }, { "V": 0.0, - "T": 153.0 + "T": 191.0 }, { "V": 0.0, - "T": 157.0 + "T": 196.0 }, { "V": 0.0, - "T": 161.0 + "T": 201.0 }, { "V": 0.0, - "T": 165.0 + "T": 206.0 }, { "V": 0.0, - "T": 169.0 + "T": 211.0 }, { "V": 0.0, - "T": 173.0 + "T": 216.0 }, { "V": 0.0, - "T": 177.0 + "T": 221.0 }, { "V": 0.0, - "T": 181.0 + "T": 226.0 }, { "V": 0.0, - "T": 185.0 + "T": 231.0 }, { "V": 0.0, - "T": 189.0 + "T": 236.0 }, { "V": 0.0, - "T": 193.0 + "T": 241.0 }, { "V": 0.0, - "T": 197.0 + "T": 246.0 }, { "V": 0.0, - "T": 201.0 + "T": 251.0 }, { "V": 0.0, - "T": 205.0 + "T": 256.0 }, { "V": 0.0, - "T": 209.0 + "T": 261.0 }, { "V": 0.0, - "T": 213.0 + "T": 266.0 }, { "V": 0.0, - "T": 217.0 + "T": 271.0 }, { "V": 0.0, - "T": 221.0 + "T": 276.0 }, { "V": 0.0, - "T": 225.0 + "T": 281.0 }, { "V": 0.0, - "T": 229.0 + "T": 286.0 }, { "V": 0.0, - "T": 233.0 + "T": 291.0 }, { "V": 0.0, - "T": 237.0 + "T": 296.0 }, { "V": 0.0, - "T": 241.0 + "T": 301.0 }, { "V": 0.0, - "T": 245.0 + "T": 306.0 }, { "V": 0.0, - "T": 249.0 + "T": 311.0 }, { - "V": 1.0, - "T": 253.0 + "V": 0.0, + "T": 316.0 }, { "V": 0.0, - "T": 257.0 + "T": 321.0 }, { "V": 0.0, - "T": 261.0 + "T": 326.0 }, { "V": 0.0, - "T": 265.0 + "T": 331.0 }, { "V": 0.0, - "T": 269.0 + "T": 336.0 }, { "V": 0.0, - "T": 273.0 + "T": 341.0 }, { "V": 0.0, - "T": 277.0 + "T": 346.0 }, { "V": 0.0, - "T": 281.0 + "T": 351.0 }, { "V": 0.0, - "T": 285.0 + "T": 356.0 }, { "V": 0.0, - "T": 289.0 + "T": 361.0 }, { "V": 0.0, - "T": 293.0 + "T": 366.0 }, { "V": 0.0, - "T": 297.0 + "T": 371.0 }, { "V": 0.0, - "T": 301.0 + "T": 376.0 }, { "V": 0.0, - "T": 305.0 + "T": 381.0 }, { "V": 0.0, - "T": 309.0 + "T": 386.0 }, { "V": 0.0, - "T": 313.0 + "T": 391.0 }, { "V": 0.0, - "T": 317.0 + "T": 396.0 }, { "V": 0.0, - "T": 321.0 + "T": 401.0 }, { "V": 0.0, - "T": 325.0 + "T": 406.0 }, { "V": 0.0, - "T": 329.0 + "T": 411.0 }, { "V": 0.0, - "T": 333.0 + "T": 416.0 }, { "V": 0.0, - "T": 337.0 + "T": 421.0 }, { "V": 0.0, - "T": 341.0 + "T": 426.0 }, { "V": 0.0, - "T": 345.0 + "T": 431.0 }, { "V": 0.0, - "T": 349.0 + "T": 436.0 }, { "V": 0.0, - "T": 353.0 + "T": 441.0 }, { "V": 0.0, - "T": 357.0 + "T": 446.0 }, { "V": 0.0, - "T": 361.0 + "T": 451.0 }, { "V": 0.0, - "T": 365.0 + "T": 456.0 }, { "V": 0.0, - "T": 369.0 + "T": 461.0 }, { "V": 0.0, - "T": 373.0 + "T": 466.0 }, { "V": 0.0, - "T": 377.0 + "T": 471.0 }, { "V": 0.0, - "T": 381.0 + "T": 476.0 }, { "V": 0.0, - "T": 385.0 + "T": 481.0 }, { "V": 0.0, - "T": 389.0 + "T": 486.0 }, { "V": 0.0, - "T": 393.0 + "T": 491.0 }, { "V": 0.0, - "T": 397.0 + "T": 496.0 }, { "V": 0.0, - "T": 401.0 + "T": 501.0 }, { "V": 0.0, - "T": 405.0 + "T": 506.0 }, { "V": 0.0, - "T": 409.0 + "T": 511.0 }, { "V": 0.0, - "T": 413.0 + "T": 516.0 }, { "V": 0.0, - "T": 417.0 + "T": 521.0 }, { "V": 0.0, - "T": 421.0 + "T": 526.0 }, { "V": 0.0, - "T": 425.0 + "T": 531.0 }, { "V": 0.0, - "T": 429.0 + "T": 536.0 }, { "V": 0.0, - "T": 433.0 + "T": 541.0 }, { "V": 0.0, - "T": 437.0 + "T": 546.0 }, { "V": 0.0, - "T": 441.0 + "T": 551.0 }, { "V": 0.0, - "T": 445.0 + "T": 556.0 }, { "V": 0.0, - "T": 449.0 + "T": 561.0 }, { "V": 0.0, - "T": 453.0 + "T": 566.0 }, { "V": 0.0, - "T": 457.0 + "T": 571.0 }, { "V": 0.0, - "T": 461.0 + "T": 576.0 }, { "V": 0.0, - "T": 465.0 + "T": 581.0 }, { "V": 0.0, - "T": 469.0 + "T": 586.0 }, { "V": 0.0, - "T": 473.0 + "T": 591.0 }, { "V": 0.0, - "T": 477.0 + "T": 596.0 }, { "V": 0.0, - "T": 481.0 + "T": 601.0 + } + ], + "WorkingSetMB": [ + { + "V": 306.6, + "T": 0.0 }, { - "V": 0.0, - "T": 485.0 + "V": 314.39, + "T": 5.0 }, { - "V": 0.0, - "T": 489.0 + "V": 309.31, + "T": 10.0 }, { - "V": 0.0, - "T": 493.0 + "V": 312.66, + "T": 15.0 }, { - "V": 0.0, - "T": 497.0 + "V": 313.37, + "T": 20.0 }, { - "V": 0.0, - "T": 501.0 + "V": 313.86, + "T": 25.0 }, { - "V": 0.0, - "T": 505.0 + "V": 316.75, + "T": 30.0 }, { - "V": 0.0, - "T": 509.0 + "V": 317.16, + "T": 35.0 }, { - "V": 0.0, - "T": 513.0 + "V": 317.78, + "T": 40.0 }, { - "V": 0.0, - "T": 517.0 + "V": 318.3, + "T": 45.0 }, { - "V": 0.0, - "T": 521.0 + "V": 318.8, + "T": 50.0 }, { - "V": 0.0, - "T": 525.0 + "V": 319.2, + "T": 55.0 }, { - "V": 0.0, - "T": 529.0 + "V": 319.63, + "T": 60.0 }, { - "V": 0.0, - "T": 533.0 + "V": 320.15, + "T": 65.0 }, { - "V": 0.0, - "T": 537.0 + "V": 320.46, + "T": 70.0 }, { - "V": 0.0, - "T": 541.0 + "V": 320.89, + "T": 75.0 }, { - "V": 0.0, - "T": 545.0 + "V": 321.35, + "T": 80.0 }, { - "V": 0.0, - "T": 549.0 + "V": 321.79, + "T": 85.0 }, { - "V": 0.0, - "T": 553.0 + "V": 321.95, + "T": 90.0 }, { - "V": 0.0, - "T": 557.0 + "V": 322.36, + "T": 95.0 }, { - "V": 0.0, - "T": 561.0 + "V": 322.62, + "T": 100.0 }, { - "V": 0.0, - "T": 565.0 + "V": 322.95, + "T": 105.0 }, { - "V": 0.0, - "T": 569.0 + "V": 323.16, + "T": 110.0 }, { - "V": 0.0, - "T": 573.0 + "V": 323.45, + "T": 115.0 }, { - "V": 0.0, - "T": 577.0 + "V": 323.79, + "T": 120.0 }, { - "V": 0.0, - "T": 581.0 + "V": 324.02, + "T": 125.0 }, { - "V": 0.0, - "T": 585.0 + "V": 324.41, + "T": 130.0 }, { - "V": 0.0, - "T": 589.0 + "V": 324.71, + "T": 135.0 }, { - "V": 0.0, - "T": 593.0 + "V": 325.25, + "T": 140.0 }, { - "V": 0.0, - "T": 597.0 - } - ] - } - }, - { - "ScenarioId": "dotllm-serve", - "ScenarioName": "dotLLM: zero-alloc-inference HTTP server (github.com/kkokosa/dotLLM)", - "GcModeId": "workstation", - "GcModeName": "Workstation GC", - "DurationSeconds": 600, - "Summary": { - "OperationsTotal": 1461.0, - "OpsPerSecondOverall": 2.435, - "TotalAllocatedBytes": 51541256.0, - "Gen0Collections": 1, - "Gen1Collections": 2, - "Gen2Collections": 1, - "WorkingSetBytes": 340824064.0, - "PeakWorkingSetBytes": 340824064.0, - "HeapSizeBytes": null, - "TotalCommittedBytes": 52637696.0, - "GcName": "Workstation GC" - }, - "PauseTimePctStats": { - "Avg": 0.004798344370860929, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 2.2687000000000004, - "Min": 0.0, - "Count": 604 - }, - "PauseTimeMsStats": { - "Avg": 0.047983443708609276, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 22.687, - "Min": 0.0, - "Count": 604 - }, - "WorkingSetStats": { - "Avg": 336567629.43471074, - "P50": 337678336.0, - "P90": 340631552.0, - "P99": 340807680.0, - "Max": 340824064.0, - "Min": 321630208.0, - "Count": 605 - }, - "AllocRateMBStats": { - "Avg": 0.08138008622933697, - "P50": 0.07769775390625, - "P90": 0.12439727783203125, - "P99": 0.15163421630859375, - "Max": 0.16262054443359375, - "Min": 0.0, - "Count": 604 - }, - "OpsPerSecStats": { - "Avg": 2.4889267461669506, - "P50": 2.0, - "P90": 4.0, - "P99": 5.0, - "Max": 6.0, - "Min": 1.0, - "Count": 587 - }, - "TimeSeries": { - "PauseTimePct": [ + "V": 325.66, + "T": 145.0 + }, { - "V": 0.0, - "T": 1.0 + "V": 326.19, + "T": 150.0 }, { - "V": 0.0, - "T": 6.0 + "V": 326.53, + "T": 155.0 }, { - "V": 0.0, - "T": 11.0 + "V": 327.02, + "T": 160.0 }, { - "V": 0.0, - "T": 16.0 + "V": 327.77, + "T": 165.0 }, { - "V": 0.0, - "T": 21.0 + "V": 328.19, + "T": 170.0 }, { - "V": 0.0, - "T": 26.0 + "V": 328.79, + "T": 175.0 }, { - "V": 0.0, - "T": 31.0 + "V": 329.11, + "T": 180.0 }, { - "V": 0.0, - "T": 36.0 + "V": 329.73, + "T": 185.0 }, { - "V": 0.0, - "T": 41.0 + "V": 330.18, + "T": 190.0 }, { - "V": 0.0, - "T": 46.0 + "V": 330.71, + "T": 195.0 }, { - "V": 0.0, - "T": 51.0 + "V": 331.04, + "T": 200.0 }, { - "V": 0.0, - "T": 56.0 + "V": 331.5, + "T": 205.0 }, { - "V": 0.0, - "T": 61.0 + "V": 331.88, + "T": 210.0 }, { - "V": 0.0, - "T": 66.0 + "V": 332.31, + "T": 215.0 }, { - "V": 0.0, - "T": 71.0 + "V": 332.76, + "T": 220.0 }, { - "V": 0.0, - "T": 76.0 + "V": 333.24, + "T": 225.0 }, { - "V": 0.0, - "T": 81.0 + "V": 333.7, + "T": 230.0 }, { - "V": 0.0, - "T": 86.0 + "V": 334.18, + "T": 235.0 }, { - "V": 0.0, - "T": 91.0 + "V": 334.54, + "T": 240.0 }, { - "V": 0.0, - "T": 96.0 + "V": 335.05, + "T": 245.0 }, { - "V": 0.0, - "T": 101.0 + "V": 335.38, + "T": 250.0 }, { - "V": 0.0, - "T": 106.0 + "V": 335.79, + "T": 255.0 }, { - "V": 0.0, - "T": 111.0 + "V": 336.25, + "T": 260.0 }, { - "V": 0.0, - "T": 116.0 + "V": 336.93, + "T": 265.0 }, { - "V": 0.0, - "T": 121.0 + "V": 337.52, + "T": 270.0 }, { - "V": 0.0, - "T": 126.0 + "V": 338.13, + "T": 275.0 }, { - "V": 0.0, - "T": 131.0 + "V": 338.75, + "T": 280.0 }, { - "V": 0.0, - "T": 136.0 + "V": 339.29, + "T": 285.0 }, { - "V": 0.0, - "T": 141.0 + "V": 339.89, + "T": 290.0 }, { - "V": 0.0, - "T": 146.0 + "V": 340.47, + "T": 295.0 }, { - "V": 0.0, - "T": 151.0 + "V": 340.9, + "T": 300.0 }, { - "V": 0.0, - "T": 156.0 + "V": 341.59, + "T": 305.0 }, { - "V": 0.0, - "T": 161.0 + "V": 341.92, + "T": 310.0 }, { - "V": 0.0, - "T": 166.0 + "V": 342.42, + "T": 315.0 }, { - "V": 0.0, - "T": 171.0 + "V": 343.06, + "T": 320.0 }, { - "V": 0.0, - "T": 176.0 + "V": 343.71, + "T": 325.0 }, { - "V": 0.0, - "T": 181.0 + "V": 344.27, + "T": 330.0 }, { - "V": 0.0, - "T": 186.0 + "V": 344.84, + "T": 335.0 }, { - "V": 0.0, - "T": 191.0 + "V": 345.26, + "T": 340.0 }, { - "V": 0.0, - "T": 196.0 + "V": 345.75, + "T": 345.0 }, { - "V": 0.0, - "T": 201.0 + "V": 346.13, + "T": 350.0 }, { - "V": 0.0, - "T": 206.0 + "V": 346.6, + "T": 355.0 }, { - "V": 0.0, - "T": 211.0 + "V": 347.04, + "T": 360.0 }, { - "V": 0.0, - "T": 216.0 + "V": 347.48, + "T": 365.0 }, { - "V": 0.0, - "T": 221.0 + "V": 347.87, + "T": 370.0 }, { - "V": 0.0, - "T": 226.0 + "V": 348.28, + "T": 375.0 }, { - "V": 0.0, - "T": 231.0 + "V": 348.77, + "T": 380.0 }, { - "V": 0.0, - "T": 236.0 + "V": 349.18, + "T": 385.0 }, { - "V": 0.0, - "T": 241.0 + "V": 349.68, + "T": 390.0 }, { - "V": 0.0, - "T": 246.0 + "V": 350.09, + "T": 395.0 }, { - "V": 0.0, - "T": 251.0 + "V": 350.53, + "T": 400.0 }, { - "V": 0.0, - "T": 256.0 + "V": 351.01, + "T": 405.0 }, { - "V": 0.0, - "T": 261.0 + "V": 351.45, + "T": 410.0 }, { - "V": 0.0, - "T": 266.0 + "V": 351.94, + "T": 415.0 }, { - "V": 0.0, - "T": 271.0 + "V": 352.48, + "T": 420.0 }, { - "V": 0.0, - "T": 276.0 + "V": 353.07, + "T": 425.0 }, { - "V": 0.0, - "T": 281.0 + "V": 353.55, + "T": 430.0 }, { - "V": 0.0, - "T": 286.0 + "V": 354.02, + "T": 435.0 }, { - "V": 0.0, - "T": 291.0 + "V": 354.61, + "T": 440.0 }, { - "V": 0.0, - "T": 296.0 + "V": 355.24, + "T": 445.0 }, { - "V": 0.0, - "T": 301.0 + "V": 355.83, + "T": 450.0 }, { - "V": 0.0, - "T": 306.0 + "V": 356.36, + "T": 455.0 }, { - "V": 0.0, - "T": 311.0 + "V": 356.99, + "T": 460.0 }, { - "V": 0.0, - "T": 316.0 + "V": 357.57, + "T": 465.0 }, { - "V": 0.0, - "T": 321.0 + "V": 357.84, + "T": 470.0 }, { - "V": 0.0, - "T": 326.0 + "V": 358.05, + "T": 475.0 }, { - "V": 0.0, - "T": 331.0 + "V": 358.35, + "T": 480.0 }, { - "V": 0.0, - "T": 336.0 + "V": 358.54, + "T": 485.0 }, { - "V": 0.0, - "T": 341.0 + "V": 358.87, + "T": 490.0 }, { - "V": 0.2351, - "T": 346.0 + "V": 359.14, + "T": 495.0 }, { - "V": 0.0, - "T": 351.0 + "V": 359.42, + "T": 500.0 }, { - "V": 0.0, - "T": 356.0 + "V": 359.96, + "T": 505.0 }, { - "V": 0.0, - "T": 361.0 + "V": 360.61, + "T": 510.0 }, { - "V": 0.0, - "T": 366.0 + "V": 360.24, + "T": 515.0 }, { - "V": 0.0, - "T": 371.0 + "V": 353.95, + "T": 520.0 }, { - "V": 0.0, - "T": 376.0 + "V": 353.95, + "T": 525.0 }, { - "V": 0.0, - "T": 381.0 + "V": 353.95, + "T": 530.0 }, { - "V": 0.0, - "T": 386.0 + "V": 353.95, + "T": 535.0 }, { - "V": 0.0, - "T": 391.0 + "V": 353.95, + "T": 540.0 }, { - "V": 0.0, - "T": 396.0 + "V": 353.95, + "T": 545.0 }, { - "V": 0.0, - "T": 401.0 + "V": 353.95, + "T": 550.0 }, { - "V": 0.0, - "T": 406.0 + "V": 353.95, + "T": 555.0 }, { - "V": 0.0, - "T": 411.0 + "V": 353.95, + "T": 560.0 }, { - "V": 0.0, - "T": 416.0 + "V": 353.96, + "T": 565.0 }, { - "V": 0.0, - "T": 421.0 + "V": 353.95, + "T": 570.0 }, { - "V": 0.0, - "T": 426.0 + "V": 353.95, + "T": 575.0 }, { - "V": 0.0, - "T": 431.0 + "V": 353.95, + "T": 580.0 }, { - "V": 0.0, - "T": 436.0 + "V": 353.95, + "T": 585.0 }, { - "V": 0.0, - "T": 441.0 + "V": 353.95, + "T": 590.0 }, { - "V": 0.0, - "T": 446.0 + "V": 353.98, + "T": 595.0 }, { - "V": 0.0, - "T": 451.0 + "V": 353.99, + "T": 600.0 + } + ], + "AllocRateMB": [ + { + "V": 0.1, + "T": 1.0 }, { - "V": 0.0, - "T": 456.0 + "V": 0.09, + "T": 6.0 }, { - "V": 0.0, - "T": 461.0 + "V": 0.05, + "T": 11.0 }, { - "V": 0.0, - "T": 466.0 + "V": 0.05, + "T": 16.0 }, { - "V": 0.0, - "T": 471.0 + "V": 0.1, + "T": 21.0 }, { - "V": 0.0, - "T": 476.0 + "V": 0.08, + "T": 26.0 }, { - "V": 0.0, - "T": 481.0 + "V": 0.09, + "T": 31.0 }, { - "V": 0.0, - "T": 486.0 + "V": 0.11, + "T": 36.0 }, { - "V": 0.0, - "T": 491.0 + "V": 0.15, + "T": 41.0 }, { - "V": 0.0, - "T": 496.0 + "V": 0.08, + "T": 46.0 }, { - "V": 0.0, - "T": 501.0 + "V": 0.09, + "T": 51.0 }, { - "V": 0.0, - "T": 506.0 + "V": 0.05, + "T": 56.0 }, { - "V": 0.0, - "T": 511.0 + "V": 0.1, + "T": 61.0 }, { - "V": 0.0, - "T": 516.0 + "V": 0.08, + "T": 66.0 }, { - "V": 0.0, - "T": 521.0 + "V": 0.09, + "T": 71.0 }, { - "V": 0.3944, - "T": 526.0 + "V": 0.08, + "T": 76.0 }, { - "V": 0.0, - "T": 531.0 + "V": 0.09, + "T": 81.0 }, { - "V": 0.0, - "T": 536.0 + "V": 0.07, + "T": 86.0 }, { - "V": 0.0, - "T": 541.0 + "V": 0.09, + "T": 91.0 }, { - "V": 0.0, - "T": 546.0 + "V": 0.05, + "T": 96.0 }, { - "V": 0.0, - "T": 551.0 + "V": 0.03, + "T": 101.0 }, { - "V": 0.0, - "T": 556.0 + "V": 0.05, + "T": 106.0 }, { - "V": 0.0, - "T": 561.0 + "V": 0.06, + "T": 111.0 }, { - "V": 0.0, - "T": 566.0 + "V": 0.06, + "T": 116.0 }, { - "V": 0.0, - "T": 571.0 + "V": 0.07, + "T": 121.0 }, { - "V": 0.0, - "T": 576.0 + "V": 0.09, + "T": 126.0 }, { - "V": 0.0, - "T": 581.0 + "V": 0.07, + "T": 131.0 }, { - "V": 0.0, - "T": 586.0 + "V": 0.09, + "T": 136.0 }, { - "V": 0.0, - "T": 591.0 + "V": 0.13, + "T": 141.0 }, { - "V": 0.0, - "T": 596.0 + "V": 0.09, + "T": 146.0 }, { - "V": 0.0, - "T": 601.0 - } - ], - "PauseTimeMs": [ - { - "V": 0.0, - "T": 1.0 - }, - { - "V": 0.0, - "T": 6.0 - }, - { - "V": 0.0, - "T": 11.0 - }, - { - "V": 0.0, - "T": 16.0 - }, - { - "V": 0.0, - "T": 21.0 - }, - { - "V": 0.0, - "T": 26.0 - }, - { - "V": 0.0, - "T": 31.0 - }, - { - "V": 0.0, - "T": 36.0 - }, - { - "V": 0.0, - "T": 41.0 - }, - { - "V": 0.0, - "T": 46.0 - }, - { - "V": 0.0, - "T": 51.0 - }, - { - "V": 0.0, - "T": 56.0 - }, - { - "V": 0.0, - "T": 61.0 - }, - { - "V": 0.0, - "T": 66.0 - }, - { - "V": 0.0, - "T": 71.0 - }, - { - "V": 0.0, - "T": 76.0 - }, - { - "V": 0.0, - "T": 81.0 - }, - { - "V": 0.0, - "T": 86.0 - }, - { - "V": 0.0, - "T": 91.0 - }, - { - "V": 0.0, - "T": 96.0 - }, - { - "V": 0.0, - "T": 101.0 - }, - { - "V": 0.0, - "T": 106.0 - }, - { - "V": 0.0, - "T": 111.0 - }, - { - "V": 0.0, - "T": 116.0 - }, - { - "V": 0.0, - "T": 121.0 - }, - { - "V": 0.0, - "T": 126.0 - }, - { - "V": 0.0, - "T": 131.0 - }, - { - "V": 0.0, - "T": 136.0 - }, - { - "V": 0.0, - "T": 141.0 - }, - { - "V": 0.0, - "T": 146.0 - }, - { - "V": 0.0, + "V": 0.05, "T": 151.0 }, { - "V": 0.0, + "V": 0.08, "T": 156.0 }, { - "V": 0.0, + "V": 0.2, "T": 161.0 }, { - "V": 0.0, + "V": 0.09, "T": 166.0 }, { - "V": 0.0, + "V": 0.17, "T": 171.0 }, { - "V": 0.0, + "V": 0.06, "T": 176.0 }, { - "V": 0.0, + "V": 0.13, "T": 181.0 }, { - "V": 0.0, + "V": 0.09, "T": 186.0 }, { - "V": 0.0, + "V": 0.11, "T": 191.0 }, { - "V": 0.0, + "V": 0.08, "T": 196.0 }, { - "V": 0.0, + "V": 0.09, "T": 201.0 }, { - "V": 0.0, + "V": 0.12, "T": 206.0 }, { - "V": 0.0, + "V": 0.08, "T": 211.0 }, { - "V": 0.0, + "V": 0.09, "T": 216.0 }, { - "V": 0.0, + "V": 0.11, "T": 221.0 }, { - "V": 0.0, + "V": 0.11, "T": 226.0 }, { - "V": 0.0, + "V": 0.13, "T": 231.0 }, { - "V": 0.0, + "V": 0.09, "T": 236.0 }, { - "V": 0.0, + "V": 0.1, "T": 241.0 }, { - "V": 0.0, + "V": 0.08, "T": 246.0 }, { - "V": 0.0, + "V": 0.09, "T": 251.0 }, { - "V": 0.0, + "V": 0.06, "T": 256.0 }, { - "V": 0.0, + "V": 0.12, "T": 261.0 }, { - "V": 0.0, + "V": 0.14, "T": 266.0 }, { - "V": 0.0, + "V": 0.13, "T": 271.0 }, { - "V": 0.0, + "V": 0.17, "T": 276.0 }, { - "V": 0.0, + "V": 0.11, "T": 281.0 }, { - "V": 0.0, + "V": 0.12, "T": 286.0 }, { - "V": 0.0, + "V": 0.11, "T": 291.0 }, { - "V": 0.0, + "V": 0.1, "T": 296.0 }, { - "V": 0.0, + "V": 0.1, "T": 301.0 }, { - "V": 0.0, + "V": 0.08, "T": 306.0 }, { - "V": 0.0, + "V": 0.05, "T": 311.0 }, { - "V": 0.0, + "V": 0.14, "T": 316.0 }, { - "V": 0.0, + "V": 0.13, "T": 321.0 }, { - "V": 0.0, + "V": 0.15, "T": 326.0 }, { - "V": 0.0, + "V": 0.11, "T": 331.0 }, { - "V": 0.0, + "V": 0.09, "T": 336.0 }, { - "V": 0.0, + "V": 0.08, "T": 341.0 }, { - "V": 2.351, + "V": 0.08, "T": 346.0 }, { - "V": 0.0, + "V": 0.12, "T": 351.0 }, { - "V": 0.0, + "V": 0.09, "T": 356.0 }, { - "V": 0.0, + "V": 0.08, "T": 361.0 }, { - "V": 0.0, + "V": 0.09, "T": 366.0 }, { - "V": 0.0, + "V": 0.08, "T": 371.0 }, { - "V": 0.0, + "V": 0.11, "T": 376.0 }, { - "V": 0.0, + "V": 0.09, "T": 381.0 }, { - "V": 0.0, + "V": 0.11, "T": 386.0 }, { - "V": 0.0, + "V": 0.08, "T": 391.0 }, { - "V": 0.0, + "V": 0.11, "T": 396.0 }, { - "V": 0.0, + "V": 0.1, "T": 401.0 }, { - "V": 0.0, + "V": 0.08, "T": 406.0 }, { - "V": 0.0, + "V": 0.09, "T": 411.0 }, { - "V": 0.0, + "V": 0.1, "T": 416.0 }, { - "V": 0.0, + "V": 0.12, "T": 421.0 }, { - "V": 0.0, + "V": 0.08, "T": 426.0 }, { - "V": 0.0, + "V": 0.1, "T": 431.0 }, { - "V": 0.0, + "V": 0.14, "T": 436.0 }, { - "V": 0.0, + "V": 0.09, "T": 441.0 }, { - "V": 0.0, + "V": 0.12, "T": 446.0 }, { - "V": 0.0, + "V": 0.13, "T": 451.0 }, { - "V": 0.0, + "V": 0.16, "T": 456.0 }, { - "V": 0.0, + "V": 0.13, "T": 461.0 }, { - "V": 0.0, + "V": 0.08, "T": 466.0 }, { - "V": 0.0, + "V": 0.05, "T": 471.0 }, { - "V": 0.0, + "V": 0.06, "T": 476.0 }, { - "V": 0.0, + "V": 0.05, "T": 481.0 }, { - "V": 0.0, + "V": 0.05, "T": 486.0 }, { - "V": 0.0, + "V": 0.06, "T": 491.0 }, { - "V": 0.0, + "V": 0.1, "T": 496.0 }, { - "V": 0.0, + "V": 0.05, "T": 501.0 }, { - "V": 0.0, + "V": 0.13, "T": 506.0 }, { - "V": 0.0, + "V": 0.11, "T": 511.0 }, { - "V": 0.0, + "V": 0.16, "T": 516.0 }, { - "V": 0.0, + "V": 0.11, "T": 521.0 }, { - "V": 3.944, + "V": 0.14, "T": 526.0 }, { - "V": 0.0, + "V": 0.12, "T": 531.0 }, { - "V": 0.0, + "V": 0.11, "T": 536.0 }, { - "V": 0.0, + "V": 0.16, "T": 541.0 }, { - "V": 0.0, + "V": 0.11, "T": 546.0 }, { - "V": 0.0, + "V": 0.04, "T": 551.0 }, { - "V": 0.0, + "V": 0.09, "T": 556.0 }, { - "V": 0.0, + "V": 0.13, "T": 561.0 }, { - "V": 0.0, + "V": 0.13, "T": 566.0 }, { - "V": 0.0, + "V": 0.13, "T": 571.0 }, { - "V": 0.0, + "V": 0.17, "T": 576.0 }, { - "V": 0.0, + "V": 0.12, "T": 581.0 }, { - "V": 0.0, + "V": 0.14, "T": 586.0 }, { - "V": 0.0, + "V": 0.1, "T": 591.0 }, { - "V": 0.0, + "V": 0.13, "T": 596.0 }, { - "V": 0.0, + "V": 0.02, "T": 601.0 } ], - "WorkingSetMB": [ + "OpsPerSec": [ { - "V": 310.84, + "V": 1.0, "T": 0.0 }, { - "V": 307.3, - "T": 5.0 + "V": 1.0, + "T": 4.0 }, { - "V": 308.84, - "T": 10.0 + "V": 1.0, + "T": 8.0 }, { - "V": 311.93, - "T": 15.0 + "V": 2.0, + "T": 12.0 }, { - "V": 312.61, + "V": 1.0, + "T": 16.0 + }, + { + "V": 3.0, "T": 20.0 }, { - "V": 315.43, - "T": 25.0 + "V": 2.0, + "T": 24.0 }, { - "V": 315.87, - "T": 30.0 + "V": 1.0, + "T": 28.0 }, { - "V": 316.2, - "T": 35.0 + "V": 4.0, + "T": 32.0 }, { - "V": 316.66, + "V": 4.0, + "T": 36.0 + }, + { + "V": 4.0, "T": 40.0 }, { - "V": 317.06, - "T": 45.0 + "V": 4.0, + "T": 44.0 }, { - "V": 317.49, - "T": 50.0 + "V": 3.0, + "T": 48.0 }, { - "V": 317.75, - "T": 55.0 + "V": 4.0, + "T": 52.0 }, { - "V": 318.24, + "V": 2.0, + "T": 56.0 + }, + { + "V": 2.0, "T": 60.0 }, { - "V": 318.64, - "T": 65.0 + "V": 3.0, + "T": 64.0 }, { - "V": 318.94, - "T": 70.0 + "V": 1.0, + "T": 68.0 }, { - "V": 319.23, - "T": 75.0 + "V": 2.0, + "T": 72.0 }, { - "V": 319.6, + "V": 3.0, + "T": 76.0 + }, + { + "V": 3.0, "T": 80.0 }, { - "V": 319.88, + "V": 2.0, "T": 85.0 }, { - "V": 320.19, + "V": 1.0, "T": 90.0 }, { - "V": 320.47, - "T": 95.0 + "V": 1.0, + "T": 94.0 }, { - "V": 320.77, - "T": 100.0 + "V": 1.0, + "T": 98.0 }, { - "V": 321.04, - "T": 105.0 + "V": 3.0, + "T": 103.0 }, { - "V": 321.43, - "T": 110.0 + "V": 1.0, + "T": 109.0 }, { - "V": 321.68, - "T": 115.0 + "V": 1.0, + "T": 113.0 }, { - "V": 321.91, - "T": 120.0 + "V": 2.0, + "T": 117.0 }, { - "V": 322.25, - "T": 125.0 + "V": 2.0, + "T": 121.0 }, { - "V": 322.61, - "T": 130.0 + "V": 1.0, + "T": 125.0 }, { - "V": 322.87, - "T": 135.0 + "V": 1.0, + "T": 129.0 }, { - "V": 323.2, - "T": 140.0 + "V": 1.0, + "T": 133.0 }, { - "V": 323.49, - "T": 145.0 + "V": 2.0, + "T": 137.0 }, { - "V": 323.79, - "T": 150.0 + "V": 4.0, + "T": 141.0 }, { - "V": 324.18, - "T": 155.0 + "V": 3.0, + "T": 145.0 }, { - "V": 318.5, - "T": 160.0 + "V": 4.0, + "T": 149.0 }, { - "V": 318.47, - "T": 165.0 + "V": 2.0, + "T": 153.0 }, { - "V": 318.41, - "T": 170.0 + "V": 3.0, + "T": 157.0 }, { - "V": 318.39, - "T": 175.0 + "V": 7.0, + "T": 161.0 }, { - "V": 318.5, - "T": 180.0 + "V": 5.0, + "T": 165.0 }, { - "V": 318.48, - "T": 185.0 + "V": 3.0, + "T": 169.0 }, { - "V": 318.49, - "T": 190.0 + "V": 2.0, + "T": 173.0 }, { - "V": 318.48, - "T": 195.0 + "V": 3.0, + "T": 177.0 }, { - "V": 318.49, - "T": 200.0 + "V": 4.0, + "T": 181.0 }, { - "V": 318.52, - "T": 205.0 + "V": 4.0, + "T": 185.0 }, { - "V": 318.49, - "T": 210.0 + "V": 2.0, + "T": 189.0 }, { - "V": 318.48, - "T": 215.0 + "V": 2.0, + "T": 193.0 }, { - "V": 318.49, - "T": 220.0 + "V": 2.0, + "T": 197.0 }, { - "V": 318.48, - "T": 225.0 + "V": 2.0, + "T": 201.0 }, { - "V": 318.44, - "T": 230.0 + "V": 3.0, + "T": 205.0 }, { - "V": 318.46, - "T": 235.0 + "V": 4.0, + "T": 209.0 }, { - "V": 318.49, - "T": 240.0 + "V": 1.0, + "T": 213.0 }, { - "V": 318.47, - "T": 245.0 + "V": 2.0, + "T": 217.0 }, { - "V": 318.46, - "T": 250.0 + "V": 3.0, + "T": 221.0 }, { - "V": 318.52, - "T": 255.0 + "V": 4.0, + "T": 225.0 }, { - "V": 318.52, - "T": 260.0 + "V": 3.0, + "T": 229.0 }, { - "V": 318.52, + "V": 2.0, + "T": 233.0 + }, + { + "V": 2.0, + "T": 237.0 + }, + { + "V": 3.0, + "T": 241.0 + }, + { + "V": 3.0, + "T": 245.0 + }, + { + "V": 1.0, + "T": 249.0 + }, + { + "V": 3.0, + "T": 253.0 + }, + { + "V": 3.0, + "T": 257.0 + }, + { + "V": 4.0, + "T": 261.0 + }, + { + "V": 4.0, "T": 265.0 }, { - "V": 318.53, - "T": 270.0 + "V": 5.0, + "T": 269.0 }, { - "V": 318.58, - "T": 275.0 + "V": 2.0, + "T": 273.0 }, { - "V": 318.62, - "T": 280.0 + "V": 4.0, + "T": 277.0 }, { - "V": 318.58, + "V": 4.0, + "T": 281.0 + }, + { + "V": 4.0, "T": 285.0 }, { - "V": 318.59, - "T": 290.0 + "V": 3.0, + "T": 289.0 }, { - "V": 318.96, - "T": 295.0 + "V": 2.0, + "T": 293.0 }, { - "V": 319.3, - "T": 300.0 + "V": 3.0, + "T": 297.0 }, { - "V": 319.77, + "V": 4.0, + "T": 301.0 + }, + { + "V": 3.0, "T": 305.0 }, { - "V": 320.33, - "T": 310.0 + "V": 1.0, + "T": 309.0 }, { - "V": 320.87, - "T": 315.0 + "V": 3.0, + "T": 313.0 }, { - "V": 321.27, - "T": 320.0 + "V": 5.0, + "T": 317.0 }, { - "V": 321.46, + "V": 5.0, + "T": 321.0 + }, + { + "V": 4.0, "T": 325.0 }, { - "V": 321.71, - "T": 330.0 + "V": 4.0, + "T": 329.0 }, { - "V": 321.95, - "T": 335.0 + "V": 2.0, + "T": 333.0 }, { - "V": 322.32, - "T": 340.0 + "V": 2.0, + "T": 337.0 }, { - "V": 322.91, + "V": 3.0, + "T": 341.0 + }, + { + "V": 4.0, "T": 345.0 }, { - "V": 322.95, - "T": 350.0 + "V": 2.0, + "T": 349.0 }, { - "V": 322.97, - "T": 355.0 + "V": 2.0, + "T": 353.0 }, { - "V": 323.02, - "T": 360.0 + "V": 3.0, + "T": 357.0 }, { - "V": 323.0, + "V": 2.0, + "T": 361.0 + }, + { + "V": 3.0, "T": 365.0 }, { - "V": 323.05, - "T": 370.0 + "V": 2.0, + "T": 369.0 }, { - "V": 323.05, - "T": 375.0 + "V": 2.0, + "T": 373.0 }, { - "V": 323.08, - "T": 380.0 + "V": 3.0, + "T": 377.0 }, { - "V": 323.09, + "V": 4.0, + "T": 381.0 + }, + { + "V": 2.0, "T": 385.0 }, { - "V": 323.06, - "T": 390.0 + "V": 2.0, + "T": 389.0 }, { - "V": 323.05, - "T": 395.0 + "V": 2.0, + "T": 393.0 }, { - "V": 323.04, - "T": 400.0 + "V": 4.0, + "T": 397.0 }, { - "V": 323.07, + "V": 4.0, + "T": 401.0 + }, + { + "V": 3.0, "T": 405.0 }, { - "V": 323.07, - "T": 410.0 + "V": 3.0, + "T": 409.0 }, { - "V": 323.1, - "T": 415.0 + "V": 2.0, + "T": 413.0 }, { - "V": 323.1, - "T": 420.0 + "V": 4.0, + "T": 417.0 }, { - "V": 323.13, + "V": 4.0, + "T": 421.0 + }, + { + "V": 5.0, "T": 425.0 }, { - "V": 323.14, - "T": 430.0 + "V": 2.0, + "T": 429.0 }, { - "V": 323.14, - "T": 435.0 + "V": 2.0, + "T": 433.0 }, { - "V": 323.15, - "T": 440.0 + "V": 4.0, + "T": 437.0 }, { - "V": 323.16, + "V": 3.0, + "T": 441.0 + }, + { + "V": 6.0, "T": 445.0 }, { - "V": 323.15, - "T": 450.0 + "V": 4.0, + "T": 449.0 }, { - "V": 323.25, - "T": 455.0 + "V": 3.0, + "T": 453.0 }, { - "V": 323.27, - "T": 460.0 + "V": 4.0, + "T": 457.0 }, { - "V": 323.29, + "V": 5.0, + "T": 461.0 + }, + { + "V": 4.0, "T": 465.0 }, { - "V": 323.3, + "V": 1.0, "T": 470.0 }, { - "V": 323.31, + "V": 1.0, "T": 475.0 }, { - "V": 323.32, - "T": 480.0 + "V": 1.0, + "T": 479.0 }, { - "V": 323.3, - "T": 485.0 + "V": 1.0, + "T": 483.0 }, { - "V": 323.35, - "T": 490.0 + "V": 1.0, + "T": 487.0 }, { - "V": 323.36, + "V": 1.0, + "T": 491.0 + }, + { + "V": 2.0, "T": 495.0 }, { - "V": 323.37, + "V": 1.0, "T": 500.0 }, { - "V": 323.39, - "T": 505.0 + "V": 5.0, + "T": 504.0 }, { - "V": 323.41, - "T": 510.0 + "V": 3.0, + "T": 508.0 }, { - "V": 323.42, - "T": 515.0 + "V": 4.0, + "T": 512.0 }, { - "V": 323.45, + "V": 6.0, + "T": 516.0 + }, + { + "V": 5.0, "T": 520.0 }, { - "V": 323.49, - "T": 525.0 + "V": 4.0, + "T": 524.0 }, { - "V": 324.8, - "T": 530.0 + "V": 4.0, + "T": 528.0 }, { - "V": 324.8, - "T": 535.0 + "V": 5.0, + "T": 532.0 }, { - "V": 324.85, + "V": 4.0, + "T": 536.0 + }, + { + "V": 5.0, "T": 540.0 }, { - "V": 324.86, - "T": 545.0 + "V": 6.0, + "T": 544.0 }, { - "V": 324.87, - "T": 550.0 + "V": 1.0, + "T": 548.0 }, { - "V": 324.87, - "T": 555.0 + "V": 1.0, + "T": 553.0 }, { - "V": 324.88, - "T": 560.0 + "V": 3.0, + "T": 558.0 }, { - "V": 324.91, - "T": 565.0 + "V": 4.0, + "T": 562.0 }, { - "V": 324.92, + "V": 4.0, + "T": 566.0 + }, + { + "V": 4.0, "T": 570.0 }, { - "V": 324.92, - "T": 575.0 + "V": 4.0, + "T": 574.0 }, { - "V": 324.94, - "T": 580.0 + "V": 5.0, + "T": 578.0 }, { - "V": 324.94, - "T": 585.0 + "V": 3.0, + "T": 582.0 }, { - "V": 324.98, + "V": 6.0, + "T": 586.0 + }, + { + "V": 4.0, "T": 590.0 }, { - "V": 325.03, - "T": 595.0 + "V": 4.0, + "T": 594.0 }, { - "V": 325.01, - "T": 600.0 + "V": 3.0, + "T": 598.0 } ], - "AllocRateMB": [ + "Gen0PerSec": [ { - "V": 0.09, + "V": 0.0, "T": 1.0 }, { - "V": 0.11, + "V": 0.0, "T": 6.0 }, { - "V": 0.09, + "V": 0.0, "T": 11.0 }, { - "V": 0.1, + "V": 0.0, "T": 16.0 }, { - "V": 0.1, + "V": 0.0, "T": 21.0 }, { - "V": 0.14, + "V": 0.0, "T": 26.0 }, { - "V": 0.08, + "V": 0.0, "T": 31.0 }, { - "V": 0.08, + "V": 0.0, "T": 36.0 }, { - "V": 0.1, + "V": 0.0, "T": 41.0 }, { - "V": 0.1, + "V": 0.0, "T": 46.0 }, { - "V": 0.05, + "V": 0.0, "T": 51.0 }, { - "V": 0.09, + "V": 0.0, "T": 56.0 }, { - "V": 0.07, + "V": 0.0, "T": 61.0 }, { - "V": 0.04, + "V": 0.0, "T": 66.0 }, { - "V": 0.05, + "V": 0.0, "T": 71.0 }, { - "V": 0.08, + "V": 0.0, "T": 76.0 }, { - "V": 0.06, + "V": 0.0, "T": 81.0 }, { - "V": 0.05, + "V": 0.0, "T": 86.0 }, { - "V": 0.05, + "V": 0.0, "T": 91.0 }, { - "V": 0.05, + "V": 0.0, "T": 96.0 }, { - "V": 0.05, + "V": 0.0, "T": 101.0 }, { - "V": 0.08, + "V": 0.0, "T": 106.0 }, { - "V": 0.04, + "V": 0.0, "T": 111.0 }, { - "V": 0.05, + "V": 0.0, "T": 116.0 }, { - "V": 0.05, + "V": 0.0, "T": 121.0 }, { - "V": 0.07, + "V": 0.0, "T": 126.0 }, { - "V": 0.05, + "V": 0.0, "T": 131.0 }, { - "V": 0.07, + "V": 0.0, "T": 136.0 }, { - "V": 0.04, + "V": 0.0, "T": 141.0 }, { - "V": 0.05, + "V": 0.0, "T": 146.0 }, { - "V": 0.05, + "V": 0.0, "T": 151.0 }, { - "V": 0.06, + "V": 0.0, "T": 156.0 }, { - "V": 0.05, + "V": 0.0, "T": 161.0 }, { - "V": 0.05, + "V": 0.0, "T": 166.0 }, { - "V": 0.04, + "V": 0.0, "T": 171.0 }, { - "V": 0.06, + "V": 0.0, "T": 176.0 }, { - "V": 0.05, + "V": 0.0, "T": 181.0 }, { - "V": 0.12, + "V": 0.0, "T": 186.0 }, { - "V": 0.1, + "V": 0.0, "T": 191.0 }, { - "V": 0.1, + "V": 0.0, "T": 196.0 }, { - "V": 0.06, + "V": 0.0, "T": 201.0 }, { - "V": 0.1, + "V": 0.0, "T": 206.0 }, { - "V": 0.11, + "V": 0.0, "T": 211.0 }, { - "V": 0.07, + "V": 0.0, "T": 216.0 }, { - "V": 0.11, + "V": 0.0, "T": 221.0 }, { - "V": 0.11, + "V": 0.0, "T": 226.0 }, { - "V": 0.12, + "V": 0.0, "T": 231.0 }, { - "V": 0.12, + "V": 0.0, "T": 236.0 }, { - "V": 0.08, + "V": 0.0, "T": 241.0 }, { - "V": 0.13, + "V": 0.0, "T": 246.0 }, { - "V": 0.13, + "V": 0.0, "T": 251.0 }, { - "V": 0.11, + "V": 0.0, "T": 256.0 }, { - "V": 0.12, + "V": 0.0, "T": 261.0 }, { - "V": 0.04, + "V": 0.0, "T": 266.0 }, { - "V": 0.1, + "V": 0.0, "T": 271.0 }, { - "V": 0.11, + "V": 0.0, "T": 276.0 }, { - "V": 0.07, + "V": 0.0, "T": 281.0 }, { - "V": 0.07, + "V": 0.0, "T": 286.0 }, { - "V": 0.11, + "V": 0.0, "T": 291.0 }, { - "V": 0.09, + "V": 0.0, "T": 296.0 }, { - "V": 0.07, + "V": 0.0, "T": 301.0 }, { - "V": 0.09, + "V": 0.0, "T": 306.0 }, { - "V": 0.08, + "V": 0.0, "T": 311.0 }, { - "V": 0.11, + "V": 0.0, "T": 316.0 }, { - "V": 0.03, + "V": 0.0, "T": 321.0 }, { - "V": 0.03, + "V": 0.0, "T": 326.0 }, { - "V": 0.05, + "V": 0.0, "T": 331.0 }, { - "V": 0.05, + "V": 0.0, "T": 336.0 }, { - "V": 0.08, + "V": 0.0, "T": 341.0 }, { - "V": 0.11, + "V": 0.0, "T": 346.0 }, { - "V": 0.04, + "V": 0.0, "T": 351.0 }, { - "V": 0.13, + "V": 0.0, "T": 356.0 }, { - "V": 0.09, + "V": 0.0, "T": 361.0 }, { - "V": 0.13, + "V": 0.0, "T": 366.0 }, { - "V": 0.12, + "V": 0.0, "T": 371.0 }, { - "V": 0.12, + "V": 0.0, "T": 376.0 }, { - "V": 0.12, + "V": 0.0, "T": 381.0 }, { - "V": 0.12, + "V": 0.0, "T": 386.0 }, { - "V": 0.1, + "V": 0.0, "T": 391.0 }, { - "V": 0.11, + "V": 0.0, "T": 396.0 }, { - "V": 0.1, + "V": 0.0, "T": 401.0 }, { - "V": 0.12, + "V": 0.0, "T": 406.0 }, { - "V": 0.11, + "V": 0.0, "T": 411.0 }, { - "V": 0.13, + "V": 0.0, "T": 416.0 }, { - "V": 0.08, + "V": 0.0, "T": 421.0 }, { - "V": 0.15, + "V": 0.0, "T": 426.0 }, { - "V": 0.04, + "V": 0.0, "T": 431.0 }, { - "V": 0.03, + "V": 0.0, "T": 436.0 }, { - "V": 0.04, + "V": 0.0, "T": 441.0 }, { - "V": 0.04, + "V": 0.0, "T": 446.0 }, { - "V": 0.13, + "V": 0.0, "T": 451.0 }, { - "V": 0.1, + "V": 0.0, "T": 456.0 }, { - "V": 0.12, + "V": 0.0, "T": 461.0 }, { - "V": 0.1, + "V": 0.0, "T": 466.0 }, { - "V": 0.07, + "V": 0.0, "T": 471.0 }, { - "V": 0.05, + "V": 0.0, "T": 476.0 }, { - "V": 0.06, + "V": 0.0, "T": 481.0 }, { - "V": 0.12, + "V": 0.0, "T": 486.0 }, { - "V": 0.12, + "V": 0.0, "T": 491.0 }, { - "V": 0.07, + "V": 0.0, "T": 496.0 }, { - "V": 0.1, + "V": 0.0, "T": 501.0 }, { - "V": 0.09, + "V": 0.0, "T": 506.0 }, { - "V": 0.16, + "V": 0.0, "T": 511.0 }, { - "V": 0.11, + "V": 0.0, "T": 516.0 }, { - "V": 0.09, + "V": 0.0, "T": 521.0 }, { - "V": 0.11, + "V": 0.0, "T": 526.0 }, { - "V": 0.06, + "V": 0.0, "T": 531.0 }, { - "V": 0.12, + "V": 0.0, "T": 536.0 }, { - "V": 0.07, + "V": 0.0, "T": 541.0 }, { - "V": 0.14, + "V": 0.0, "T": 546.0 }, { - "V": 0.12, + "V": 0.0, "T": 551.0 }, { - "V": 0.14, + "V": 0.0, "T": 556.0 }, { - "V": 0.05, + "V": 0.0, "T": 561.0 }, { - "V": 0.06, + "V": 0.0, "T": 566.0 }, { - "V": 0.11, + "V": 0.0, "T": 571.0 }, { - "V": 0.05, + "V": 0.0, "T": 576.0 }, { - "V": 0.07, + "V": 0.0, "T": 581.0 }, { - "V": 0.1, + "V": 0.0, "T": 586.0 }, { - "V": 0.07, + "V": 0.0, "T": 591.0 }, { - "V": 0.07, + "V": 0.0, "T": 596.0 }, { - "V": 0.02, + "V": 0.0, "T": 601.0 } - ], - "OpsPerSec": [ + ] + } + }, + { + "ScenarioId": "growing-cache", + "ScenarioName": "Console: growing in-memory cache with real request workload (naturally escalating gen2 GCs)", + "GcModeId": "workstation", + "GcModeName": "Workstation GC", + "DurationSeconds": 600.0083229, + "Summary": { + "OperationsTotal": 37506, + "OpsPerSecondOverall": 62.50913290456291, + "TotalAllocatedBytes": 8923067248, + "Gen0Collections": 352, + "Gen1Collections": 351, + "Gen2Collections": 11, + "WorkingSetBytes": 7068979200, + "PeakWorkingSetBytes": 7068979200, + "HeapSizeBytes": 7420867512, + "TotalCommittedBytes": 7571333120, + "GcName": "CoreCLR (Workstation)", + "FinalCacheEntryCount": 30840080, + "ObservedGen2Events": 11, + "ObservedGen2PauseAvgMs": 567.6749090909091, + "ObservedGen2PauseMaxMs": 2349.084, + "ObservedGen2PauseMinMs": 1.122, + "ObservedGen2PauseSamplesMs": [ + 1.122, + 7.212, + 19.488, + 40.12599999999999, + 96.847, + 159.479, + 311.054, + 559.4639999999999, + 971.6179999999999, + 1728.9300000000003, + 2349.084 + ] + }, + "PauseTimePctStats": { + "Avg": 1.3744714285714281, + "P50": 1.316300000000048, + "P90": 3.7346999999999575, + "P99": 4.611300000000007, + "Max": 11.723600000000012, + "Min": 0.0, + "Count": 595 + }, + "PauseTimeMsStats": { + "Avg": 13.744714285714286, + "P50": 13.16300000000048, + "P90": 37.346999999999575, + "P99": 46.11300000000007, + "Max": 117.23600000000012, + "Min": 0.0, + "Count": 595 + }, + "WorkingSetStats": { + "Avg": 3491501351.5167785, + "P50": 3831513088.0, + "P90": 5829730304.0, + "P99": 7012450304.0, + "Max": 7058108416.0, + "Min": 96186368.0, + "Count": 596 + }, + "AllocRateMBStats": { + "Avg": 14.190307694122572, + "P50": 9.071517944335938, + "P90": 9.175865173339844, + "P99": 101.90104675292969, + "Max": 1546.9776153564453, + "Min": 8.792945861816406, + "Count": 595 + }, + "OpsPerSecStats": { + "Avg": 62.50503355704698, + "P50": 63.0, + "P90": 64.0, + "P99": 65.0, + "Max": 66.0, + "Min": 48.0, + "Count": 596 + }, + "TimeSeries": { + "PauseTimePct": [ { - "V": 1.0, - "T": 0.0 + "V": 2.0002, + "T": 1.0 }, { - "V": 2.0, - "T": 4.0 + "V": 2.1529, + "T": 5.0 }, { - "V": 3.0, - "T": 8.0 + "V": 0.0, + "T": 9.0 }, { - "V": 1.0, - "T": 12.0 + "V": 0.0, + "T": 13.0 }, { - "V": 3.0, - "T": 16.0 + "V": 1.8377, + "T": 17.0 }, { - "V": 2.0, - "T": 20.0 + "V": 1.2049, + "T": 21.0 }, { - "V": 2.0, - "T": 24.0 + "V": 0.0, + "T": 25.0 }, { - "V": 1.0, - "T": 28.0 + "V": 0.0, + "T": 29.0 }, { - "V": 1.0, - "T": 32.0 + "V": 1.9206, + "T": 33.0 }, { - "V": 2.0, - "T": 36.0 + "V": 3.8168, + "T": 37.0 }, { - "V": 2.0, - "T": 40.0 + "V": 0.0, + "T": 41.0 }, { - "V": 1.0, - "T": 44.0 + "V": 1.4694, + "T": 45.0 }, { - "V": 2.0, - "T": 48.0 + "V": 3.6275, + "T": 49.0 }, { - "V": 3.0, - "T": 52.0 + "V": 0.0, + "T": 53.0 }, { - "V": 2.0, - "T": 56.0 + "V": 0.0, + "T": 57.0 }, { - "V": 2.0, - "T": 60.0 + "V": 3.8572, + "T": 61.0 }, { - "V": 1.0, - "T": 64.0 + "V": 3.0218, + "T": 65.0 }, { - "V": 2.0, - "T": 68.0 + "V": 0.0, + "T": 69.0 }, { - "V": 1.0, - "T": 72.0 + "V": 3.8073, + "T": 73.0 }, { - "V": 2.0, - "T": 76.0 + "V": 1.8879, + "T": 77.0 }, { - "V": 1.0, - "T": 80.0 + "V": 1.6021, + "T": 81.0 }, { - "V": 1.0, - "T": 84.0 + "V": 0.0, + "T": 85.0 }, { - "V": 1.0, - "T": 88.0 + "V": 2.4804, + "T": 89.0 }, { - "V": 1.0, - "T": 92.0 + "V": 2.0233, + "T": 93.0 }, { - "V": 1.0, - "T": 96.0 + "V": 0.0, + "T": 97.0 }, { - "V": 1.0, - "T": 100.0 + "V": 0.0, + "T": 101.0 }, { - "V": 1.0, - "T": 104.0 + "V": 3.8744, + "T": 105.0 }, { - "V": 2.0, - "T": 108.0 + "V": 1.8631, + "T": 109.0 }, { - "V": 2.0, - "T": 112.0 + "V": 0.0, + "T": 113.0 }, { - "V": 1.0, - "T": 116.0 + "V": 3.6404, + "T": 117.0 }, { - "V": 1.0, - "T": 120.0 + "V": 1.9046, + "T": 121.0 }, { - "V": 1.0, - "T": 124.0 + "V": 0.0, + "T": 125.0 }, { - "V": 1.0, - "T": 128.0 + "V": 0.0, + "T": 129.0 }, { - "V": 2.0, - "T": 132.0 + "V": 3.8439, + "T": 133.0 }, { - "V": 2.0, - "T": 136.0 + "V": 4.0806, + "T": 137.0 }, { - "V": 1.0, - "T": 140.0 + "V": 0.0, + "T": 141.0 }, { - "V": 2.0, - "T": 144.0 + "V": 0.0, + "T": 145.0 }, { - "V": 1.0, - "T": 148.0 + "V": 1.3585, + "T": 149.0 }, { - "V": 1.0, - "T": 152.0 + "V": 3.5349, + "T": 153.0 }, { - "V": 1.0, - "T": 156.0 + "V": 0.0, + "T": 157.0 }, { - "V": 1.0, + "V": 2.4542, "T": 161.0 }, { - "V": 2.0, + "V": 1.8474, "T": 165.0 }, { - "V": 1.0, + "V": 0.0, "T": 169.0 }, { - "V": 2.0, + "V": 0.0, "T": 173.0 }, { - "V": 3.0, + "V": 1.8499, "T": 177.0 }, { - "V": 1.0, + "V": 1.3557, "T": 181.0 }, { - "V": 2.0, + "V": 0.0, "T": 185.0 }, { - "V": 4.0, + "V": 1.8413, "T": 189.0 }, { - "V": 4.0, + "V": 1.2287, "T": 193.0 }, { - "V": 3.0, + "V": 0.0, "T": 197.0 }, { - "V": 1.0, + "V": 0.0, "T": 201.0 }, { - "V": 1.0, + "V": 1.5039, "T": 205.0 }, { - "V": 3.0, + "V": 3.7458, "T": 209.0 }, { - "V": 4.0, + "V": 0.0, "T": 213.0 }, { - "V": 2.0, + "V": 0.0, "T": 217.0 }, { - "V": 4.0, + "V": 3.8238, "T": 221.0 }, { - "V": 2.0, + "V": 1.8731, "T": 225.0 }, { - "V": 5.0, + "V": 0.0, "T": 229.0 }, { - "V": 5.0, + "V": 1.4328, "T": 233.0 }, { - "V": 4.0, + "V": 3.8141, "T": 237.0 }, { - "V": 3.0, + "V": 0.0, "T": 241.0 }, { - "V": 2.0, + "V": 0.0, "T": 245.0 }, { - "V": 5.0, + "V": 2.0749, "T": 249.0 }, { - "V": 4.0, + "V": 1.3689, "T": 253.0 }, { - "V": 5.0, + "V": 0.0, "T": 257.0 }, { - "V": 4.0, + "V": 3.7209, "T": 261.0 }, { - "V": 2.0, + "V": 2.0224, "T": 265.0 }, { - "V": 2.0, + "V": 0.0, "T": 269.0 }, { - "V": 2.0, + "V": 0.0, "T": 273.0 }, { - "V": 4.0, + "V": 5.7319, "T": 277.0 }, { - "V": 2.0, + "V": 3.7441, "T": 281.0 }, { - "V": 2.0, + "V": 0.0, "T": 285.0 }, { - "V": 2.0, + "V": 0.0, "T": 289.0 }, { - "V": 3.0, + "V": 1.852, "T": 293.0 }, { - "V": 2.0, + "V": 1.203, "T": 297.0 }, { - "V": 2.0, + "V": 0.0, "T": 301.0 }, { - "V": 3.0, + "V": 1.8589, "T": 305.0 }, { - "V": 3.0, + "V": 1.2453, "T": 309.0 }, { - "V": 4.0, + "V": 0.0, "T": 313.0 }, { - "V": 4.0, + "V": 0.0, "T": 317.0 }, { - "V": 1.0, - "T": 322.0 + "V": 2.0436, + "T": 321.0 }, { - "V": 1.0, - "T": 328.0 + "V": 3.6143, + "T": 325.0 }, { - "V": 1.0, + "V": 0.0, + "T": 329.0 + }, + { + "V": 1.9155, "T": 333.0 }, { - "V": 3.0, - "T": 338.0 + "V": 1.2768, + "T": 337.0 }, { - "V": 3.0, - "T": 342.0 + "V": 0.0, + "T": 341.0 }, { - "V": 4.0, - "T": 346.0 + "V": 0.0, + "T": 345.0 }, { - "V": 3.0, - "T": 350.0 + "V": 1.3848, + "T": 349.0 }, { - "V": 4.0, - "T": 354.0 + "V": 2.3085, + "T": 353.0 }, { - "V": 4.0, - "T": 358.0 + "V": 0.0, + "T": 357.0 }, { - "V": 3.0, - "T": 362.0 + "V": 0.0, + "T": 361.0 }, { - "V": 4.0, - "T": 366.0 + "V": 3.9312, + "T": 365.0 }, { - "V": 4.0, - "T": 370.0 + "V": 1.8805, + "T": 369.0 }, { - "V": 4.0, - "T": 374.0 + "V": 0.0, + "T": 373.0 }, { - "V": 2.0, - "T": 378.0 + "V": 1.9015, + "T": 377.0 }, { - "V": 3.0, - "T": 382.0 + "V": 1.173, + "T": 381.0 }, { - "V": 4.0, - "T": 386.0 + "V": 0.0, + "T": 385.0 }, { - "V": 3.0, - "T": 390.0 + "V": 0.0, + "T": 389.0 }, { - "V": 3.0, - "T": 394.0 + "V": 1.2476, + "T": 393.0 }, { - "V": 4.0, - "T": 398.0 + "V": 1.7885, + "T": 397.0 }, { - "V": 5.0, - "T": 402.0 + "V": 0.0, + "T": 401.0 }, { - "V": 3.0, - "T": 406.0 + "V": 3.8215, + "T": 405.0 }, { - "V": 3.0, - "T": 410.0 + "V": 1.8119, + "T": 409.0 }, { - "V": 3.0, - "T": 414.0 + "V": 0.0, + "T": 413.0 }, { - "V": 4.0, - "T": 418.0 + "V": 0.0, + "T": 417.0 }, { - "V": 3.0, - "T": 422.0 + "V": 3.6618, + "T": 421.0 }, { - "V": 5.0, - "T": 426.0 + "V": 1.9684, + "T": 425.0 }, { - "V": 2.0, - "T": 430.0 + "V": 0.0, + "T": 429.0 }, { - "V": 1.0, - "T": 435.0 + "V": 0.0, + "T": 433.0 }, { - "V": 1.0, - "T": 441.0 + "V": 1.9224, + "T": 437.0 }, { - "V": 1.0, + "V": 1.2669, + "T": 441.0 + }, + { + "V": 0.0, "T": 445.0 }, { - "V": 3.0, + "V": 1.8085, "T": 449.0 }, { - "V": 3.0, + "V": 1.6378, "T": 453.0 }, { - "V": 2.0, + "V": 0.0, "T": 457.0 }, { - "V": 4.0, + "V": 0.0, "T": 461.0 }, { - "V": 3.0, + "V": 1.8757, "T": 465.0 }, { - "V": 1.0, + "V": 1.2293, "T": 469.0 }, { - "V": 1.0, - "T": 475.0 + "V": 0.0, + "T": 473.0 }, { - "V": 1.0, - "T": 480.0 + "V": 1.5142, + "T": 477.0 }, { - "V": 5.0, - "T": 484.0 + "V": 2.4292, + "T": 481.0 }, { - "V": 3.0, - "T": 488.0 + "V": 0.0, + "T": 485.0 }, { - "V": 5.0, - "T": 492.0 + "V": 0.0, + "T": 489.0 }, { - "V": 3.0, - "T": 496.0 + "V": 3.6632, + "T": 493.0 }, { - "V": 3.0, - "T": 500.0 + "V": 1.8783, + "T": 497.0 }, { - "V": 3.0, - "T": 504.0 + "V": 0.0, + "T": 501.0 }, { - "V": 3.0, - "T": 508.0 + "V": 0.0, + "T": 505.0 }, { - "V": 4.0, - "T": 512.0 + "V": 1.2465, + "T": 509.0 }, { - "V": 3.0, - "T": 516.0 + "V": 3.6373, + "T": 513.0 }, { - "V": 2.0, - "T": 520.0 + "V": 0.0, + "T": 517.0 }, { - "V": 2.0, - "T": 524.0 + "V": 1.9785, + "T": 521.0 }, { - "V": 3.0, - "T": 528.0 + "V": 4.3273, + "T": 525.0 }, { - "V": 4.0, - "T": 532.0 + "V": 0.0, + "T": 529.0 }, { - "V": 4.0, - "T": 536.0 + "V": 0.0, + "T": 533.0 }, { - "V": 3.0, - "T": 540.0 + "V": 3.6279, + "T": 537.0 }, { - "V": 5.0, - "T": 544.0 + "V": 2.0374, + "T": 541.0 }, { - "V": 4.0, - "T": 548.0 + "V": 0.0, + "T": 545.0 }, { - "V": 4.0, - "T": 552.0 + "V": 3.868, + "T": 549.0 }, { - "V": 5.0, - "T": 556.0 + "V": 1.99, + "T": 553.0 }, { - "V": 1.0, + "V": 3.8825, + "T": 557.0 + }, + { + "V": 0.0, "T": 561.0 }, { - "V": 2.0, + "V": 1.7218, "T": 565.0 }, { - "V": 2.0, + "V": 3.8146, "T": 569.0 }, { - "V": 2.0, + "V": 0.0, "T": 573.0 }, { - "V": 1.0, + "V": 0.0, "T": 577.0 }, { - "V": 1.0, + "V": 4.5524, "T": 581.0 }, { - "V": 2.0, - "T": 586.0 - }, - { - "V": 1.0, - "T": 590.0 + "V": 2.0447, + "T": 585.0 }, { - "V": 2.0, - "T": 594.0 + "V": 0.0, + "T": 589.0 }, { - "V": 2.0, - "T": 598.0 + "V": 3.8427, + "T": 593.0 } ], - "Gen0PerSec": [ + "PauseTimeMs": [ { - "V": 0.0, + "V": 20.002, "T": 1.0 }, { - "V": 0.0, - "T": 6.0 + "V": 21.529, + "T": 5.0 }, { "V": 0.0, - "T": 11.0 + "T": 9.0 }, { "V": 0.0, - "T": 16.0 + "T": 13.0 }, { - "V": 0.0, + "V": 18.377, + "T": 17.0 + }, + { + "V": 12.049, "T": 21.0 }, { "V": 0.0, - "T": 26.0 + "T": 25.0 }, { "V": 0.0, - "T": 31.0 + "T": 29.0 }, { - "V": 0.0, - "T": 36.0 + "V": 19.206, + "T": 33.0 + }, + { + "V": 38.168, + "T": 37.0 }, { "V": 0.0, "T": 41.0 }, { - "V": 0.0, - "T": 46.0 + "V": 14.694, + "T": 45.0 }, { - "V": 0.0, - "T": 51.0 + "V": 36.275, + "T": 49.0 }, { "V": 0.0, - "T": 56.0 + "T": 53.0 }, { "V": 0.0, + "T": 57.0 + }, + { + "V": 38.572, "T": 61.0 }, { - "V": 0.0, - "T": 66.0 + "V": 30.218, + "T": 65.0 }, { "V": 0.0, - "T": 71.0 + "T": 69.0 }, { - "V": 0.0, - "T": 76.0 + "V": 38.073, + "T": 73.0 }, { - "V": 0.0, + "V": 18.879, + "T": 77.0 + }, + { + "V": 16.021, "T": 81.0 }, { "V": 0.0, - "T": 86.0 + "T": 85.0 }, { - "V": 0.0, - "T": 91.0 + "V": 24.804, + "T": 89.0 + }, + { + "V": 20.233, + "T": 93.0 }, { "V": 0.0, - "T": 96.0 + "T": 97.0 }, { "V": 0.0, "T": 101.0 }, { - "V": 0.0, - "T": 106.0 + "V": 38.744, + "T": 105.0 }, { - "V": 0.0, - "T": 111.0 + "V": 18.631, + "T": 109.0 }, { "V": 0.0, - "T": 116.0 + "T": 113.0 }, { - "V": 0.0, + "V": 36.404, + "T": 117.0 + }, + { + "V": 19.046, "T": 121.0 }, { "V": 0.0, - "T": 126.0 + "T": 125.0 }, { "V": 0.0, - "T": 131.0 + "T": 129.0 }, { - "V": 0.0, - "T": 136.0 + "V": 38.439, + "T": 133.0 + }, + { + "V": 40.806, + "T": 137.0 }, { "V": 0.0, @@ -35859,79 +35223,99 @@ }, { "V": 0.0, - "T": 146.0 + "T": 145.0 }, { - "V": 0.0, - "T": 151.0 + "V": 13.585, + "T": 149.0 }, { - "V": 0.0, - "T": 156.0 + "V": 35.349, + "T": 153.0 }, { "V": 0.0, + "T": 157.0 + }, + { + "V": 24.542, "T": 161.0 }, { - "V": 0.0, - "T": 166.0 + "V": 18.474, + "T": 165.0 }, { "V": 0.0, - "T": 171.0 + "T": 169.0 }, { "V": 0.0, - "T": 176.0 + "T": 173.0 }, { - "V": 0.0, + "V": 18.499, + "T": 177.0 + }, + { + "V": 13.557, "T": 181.0 }, { "V": 0.0, - "T": 186.0 + "T": 185.0 }, { - "V": 0.0, - "T": 191.0 + "V": 18.413, + "T": 189.0 + }, + { + "V": 12.287, + "T": 193.0 }, { "V": 0.0, - "T": 196.0 + "T": 197.0 }, { "V": 0.0, "T": 201.0 }, { - "V": 0.0, - "T": 206.0 + "V": 15.039, + "T": 205.0 }, { - "V": 0.0, - "T": 211.0 + "V": 37.458, + "T": 209.0 }, { "V": 0.0, - "T": 216.0 + "T": 213.0 }, { "V": 0.0, + "T": 217.0 + }, + { + "V": 38.238, "T": 221.0 }, { - "V": 0.0, - "T": 226.0 + "V": 18.731, + "T": 225.0 }, { "V": 0.0, - "T": 231.0 + "T": 229.0 }, { - "V": 0.0, - "T": 236.0 + "V": 14.328, + "T": 233.0 + }, + { + "V": 38.141, + "T": 237.0 }, { "V": 0.0, @@ -35939,207 +35323,259 @@ }, { "V": 0.0, - "T": 246.0 + "T": 245.0 }, { - "V": 0.0, - "T": 251.0 + "V": 20.749, + "T": 249.0 }, { - "V": 0.0, - "T": 256.0 + "V": 13.689, + "T": 253.0 }, { "V": 0.0, + "T": 257.0 + }, + { + "V": 37.209, "T": 261.0 }, { - "V": 0.0, - "T": 266.0 + "V": 20.224, + "T": 265.0 }, { "V": 0.0, - "T": 271.0 + "T": 269.0 }, { "V": 0.0, - "T": 276.0 + "T": 273.0 }, { - "V": 0.0, + "V": 57.319, + "T": 277.0 + }, + { + "V": 37.441, "T": 281.0 }, { "V": 0.0, - "T": 286.0 + "T": 285.0 }, { "V": 0.0, - "T": 291.0 + "T": 289.0 }, { - "V": 0.0, - "T": 296.0 + "V": 18.52, + "T": 293.0 + }, + { + "V": 12.03, + "T": 297.0 }, { "V": 0.0, "T": 301.0 }, { - "V": 0.0, - "T": 306.0 + "V": 18.589, + "T": 305.0 }, { - "V": 0.0, - "T": 311.0 + "V": 12.453, + "T": 309.0 }, { "V": 0.0, - "T": 316.0 + "T": 313.0 }, { "V": 0.0, + "T": 317.0 + }, + { + "V": 20.436, "T": 321.0 }, { - "V": 0.0, - "T": 326.0 + "V": 36.143, + "T": 325.0 }, { "V": 0.0, - "T": 331.0 + "T": 329.0 }, { - "V": 0.0, - "T": 336.0 + "V": 19.155, + "T": 333.0 + }, + { + "V": 12.768, + "T": 337.0 }, { "V": 0.0, "T": 341.0 }, { - "V": 1.0, - "T": 346.0 + "V": 0.0, + "T": 345.0 }, { - "V": 0.0, - "T": 351.0 + "V": 13.848, + "T": 349.0 + }, + { + "V": 23.085, + "T": 353.0 }, { "V": 0.0, - "T": 356.0 + "T": 357.0 }, { "V": 0.0, "T": 361.0 }, { - "V": 0.0, - "T": 366.0 + "V": 39.312, + "T": 365.0 }, { - "V": 0.0, - "T": 371.0 + "V": 18.805, + "T": 369.0 }, { "V": 0.0, - "T": 376.0 + "T": 373.0 }, { - "V": 0.0, + "V": 19.015, + "T": 377.0 + }, + { + "V": 11.73, "T": 381.0 }, { "V": 0.0, - "T": 386.0 + "T": 385.0 }, { "V": 0.0, - "T": 391.0 + "T": 389.0 }, { - "V": 0.0, - "T": 396.0 + "V": 12.476, + "T": 393.0 + }, + { + "V": 17.885, + "T": 397.0 }, { "V": 0.0, "T": 401.0 }, { - "V": 0.0, - "T": 406.0 + "V": 38.215, + "T": 405.0 }, { - "V": 0.0, - "T": 411.0 + "V": 18.119, + "T": 409.0 }, { "V": 0.0, - "T": 416.0 + "T": 413.0 }, { "V": 0.0, + "T": 417.0 + }, + { + "V": 36.618, "T": 421.0 }, { - "V": 0.0, - "T": 426.0 + "V": 19.684, + "T": 425.0 }, { "V": 0.0, - "T": 431.0 + "T": 429.0 }, { "V": 0.0, - "T": 436.0 + "T": 433.0 }, { - "V": 0.0, + "V": 19.224, + "T": 437.0 + }, + { + "V": 12.669, "T": 441.0 }, { "V": 0.0, - "T": 446.0 + "T": 445.0 }, { - "V": 0.0, - "T": 451.0 + "V": 18.085, + "T": 449.0 + }, + { + "V": 16.378, + "T": 453.0 }, { "V": 0.0, - "T": 456.0 + "T": 457.0 }, { "V": 0.0, "T": 461.0 }, { - "V": 0.0, - "T": 466.0 + "V": 18.757, + "T": 465.0 }, { - "V": 0.0, - "T": 471.0 + "V": 12.293, + "T": 469.0 }, { "V": 0.0, - "T": 476.0 + "T": 473.0 }, { - "V": 0.0, + "V": 15.142, + "T": 477.0 + }, + { + "V": 24.292, "T": 481.0 }, { "V": 0.0, - "T": 486.0 + "T": 485.0 }, { "V": 0.0, - "T": 491.0 + "T": 489.0 }, { - "V": 0.0, - "T": 496.0 + "V": 36.632, + "T": 493.0 + }, + { + "V": 18.783, + "T": 497.0 }, { "V": 0.0, @@ -36147,3428 +35583,3341 @@ }, { "V": 0.0, - "T": 506.0 + "T": 505.0 }, { - "V": 0.0, - "T": 511.0 + "V": 12.465, + "T": 509.0 }, { - "V": 0.0, - "T": 516.0 + "V": 36.373, + "T": 513.0 }, { "V": 0.0, + "T": 517.0 + }, + { + "V": 19.785, "T": 521.0 }, { - "V": 0.0, - "T": 526.0 + "V": 43.273, + "T": 525.0 }, { "V": 0.0, - "T": 531.0 + "T": 529.0 }, { "V": 0.0, - "T": 536.0 + "T": 533.0 }, { - "V": 0.0, - "T": 541.0 + "V": 36.279, + "T": 537.0 }, { - "V": 0.0, - "T": 546.0 + "V": 20.374, + "T": 541.0 }, { "V": 0.0, - "T": 551.0 + "T": 545.0 }, { - "V": 0.0, - "T": 556.0 + "V": 38.68, + "T": 549.0 + }, + { + "V": 19.9, + "T": 553.0 + }, + { + "V": 38.825, + "T": 557.0 }, { "V": 0.0, "T": 561.0 }, { - "V": 0.0, - "T": 566.0 + "V": 17.218, + "T": 565.0 }, { - "V": 0.0, - "T": 571.0 + "V": 38.146, + "T": 569.0 }, { "V": 0.0, - "T": 576.0 + "T": 573.0 }, { "V": 0.0, - "T": 581.0 + "T": 577.0 }, { - "V": 0.0, - "T": 586.0 + "V": 45.524, + "T": 581.0 }, { - "V": 0.0, - "T": 591.0 + "V": 20.447, + "T": 585.0 }, { "V": 0.0, - "T": 596.0 + "T": 589.0 }, { - "V": 0.0, - "T": 601.0 + "V": 38.427, + "T": 593.0 } - ] - } - }, - { - "ScenarioId": "dotllm-serve", - "ScenarioName": "dotLLM: zero-alloc-inference HTTP server (github.com/kkokosa/dotLLM)", - "GcModeId": "server", - "GcModeName": "Server GC", - "DurationSeconds": 600, - "Summary": { - "OperationsTotal": 1779.0, - "OpsPerSecondOverall": 2.965, - "TotalAllocatedBytes": 58629488.0, - "Gen0Collections": 1, - "Gen1Collections": 0, - "Gen2Collections": 1, - "WorkingSetBytes": 378380288.0, - "PeakWorkingSetBytes": 378380288.0, - "HeapSizeBytes": null, - "TotalCommittedBytes": 83992576.0, - "GcName": "Server GC" - }, - "PauseTimePctStats": { - "Avg": 0.0009806291390728474, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.5922999999999998, - "Min": 0.0, - "Count": 604 - }, - "PauseTimeMsStats": { - "Avg": 0.009806291390728472, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 5.922999999999997, - "Min": 0.0, - "Count": 604 - }, - "WorkingSetStats": { - "Avg": 355968133.7123967, - "P50": 357662720.0, - "P90": 373665792.0, - "P99": 377737216.0, - "Max": 378380288.0, - "Min": 321490944.0, - "Count": 605 - }, - "AllocRateMBStats": { - "Avg": 0.09257191538021264, - "P50": 0.09317779541015625, - "P90": 0.1328582763671875, - "P99": 0.16768646240234375, - "Max": 0.19870758056640625, - "Min": 0.0, - "Count": 604 - }, - "OpsPerSecStats": { - "Avg": 3.010152284263959, - "P50": 3.0, - "P90": 5.0, - "P99": 6.0, - "Max": 7.0, - "Min": 1.0, - "Count": 591 - }, - "TimeSeries": { - "PauseTimePct": [ + ], + "WorkingSetMB": [ { - "V": 0.0, - "T": 1.0 + "V": 91.73, + "T": 0.0 }, { - "V": 0.0, - "T": 6.0 + "V": 136.96, + "T": 4.0 }, { - "V": 0.0, - "T": 11.0 + "V": 171.71, + "T": 8.0 }, { - "V": 0.0, + "V": 222.15, + "T": 12.0 + }, + { + "V": 264.07, "T": 16.0 }, { - "V": 0.0, - "T": 21.0 + "V": 297.46, + "T": 20.0 }, { - "V": 0.0, - "T": 26.0 + "V": 347.39, + "T": 24.0 }, { - "V": 0.0, - "T": 31.0 + "V": 370.34, + "T": 28.0 }, { - "V": 0.0, - "T": 36.0 + "V": 448.65, + "T": 32.0 }, { - "V": 0.0, - "T": 41.0 + "V": 490.58, + "T": 36.0 }, { - "V": 0.0, - "T": 46.0 + "V": 527.69, + "T": 40.0 }, { - "V": 0.0, - "T": 51.0 + "V": 570.57, + "T": 44.0 }, { - "V": 0.0, - "T": 56.0 + "V": 620.36, + "T": 48.0 }, { - "V": 0.0, - "T": 61.0 + "V": 652.71, + "T": 52.0 }, { - "V": 0.0, - "T": 66.0 + "V": 681.99, + "T": 56.0 }, { - "V": 0.0, - "T": 71.0 + "V": 719.28, + "T": 60.0 }, { - "V": 0.0, - "T": 76.0 + "V": 831.98, + "T": 64.0 }, { - "V": 0.0, - "T": 81.0 + "V": 879.61, + "T": 68.0 }, { - "V": 0.0, - "T": 86.0 + "V": 907.28, + "T": 72.0 }, { - "V": 0.0, - "T": 91.0 + "V": 940.43, + "T": 76.0 }, { - "V": 0.0, - "T": 96.0 + "V": 973.75, + "T": 80.0 }, { - "V": 0.0, - "T": 101.0 + "V": 1014.89, + "T": 84.0 }, { - "V": 0.0, - "T": 106.0 + "V": 1084.95, + "T": 88.0 }, { - "V": 0.0, - "T": 111.0 + "V": 1121.88, + "T": 92.0 }, { - "V": 0.0, - "T": 116.0 + "V": 1152.42, + "T": 96.0 }, { - "V": 0.0, - "T": 121.0 + "V": 1191.56, + "T": 100.0 }, { - "V": 0.0, - "T": 126.0 + "V": 1218.82, + "T": 104.0 }, { - "V": 0.0, - "T": 131.0 + "V": 1248.04, + "T": 108.0 }, { - "V": 0.0, - "T": 136.0 + "V": 1277.59, + "T": 112.0 }, { - "V": 0.0, - "T": 141.0 + "V": 1314.62, + "T": 116.0 }, { - "V": 0.0, - "T": 146.0 + "V": 1347.91, + "T": 120.0 }, { - "V": 0.0, - "T": 151.0 + "V": 1377.17, + "T": 124.0 }, { - "V": 0.0, - "T": 156.0 + "V": 1417.3, + "T": 128.0 }, { - "V": 0.0, - "T": 161.0 + "V": 1443.77, + "T": 132.0 }, { - "V": 0.0, - "T": 166.0 + "V": 1637.85, + "T": 136.0 }, { - "V": 0.0, - "T": 171.0 + "V": 1687.93, + "T": 140.0 }, { - "V": 0.0, - "T": 176.0 + "V": 1715.43, + "T": 144.0 }, { - "V": 0.0, - "T": 181.0 + "V": 1754.22, + "T": 148.0 }, { - "V": 0.0, - "T": 186.0 + "V": 1790.64, + "T": 152.0 }, { - "V": 0.0, - "T": 191.0 + "V": 1823.82, + "T": 156.0 }, { - "V": 0.0, - "T": 196.0 + "V": 1996.5, + "T": 160.0 }, { - "V": 0.0, - "T": 201.0 + "V": 2033.08, + "T": 164.0 }, { - "V": 0.0, - "T": 206.0 + "V": 2065.45, + "T": 168.0 }, { - "V": 0.0, - "T": 211.0 + "V": 2102.06, + "T": 172.0 }, { - "V": 0.0, - "T": 216.0 + "V": 2131.57, + "T": 176.0 }, { - "V": 0.0, - "T": 221.0 + "V": 2161.28, + "T": 180.0 }, { - "V": 0.0, - "T": 226.0 + "V": 2201.3, + "T": 184.0 }, { - "V": 0.0, - "T": 231.0 + "V": 2224.98, + "T": 188.0 }, { - "V": 0.0, - "T": 236.0 + "V": 2260.2, + "T": 192.0 }, { - "V": 0.0, - "T": 241.0 + "V": 2293.54, + "T": 196.0 }, { - "V": 0.0, - "T": 246.0 + "V": 2324.2, + "T": 200.0 }, { - "V": 0.0, - "T": 251.0 + "V": 2360.03, + "T": 204.0 }, { - "V": 0.0, - "T": 256.0 + "V": 2390.65, + "T": 208.0 }, { - "V": 0.0, - "T": 261.0 + "V": 2419.98, + "T": 212.0 }, { - "V": 0.0, - "T": 266.0 + "V": 2449.15, + "T": 216.0 }, { - "V": 0.0, - "T": 271.0 + "V": 2486.53, + "T": 220.0 }, { - "V": 0.0, - "T": 276.0 + "V": 2519.62, + "T": 224.0 }, { - "V": 0.0, - "T": 281.0 + "V": 2548.93, + "T": 228.0 }, { - "V": 0.0, - "T": 286.0 + "V": 2585.67, + "T": 232.0 }, { - "V": 0.0, - "T": 291.0 + "V": 2615.45, + "T": 236.0 }, { - "V": 0.0, - "T": 296.0 + "V": 2644.58, + "T": 240.0 }, { - "V": 0.0, - "T": 301.0 + "V": 2687.48, + "T": 244.0 }, { - "V": 0.0, - "T": 306.0 + "V": 2714.53, + "T": 248.0 }, { - "V": 0.0, - "T": 311.0 + "V": 2745.75, + "T": 252.0 }, { - "V": 0.0, - "T": 316.0 + "V": 2786.59, + "T": 256.0 }, { - "V": 0.0, - "T": 321.0 + "V": 2810.95, + "T": 260.0 }, { - "V": 0.0, - "T": 326.0 + "V": 2840.25, + "T": 264.0 }, { - "V": 0.0, - "T": 331.0 + "V": 2888.09, + "T": 268.0 }, { - "V": 0.0, - "T": 336.0 + "V": 2909.85, + "T": 272.0 }, { - "V": 0.0, - "T": 341.0 + "V": 3018.39, + "T": 276.0 }, { - "V": 0.0, - "T": 346.0 + "V": 3311.07, + "T": 280.0 }, { - "V": 0.0, - "T": 351.0 + "V": 3344.13, + "T": 284.0 }, { - "V": 0.0, - "T": 356.0 + "V": 3701.11, + "T": 288.0 }, { - "V": 0.0, - "T": 361.0 + "V": 3601.93, + "T": 292.0 }, { - "V": 0.0, - "T": 366.0 + "V": 3635.02, + "T": 296.0 }, { - "V": 0.0, - "T": 371.0 + "V": 3671.03, + "T": 300.0 }, { - "V": 0.0, - "T": 376.0 + "V": 3700.76, + "T": 304.0 }, { - "V": 0.0, - "T": 381.0 + "V": 3732.4, + "T": 308.0 }, { - "V": 0.0, - "T": 386.0 + "V": 3772.48, + "T": 312.0 }, { - "V": 0.0, - "T": 391.0 + "V": 3794.25, + "T": 316.0 }, { - "V": 0.0, - "T": 396.0 + "V": 3822.68, + "T": 320.0 }, { - "V": 0.0, - "T": 401.0 + "V": 3859.07, + "T": 324.0 }, { - "V": 0.0, - "T": 406.0 + "V": 3891.63, + "T": 328.0 }, { - "V": 0.0, - "T": 411.0 + "V": 3920.07, + "T": 332.0 }, { - "V": 0.0, - "T": 416.0 + "V": 3952.66, + "T": 336.0 }, { - "V": 0.0, - "T": 421.0 + "V": 3992.74, + "T": 340.0 }, { - "V": 0.0, - "T": 426.0 + "V": 4013.5, + "T": 344.0 }, { - "V": 0.0, - "T": 431.0 + "V": 4052.09, + "T": 348.0 }, { - "V": 0.0, - "T": 436.0 + "V": 4081.82, + "T": 352.0 }, { - "V": 0.0, - "T": 441.0 + "V": 4111.05, + "T": 356.0 }, { - "V": 0.0, - "T": 446.0 + "V": 4148.95, + "T": 360.0 }, { - "V": 0.0, - "T": 451.0 + "V": 4175.86, + "T": 364.0 }, { - "V": 0.0, - "T": 456.0 + "V": 4204.42, + "T": 368.0 }, { - "V": 0.0, - "T": 461.0 + "V": 4248.14, + "T": 372.0 }, { - "V": 0.0, - "T": 466.0 + "V": 4272.37, + "T": 376.0 }, { - "V": 0.0, - "T": 471.0 + "V": 4305.11, + "T": 380.0 }, { - "V": 0.0, - "T": 476.0 + "V": 4345.3, + "T": 384.0 }, { - "V": 0.0, - "T": 481.0 + "V": 4366.88, + "T": 388.0 }, { - "V": 0.0, - "T": 486.0 + "V": 4401.31, + "T": 392.0 }, { - "V": 0.0, - "T": 491.0 + "V": 4431.75, + "T": 396.0 }, { - "V": 0.0, - "T": 496.0 + "V": 4462.91, + "T": 400.0 }, { - "V": 0.0, - "T": 501.0 + "V": 4499.45, + "T": 404.0 }, { - "V": 0.0, - "T": 506.0 + "V": 4529.11, + "T": 408.0 }, { - "V": 0.0, - "T": 511.0 + "V": 4557.46, + "T": 412.0 }, { - "V": 0.0, - "T": 516.0 + "V": 4597.4, + "T": 416.0 }, { - "V": 0.0, - "T": 521.0 + "V": 4622.51, + "T": 420.0 }, { - "V": 0.0, - "T": 526.0 + "V": 4650.96, + "T": 424.0 }, { - "V": 0.0, - "T": 531.0 + "V": 4697.57, + "T": 428.0 }, { - "V": 0.0, - "T": 536.0 + "V": 4720.01, + "T": 432.0 }, { - "V": 0.0, - "T": 541.0 + "V": 4748.38, + "T": 436.0 }, { - "V": 0.0, - "T": 546.0 + "V": 4777.59, + "T": 440.0 }, { - "V": 0.0, - "T": 551.0 + "V": 4817.64, + "T": 444.0 }, { - "V": 0.0, - "T": 556.0 + "V": 4841.93, + "T": 448.0 }, { - "V": 0.0, - "T": 561.0 + "V": 4877.79, + "T": 452.0 }, { - "V": 0.0, - "T": 566.0 + "V": 4917.84, + "T": 456.0 }, { - "V": 0.0, - "T": 571.0 + "V": 4939.33, + "T": 460.0 }, { - "V": 0.0, - "T": 576.0 + "V": 4967.72, + "T": 464.0 }, { - "V": 0.0, - "T": 581.0 + "V": 5008.46, + "T": 468.0 }, { - "V": 0.0, - "T": 586.0 + "V": 5043.2, + "T": 472.0 }, { - "V": 0.0, - "T": 591.0 + "V": 5084.47, + "T": 476.0 }, { - "V": 0.0, - "T": 596.0 + "V": 5112.09, + "T": 480.0 }, { - "V": 0.0, - "T": 601.0 - } - ], - "PauseTimeMs": [ - { - "V": 0.0, - "T": 1.0 + "V": 5141.58, + "T": 484.0 }, { - "V": 0.0, - "T": 6.0 + "V": 5181.49, + "T": 488.0 }, { - "V": 0.0, - "T": 11.0 + "V": 5206.57, + "T": 492.0 }, { - "V": 0.0, - "T": 16.0 + "V": 5235.1, + "T": 496.0 }, { - "V": 0.0, - "T": 21.0 + "V": 5280.5, + "T": 500.0 }, { - "V": 0.0, - "T": 26.0 + "V": 5302.8, + "T": 504.0 }, { - "V": 0.0, - "T": 31.0 + "V": 5337.71, + "T": 508.0 }, { - "V": 0.0, - "T": 36.0 + "V": 5368.93, + "T": 512.0 }, { - "V": 0.0, - "T": 41.0 + "V": 5397.27, + "T": 516.0 }, { - "V": 0.0, - "T": 46.0 + "V": 5425.82, + "T": 520.0 }, { - "V": 0.0, - "T": 51.0 + "V": 5462.28, + "T": 524.0 }, { - "V": 0.0, - "T": 56.0 + "V": 5493.54, + "T": 528.0 }, { - "V": 0.0, - "T": 61.0 + "V": 5534.0, + "T": 532.0 }, { - "V": 0.0, - "T": 66.0 + "V": 5559.66, + "T": 536.0 }, { - "V": 0.0, - "T": 71.0 + "V": 5588.3, + "T": 540.0 }, { - "V": 0.0, - "T": 76.0 + "V": 5630.07, + "T": 544.0 }, { - "V": 0.0, - "T": 81.0 + "V": 5653.15, + "T": 548.0 }, { - "V": 0.0, - "T": 86.0 + "V": 5681.71, + "T": 552.0 }, { - "V": 0.0, - "T": 91.0 + "V": 5718.17, + "T": 556.0 }, { - "V": 0.0, - "T": 96.0 + "V": 6413.9, + "T": 560.0 }, { - "V": 0.0, - "T": 101.0 + "V": 6455.06, + "T": 564.0 }, { - "V": 0.0, - "T": 106.0 + "V": 6489.02, + "T": 568.0 }, { - "V": 0.0, - "T": 111.0 + "V": 6522.39, + "T": 572.0 }, { - "V": 0.0, - "T": 116.0 + "V": 6555.42, + "T": 576.0 }, { - "V": 0.0, - "T": 121.0 + "V": 6596.61, + "T": 580.0 }, { - "V": 0.0, - "T": 126.0 + "V": 6632.95, + "T": 584.0 }, { - "V": 0.0, - "T": 131.0 + "V": 6679.62, + "T": 588.0 }, { - "V": 0.0, - "T": 136.0 + "V": 6708.29, + "T": 592.0 + } + ], + "AllocRateMB": [ + { + "V": 8.92, + "T": 1.0 }, { - "V": 0.0, - "T": 141.0 + "V": 9.0, + "T": 5.0 }, { - "V": 0.0, - "T": 146.0 + "V": 8.95, + "T": 9.0 }, { - "V": 0.0, - "T": 151.0 + "V": 9.05, + "T": 13.0 }, { - "V": 0.0, - "T": 156.0 + "V": 9.13, + "T": 17.0 }, { - "V": 0.0, - "T": 161.0 + "V": 9.08, + "T": 21.0 }, { - "V": 0.0, - "T": 166.0 + "V": 9.04, + "T": 25.0 }, { - "V": 0.0, - "T": 171.0 + "V": 101.9, + "T": 29.0 }, { - "V": 0.0, - "T": 176.0 + "V": 9.14, + "T": 33.0 }, { - "V": 0.0, - "T": 181.0 + "V": 9.08, + "T": 37.0 }, { - "V": 0.0, - "T": 186.0 + "V": 9.14, + "T": 41.0 }, { - "V": 0.0, - "T": 191.0 + "V": 8.99, + "T": 45.0 }, { - "V": 0.0, - "T": 196.0 + "V": 9.13, + "T": 49.0 }, { - "V": 0.0, - "T": 201.0 + "V": 9.03, + "T": 53.0 }, { - "V": 0.0, - "T": 206.0 + "V": 9.09, + "T": 57.0 }, { - "V": 0.0, - "T": 211.0 + "V": 9.14, + "T": 61.0 }, { - "V": 0.0, - "T": 216.0 + "V": 9.1, + "T": 65.0 }, { - "V": 0.0, - "T": 221.0 + "V": 9.06, + "T": 69.0 }, { - "V": 0.0, - "T": 226.0 + "V": 9.13, + "T": 73.0 }, { - "V": 0.0, - "T": 231.0 + "V": 9.2, + "T": 77.0 }, { - "V": 0.0, - "T": 236.0 + "V": 9.11, + "T": 81.0 }, { - "V": 0.0, - "T": 241.0 + "V": 9.04, + "T": 85.0 }, { - "V": 0.0, - "T": 246.0 + "V": 9.12, + "T": 89.0 }, { - "V": 0.0, - "T": 251.0 + "V": 9.0, + "T": 93.0 }, { - "V": 0.0, - "T": 256.0 + "V": 9.14, + "T": 97.0 }, { - "V": 0.0, - "T": 261.0 + "V": 9.02, + "T": 101.0 }, { - "V": 0.0, - "T": 266.0 + "V": 9.25, + "T": 105.0 }, { - "V": 0.0, - "T": 271.0 + "V": 9.07, + "T": 109.0 }, { - "V": 0.0, - "T": 276.0 + "V": 8.94, + "T": 113.0 }, { - "V": 0.0, - "T": 281.0 + "V": 9.14, + "T": 117.0 }, { - "V": 0.0, - "T": 286.0 + "V": 9.06, + "T": 121.0 }, { - "V": 0.0, - "T": 291.0 + "V": 9.05, + "T": 125.0 }, { - "V": 0.0, - "T": 296.0 + "V": 8.94, + "T": 129.0 }, { - "V": 0.0, - "T": 301.0 + "V": 9.15, + "T": 133.0 }, { - "V": 0.0, - "T": 306.0 + "V": 9.09, + "T": 137.0 }, { - "V": 0.0, - "T": 311.0 + "V": 9.03, + "T": 141.0 }, { - "V": 0.0, - "T": 316.0 + "V": 9.14, + "T": 145.0 }, { - "V": 0.0, - "T": 321.0 + "V": 9.05, + "T": 149.0 }, { - "V": 0.0, - "T": 326.0 + "V": 9.13, + "T": 153.0 }, { - "V": 0.0, - "T": 331.0 + "V": 9.04, + "T": 157.0 }, { - "V": 0.0, - "T": 336.0 + "V": 9.08, + "T": 161.0 }, { - "V": 0.0, - "T": 341.0 + "V": 9.07, + "T": 165.0 }, { - "V": 0.0, - "T": 346.0 + "V": 9.13, + "T": 169.0 }, { - "V": 0.0, - "T": 351.0 + "V": 9.0, + "T": 173.0 }, { - "V": 0.0, - "T": 356.0 + "V": 9.09, + "T": 177.0 }, { - "V": 0.0, - "T": 361.0 + "V": 9.02, + "T": 181.0 }, { - "V": 0.0, - "T": 366.0 + "V": 9.17, + "T": 185.0 }, { - "V": 0.0, - "T": 371.0 + "V": 9.09, + "T": 189.0 }, { - "V": 0.0, - "T": 376.0 + "V": 9.08, + "T": 193.0 }, { - "V": 0.0, - "T": 381.0 + "V": 9.05, + "T": 197.0 }, { - "V": 0.0, - "T": 386.0 + "V": 8.97, + "T": 201.0 }, { - "V": 0.0, - "T": 391.0 + "V": 9.08, + "T": 205.0 }, { - "V": 0.0, - "T": 396.0 + "V": 9.13, + "T": 209.0 }, { - "V": 0.0, - "T": 401.0 + "V": 9.04, + "T": 213.0 }, { - "V": 0.0, - "T": 406.0 + "V": 9.07, + "T": 217.0 }, { - "V": 0.0, - "T": 411.0 + "V": 9.08, + "T": 221.0 }, { - "V": 0.0, - "T": 416.0 + "V": 9.18, + "T": 225.0 }, { - "V": 0.0, - "T": 421.0 + "V": 9.1, + "T": 229.0 }, { - "V": 0.0, - "T": 426.0 + "V": 8.97, + "T": 233.0 }, { - "V": 0.0, - "T": 431.0 + "V": 9.06, + "T": 237.0 }, { - "V": 0.0, - "T": 436.0 + "V": 9.06, + "T": 241.0 }, { - "V": 0.0, - "T": 441.0 + "V": 9.08, + "T": 245.0 }, { - "V": 0.0, - "T": 446.0 + "V": 9.07, + "T": 249.0 }, { - "V": 0.0, - "T": 451.0 + "V": 9.05, + "T": 253.0 }, { - "V": 0.0, - "T": 456.0 + "V": 9.09, + "T": 257.0 }, { - "V": 0.0, - "T": 461.0 + "V": 9.03, + "T": 261.0 }, { - "V": 0.0, - "T": 466.0 + "V": 9.09, + "T": 265.0 }, { - "V": 0.0, - "T": 471.0 + "V": 9.11, + "T": 269.0 }, { - "V": 0.0, - "T": 476.0 + "V": 8.98, + "T": 273.0 }, { - "V": 0.0, - "T": 481.0 + "V": 119.03, + "T": 277.0 }, { - "V": 0.0, - "T": 486.0 + "V": 9.15, + "T": 281.0 }, { - "V": 0.0, - "T": 491.0 + "V": 9.04, + "T": 285.0 }, { - "V": 0.0, - "T": 496.0 + "V": 8.97, + "T": 289.0 }, { - "V": 0.0, - "T": 501.0 + "V": 9.02, + "T": 293.0 }, { - "V": 0.0, - "T": 506.0 + "V": 8.95, + "T": 297.0 }, { - "V": 0.0, - "T": 511.0 + "V": 9.1, + "T": 301.0 }, { - "V": 0.0, - "T": 516.0 + "V": 8.96, + "T": 305.0 }, { - "V": 0.0, - "T": 521.0 + "V": 8.96, + "T": 309.0 }, { - "V": 0.0, - "T": 526.0 + "V": 9.05, + "T": 313.0 }, { - "V": 0.0, - "T": 531.0 + "V": 9.01, + "T": 317.0 }, { - "V": 0.0, - "T": 536.0 + "V": 9.13, + "T": 321.0 }, { - "V": 0.0, - "T": 541.0 + "V": 9.15, + "T": 325.0 }, { - "V": 0.0, - "T": 546.0 + "V": 9.04, + "T": 329.0 }, { - "V": 0.0, - "T": 551.0 + "V": 8.97, + "T": 333.0 }, { - "V": 0.0, - "T": 556.0 + "V": 8.97, + "T": 337.0 }, { - "V": 0.0, - "T": 561.0 + "V": 9.34, + "T": 341.0 }, { - "V": 0.0, - "T": 566.0 + "V": 9.12, + "T": 345.0 }, { - "V": 0.0, - "T": 571.0 + "V": 9.01, + "T": 349.0 }, { - "V": 0.0, - "T": 576.0 + "V": 9.09, + "T": 353.0 }, { - "V": 0.0, - "T": 581.0 + "V": 9.03, + "T": 357.0 }, { - "V": 0.0, - "T": 586.0 + "V": 9.14, + "T": 361.0 }, { - "V": 0.0, - "T": 591.0 + "V": 9.15, + "T": 365.0 }, { - "V": 0.0, - "T": 596.0 + "V": 9.09, + "T": 369.0 }, { - "V": 0.0, - "T": 601.0 - } - ], - "WorkingSetMB": [ - { - "V": 306.6, - "T": 0.0 + "V": 9.06, + "T": 373.0 }, { - "V": 314.39, - "T": 5.0 + "V": 9.08, + "T": 377.0 }, { - "V": 309.31, - "T": 10.0 + "V": 9.03, + "T": 381.0 }, { - "V": 312.66, - "T": 15.0 + "V": 9.13, + "T": 385.0 }, { - "V": 313.37, - "T": 20.0 + "V": 9.0, + "T": 389.0 }, { - "V": 313.86, - "T": 25.0 + "V": 8.93, + "T": 393.0 }, { - "V": 316.75, - "T": 30.0 + "V": 9.13, + "T": 397.0 }, { - "V": 317.16, - "T": 35.0 + "V": 9.06, + "T": 401.0 }, { - "V": 317.78, - "T": 40.0 + "V": 8.79, + "T": 405.0 }, { - "V": 318.3, - "T": 45.0 + "V": 9.12, + "T": 409.0 }, { - "V": 318.8, - "T": 50.0 + "V": 9.17, + "T": 413.0 }, { - "V": 319.2, - "T": 55.0 + "V": 9.0, + "T": 417.0 }, { - "V": 319.63, - "T": 60.0 + "V": 9.15, + "T": 421.0 }, { - "V": 320.15, - "T": 65.0 + "V": 9.14, + "T": 425.0 }, { - "V": 320.46, - "T": 70.0 + "V": 9.08, + "T": 429.0 }, { - "V": 320.89, - "T": 75.0 + "V": 9.13, + "T": 433.0 }, { - "V": 321.35, - "T": 80.0 + "V": 9.06, + "T": 437.0 }, { - "V": 321.79, - "T": 85.0 + "V": 9.08, + "T": 441.0 }, { - "V": 321.95, - "T": 90.0 + "V": 9.11, + "T": 445.0 }, { - "V": 322.36, - "T": 95.0 + "V": 9.08, + "T": 449.0 }, { - "V": 322.62, - "T": 100.0 + "V": 9.0, + "T": 453.0 }, { - "V": 322.95, - "T": 105.0 + "V": 9.2, + "T": 457.0 }, { - "V": 323.16, - "T": 110.0 + "V": 9.11, + "T": 461.0 }, { - "V": 323.45, - "T": 115.0 + "V": 9.06, + "T": 465.0 }, { - "V": 323.79, - "T": 120.0 + "V": 8.94, + "T": 469.0 }, { - "V": 324.02, - "T": 125.0 + "V": 9.07, + "T": 473.0 }, { - "V": 324.41, - "T": 130.0 + "V": 8.84, + "T": 477.0 }, { - "V": 324.71, - "T": 135.0 + "V": 9.14, + "T": 481.0 }, { - "V": 325.25, - "T": 140.0 + "V": 9.06, + "T": 485.0 }, { - "V": 325.66, - "T": 145.0 + "V": 9.2, + "T": 489.0 }, { - "V": 326.19, - "T": 150.0 + "V": 9.02, + "T": 493.0 }, { - "V": 326.53, - "T": 155.0 + "V": 9.02, + "T": 497.0 }, { - "V": 327.02, - "T": 160.0 + "V": 9.02, + "T": 501.0 }, { - "V": 327.77, - "T": 165.0 + "V": 9.0, + "T": 505.0 }, { - "V": 328.19, - "T": 170.0 + "V": 9.06, + "T": 509.0 }, { - "V": 328.79, - "T": 175.0 + "V": 9.15, + "T": 513.0 }, { - "V": 329.11, - "T": 180.0 + "V": 9.14, + "T": 517.0 }, { - "V": 329.73, - "T": 185.0 + "V": 9.05, + "T": 521.0 }, { - "V": 330.18, - "T": 190.0 + "V": 9.02, + "T": 525.0 }, { - "V": 330.71, - "T": 195.0 + "V": 9.04, + "T": 529.0 }, { - "V": 331.04, - "T": 200.0 + "V": 9.08, + "T": 533.0 }, { - "V": 331.5, - "T": 205.0 + "V": 9.33, + "T": 537.0 }, { - "V": 331.88, - "T": 210.0 + "V": 8.96, + "T": 541.0 }, { - "V": 332.31, - "T": 215.0 + "V": 9.17, + "T": 545.0 }, { - "V": 332.76, - "T": 220.0 + "V": 8.92, + "T": 549.0 }, { - "V": 333.24, - "T": 225.0 + "V": 9.03, + "T": 553.0 }, { - "V": 333.7, - "T": 230.0 + "V": 1546.98, + "T": 557.0 }, { - "V": 334.18, - "T": 235.0 + "V": 9.21, + "T": 561.0 }, { - "V": 334.54, - "T": 240.0 + "V": 9.26, + "T": 565.0 }, { - "V": 335.05, - "T": 245.0 + "V": 9.22, + "T": 569.0 }, { - "V": 335.38, - "T": 250.0 + "V": 8.98, + "T": 573.0 }, { - "V": 335.79, - "T": 255.0 + "V": 9.18, + "T": 577.0 }, { - "V": 336.25, - "T": 260.0 + "V": 9.01, + "T": 581.0 }, { - "V": 336.93, - "T": 265.0 + "V": 9.04, + "T": 585.0 }, { - "V": 337.52, - "T": 270.0 + "V": 8.99, + "T": 589.0 }, { - "V": 338.13, - "T": 275.0 + "V": 9.16, + "T": 593.0 + } + ], + "OpsPerSec": [ + { + "V": 64.0, + "T": 0.0 }, { - "V": 338.75, - "T": 280.0 + "V": 63.0, + "T": 4.0 }, { - "V": 339.29, - "T": 285.0 + "V": 63.0, + "T": 8.0 }, { - "V": 339.89, - "T": 290.0 + "V": 63.0, + "T": 12.0 }, { - "V": 340.47, - "T": 295.0 + "V": 63.0, + "T": 16.0 }, { - "V": 340.9, - "T": 300.0 + "V": 63.0, + "T": 20.0 }, { - "V": 341.59, - "T": 305.0 + "V": 61.0, + "T": 24.0 }, { - "V": 341.92, - "T": 310.0 + "V": 62.0, + "T": 28.0 }, { - "V": 342.42, - "T": 315.0 + "V": 63.0, + "T": 32.0 }, { - "V": 343.06, - "T": 320.0 + "V": 63.0, + "T": 36.0 }, { - "V": 343.71, - "T": 325.0 + "V": 62.0, + "T": 40.0 }, { - "V": 344.27, - "T": 330.0 + "V": 62.0, + "T": 44.0 }, { - "V": 344.84, - "T": 335.0 + "V": 62.0, + "T": 48.0 }, { - "V": 345.26, - "T": 340.0 + "V": 61.0, + "T": 52.0 }, { - "V": 345.75, - "T": 345.0 + "V": 63.0, + "T": 56.0 }, { - "V": 346.13, - "T": 350.0 + "V": 63.0, + "T": 60.0 }, { - "V": 346.6, - "T": 355.0 + "V": 62.0, + "T": 64.0 }, { - "V": 347.04, - "T": 360.0 + "V": 61.0, + "T": 68.0 }, { - "V": 347.48, - "T": 365.0 + "V": 62.0, + "T": 72.0 }, { - "V": 347.87, - "T": 370.0 + "V": 63.0, + "T": 76.0 }, { - "V": 348.28, - "T": 375.0 + "V": 63.0, + "T": 80.0 }, { - "V": 348.77, - "T": 380.0 + "V": 61.0, + "T": 84.0 }, { - "V": 349.18, - "T": 385.0 + "V": 64.0, + "T": 88.0 }, { - "V": 349.68, - "T": 390.0 + "V": 63.0, + "T": 92.0 }, { - "V": 350.09, - "T": 395.0 + "V": 63.0, + "T": 96.0 }, { - "V": 350.53, - "T": 400.0 + "V": 61.0, + "T": 100.0 }, { - "V": 351.01, - "T": 405.0 + "V": 63.0, + "T": 104.0 }, { - "V": 351.45, - "T": 410.0 + "V": 63.0, + "T": 108.0 }, { - "V": 351.94, - "T": 415.0 + "V": 63.0, + "T": 112.0 }, { - "V": 352.48, - "T": 420.0 + "V": 62.0, + "T": 116.0 }, { - "V": 353.07, - "T": 425.0 + "V": 63.0, + "T": 120.0 }, { - "V": 353.55, - "T": 430.0 + "V": 63.0, + "T": 124.0 }, { - "V": 354.02, - "T": 435.0 + "V": 61.0, + "T": 128.0 }, { - "V": 354.61, - "T": 440.0 + "V": 64.0, + "T": 132.0 }, { - "V": 355.24, - "T": 445.0 + "V": 61.0, + "T": 136.0 }, { - "V": 355.83, - "T": 450.0 + "V": 62.0, + "T": 140.0 }, { - "V": 356.36, - "T": 455.0 + "V": 62.0, + "T": 144.0 }, { - "V": 356.99, - "T": 460.0 + "V": 63.0, + "T": 148.0 }, { - "V": 357.57, - "T": 465.0 + "V": 64.0, + "T": 152.0 }, { - "V": 357.84, - "T": 470.0 + "V": 62.0, + "T": 156.0 }, { - "V": 358.05, - "T": 475.0 + "V": 63.0, + "T": 160.0 }, { - "V": 358.35, - "T": 480.0 + "V": 63.0, + "T": 164.0 }, { - "V": 358.54, - "T": 485.0 + "V": 63.0, + "T": 168.0 }, { - "V": 358.87, - "T": 490.0 + "V": 62.0, + "T": 172.0 }, { - "V": 359.14, - "T": 495.0 + "V": 63.0, + "T": 176.0 }, { - "V": 359.42, - "T": 500.0 + "V": 64.0, + "T": 180.0 }, { - "V": 359.96, - "T": 505.0 + "V": 61.0, + "T": 184.0 }, { - "V": 360.61, - "T": 510.0 + "V": 62.0, + "T": 188.0 }, { - "V": 360.24, - "T": 515.0 + "V": 64.0, + "T": 192.0 }, { - "V": 353.95, - "T": 520.0 + "V": 62.0, + "T": 196.0 }, { - "V": 353.95, - "T": 525.0 + "V": 64.0, + "T": 200.0 }, { - "V": 353.95, - "T": 530.0 + "V": 63.0, + "T": 204.0 }, { - "V": 353.95, - "T": 535.0 + "V": 62.0, + "T": 208.0 }, { - "V": 353.95, - "T": 540.0 + "V": 63.0, + "T": 212.0 }, { - "V": 353.95, - "T": 545.0 + "V": 63.0, + "T": 216.0 }, { - "V": 353.95, - "T": 550.0 + "V": 63.0, + "T": 220.0 }, { - "V": 353.95, - "T": 555.0 + "V": 64.0, + "T": 224.0 }, { - "V": 353.95, - "T": 560.0 + "V": 62.0, + "T": 228.0 }, { - "V": 353.96, - "T": 565.0 + "V": 62.0, + "T": 232.0 }, { - "V": 353.95, - "T": 570.0 + "V": 63.0, + "T": 236.0 }, { - "V": 353.95, - "T": 575.0 + "V": 62.0, + "T": 240.0 }, { - "V": 353.95, - "T": 580.0 + "V": 61.0, + "T": 244.0 }, { - "V": 353.95, - "T": 585.0 + "V": 63.0, + "T": 248.0 }, { - "V": 353.95, - "T": 590.0 + "V": 63.0, + "T": 252.0 }, { - "V": 353.98, - "T": 595.0 + "V": 61.0, + "T": 256.0 }, { - "V": 353.99, - "T": 600.0 - } - ], - "AllocRateMB": [ - { - "V": 0.1, - "T": 1.0 + "V": 62.0, + "T": 260.0 }, { - "V": 0.09, - "T": 6.0 + "V": 63.0, + "T": 264.0 }, { - "V": 0.05, - "T": 11.0 + "V": 61.0, + "T": 268.0 }, { - "V": 0.05, - "T": 16.0 + "V": 63.0, + "T": 272.0 }, { - "V": 0.1, - "T": 21.0 + "V": 61.0, + "T": 276.0 }, { - "V": 0.08, - "T": 26.0 + "V": 63.0, + "T": 280.0 }, { - "V": 0.09, - "T": 31.0 + "V": 63.0, + "T": 284.0 }, { - "V": 0.11, - "T": 36.0 + "V": 56.0, + "T": 288.0 }, { - "V": 0.15, - "T": 41.0 + "V": 63.0, + "T": 292.0 }, { - "V": 0.08, - "T": 46.0 + "V": 63.0, + "T": 296.0 }, { - "V": 0.09, - "T": 51.0 + "V": 62.0, + "T": 300.0 }, { - "V": 0.05, - "T": 56.0 + "V": 63.0, + "T": 304.0 }, { - "V": 0.1, - "T": 61.0 + "V": 63.0, + "T": 308.0 }, { - "V": 0.08, - "T": 66.0 + "V": 61.0, + "T": 312.0 }, { - "V": 0.09, - "T": 71.0 + "V": 62.0, + "T": 316.0 }, { - "V": 0.08, - "T": 76.0 + "V": 64.0, + "T": 320.0 }, { - "V": 0.09, - "T": 81.0 + "V": 63.0, + "T": 324.0 }, { - "V": 0.07, - "T": 86.0 + "V": 63.0, + "T": 328.0 }, { - "V": 0.09, - "T": 91.0 + "V": 63.0, + "T": 332.0 }, { - "V": 0.05, - "T": 96.0 + "V": 63.0, + "T": 336.0 }, { - "V": 0.03, - "T": 101.0 + "V": 61.0, + "T": 340.0 }, { - "V": 0.05, - "T": 106.0 + "V": 62.0, + "T": 344.0 }, { - "V": 0.06, - "T": 111.0 + "V": 62.0, + "T": 348.0 }, { - "V": 0.06, - "T": 116.0 + "V": 63.0, + "T": 352.0 }, { - "V": 0.07, - "T": 121.0 + "V": 62.0, + "T": 356.0 }, { - "V": 0.09, - "T": 126.0 + "V": 62.0, + "T": 360.0 }, { - "V": 0.07, - "T": 131.0 + "V": 63.0, + "T": 364.0 }, { - "V": 0.09, - "T": 136.0 + "V": 64.0, + "T": 368.0 }, { - "V": 0.13, - "T": 141.0 + "V": 61.0, + "T": 372.0 }, { - "V": 0.09, - "T": 146.0 + "V": 63.0, + "T": 376.0 }, { - "V": 0.05, - "T": 151.0 + "V": 63.0, + "T": 380.0 }, { - "V": 0.08, - "T": 156.0 + "V": 62.0, + "T": 384.0 }, { - "V": 0.2, - "T": 161.0 + "V": 62.0, + "T": 388.0 }, { - "V": 0.09, - "T": 166.0 + "V": 64.0, + "T": 392.0 }, { - "V": 0.17, - "T": 171.0 + "V": 64.0, + "T": 396.0 }, { - "V": 0.06, - "T": 176.0 + "V": 64.0, + "T": 400.0 }, { - "V": 0.13, - "T": 181.0 + "V": 63.0, + "T": 404.0 }, { - "V": 0.09, - "T": 186.0 + "V": 63.0, + "T": 408.0 }, { - "V": 0.11, - "T": 191.0 + "V": 62.0, + "T": 412.0 }, { - "V": 0.08, - "T": 196.0 + "V": 61.0, + "T": 416.0 }, { - "V": 0.09, - "T": 201.0 + "V": 64.0, + "T": 420.0 }, { - "V": 0.12, - "T": 206.0 + "V": 62.0, + "T": 424.0 }, { - "V": 0.08, - "T": 211.0 + "V": 61.0, + "T": 428.0 }, { - "V": 0.09, - "T": 216.0 + "V": 62.0, + "T": 432.0 }, { - "V": 0.11, - "T": 221.0 + "V": 62.0, + "T": 436.0 }, { - "V": 0.11, - "T": 226.0 + "V": 63.0, + "T": 440.0 }, { - "V": 0.13, - "T": 231.0 + "V": 62.0, + "T": 444.0 }, { - "V": 0.09, - "T": 236.0 + "V": 62.0, + "T": 448.0 }, { - "V": 0.1, - "T": 241.0 + "V": 64.0, + "T": 452.0 }, { - "V": 0.08, - "T": 246.0 + "V": 62.0, + "T": 456.0 }, { - "V": 0.09, - "T": 251.0 + "V": 63.0, + "T": 460.0 }, { - "V": 0.06, - "T": 256.0 + "V": 63.0, + "T": 464.0 }, { - "V": 0.12, - "T": 261.0 + "V": 55.0, + "T": 468.0 }, { - "V": 0.14, - "T": 266.0 + "V": 62.0, + "T": 472.0 }, { - "V": 0.13, - "T": 271.0 + "V": 61.0, + "T": 476.0 }, { - "V": 0.17, - "T": 276.0 + "V": 63.0, + "T": 480.0 }, { - "V": 0.11, - "T": 281.0 + "V": 62.0, + "T": 484.0 }, { - "V": 0.12, - "T": 286.0 + "V": 62.0, + "T": 488.0 }, { - "V": 0.11, - "T": 291.0 + "V": 62.0, + "T": 492.0 }, { - "V": 0.1, - "T": 296.0 + "V": 64.0, + "T": 496.0 }, { - "V": 0.1, - "T": 301.0 + "V": 62.0, + "T": 500.0 }, { - "V": 0.08, - "T": 306.0 + "V": 63.0, + "T": 504.0 }, { - "V": 0.05, - "T": 311.0 + "V": 63.0, + "T": 508.0 }, { - "V": 0.14, - "T": 316.0 + "V": 63.0, + "T": 512.0 }, { - "V": 0.13, - "T": 321.0 + "V": 62.0, + "T": 516.0 }, { - "V": 0.15, - "T": 326.0 + "V": 64.0, + "T": 520.0 }, { - "V": 0.11, - "T": 331.0 + "V": 64.0, + "T": 524.0 }, { - "V": 0.09, - "T": 336.0 + "V": 63.0, + "T": 528.0 }, { - "V": 0.08, - "T": 341.0 + "V": 66.0, + "T": 532.0 }, { - "V": 0.08, - "T": 346.0 + "V": 62.0, + "T": 536.0 }, { - "V": 0.12, - "T": 351.0 + "V": 64.0, + "T": 540.0 }, { - "V": 0.09, - "T": 356.0 + "V": 60.0, + "T": 544.0 }, { - "V": 0.08, - "T": 361.0 + "V": 63.0, + "T": 548.0 }, { - "V": 0.09, - "T": 366.0 + "V": 64.0, + "T": 552.0 }, { - "V": 0.08, - "T": 371.0 + "V": 64.0, + "T": 556.0 }, { - "V": 0.11, - "T": 376.0 + "V": 61.0, + "T": 560.0 }, { - "V": 0.09, - "T": 381.0 + "V": 57.0, + "T": 564.0 }, { - "V": 0.11, - "T": 386.0 + "V": 64.0, + "T": 568.0 }, { - "V": 0.08, - "T": 391.0 + "V": 63.0, + "T": 572.0 }, { - "V": 0.11, - "T": 396.0 + "V": 62.0, + "T": 576.0 }, { - "V": 0.1, - "T": 401.0 + "V": 63.0, + "T": 580.0 }, { - "V": 0.08, - "T": 406.0 + "V": 64.0, + "T": 584.0 }, { - "V": 0.09, - "T": 411.0 + "V": 61.0, + "T": 588.0 }, { - "V": 0.1, - "T": 416.0 + "V": 62.0, + "T": 592.0 + } + ], + "Gen0PerSec": [ + { + "V": 0.0, + "T": 1.0 }, { - "V": 0.12, - "T": 421.0 + "V": 0.0, + "T": 5.0 }, { - "V": 0.08, - "T": 426.0 + "V": 0.0, + "T": 9.0 }, { - "V": 0.1, - "T": 431.0 + "V": 0.0, + "T": 13.0 }, { - "V": 0.14, - "T": 436.0 + "V": 0.0, + "T": 17.0 }, { - "V": 0.09, - "T": 441.0 + "V": 0.0, + "T": 21.0 }, { - "V": 0.12, - "T": 446.0 + "V": 0.0, + "T": 25.0 }, { - "V": 0.13, - "T": 451.0 + "V": 0.0, + "T": 29.0 }, { - "V": 0.16, - "T": 456.0 + "V": 0.0, + "T": 33.0 }, { - "V": 0.13, - "T": 461.0 + "V": 0.0, + "T": 37.0 }, { - "V": 0.08, - "T": 466.0 + "V": 0.0, + "T": 41.0 }, { - "V": 0.05, - "T": 471.0 + "V": 0.0, + "T": 45.0 }, { - "V": 0.06, - "T": 476.0 + "V": 0.0, + "T": 49.0 }, { - "V": 0.05, - "T": 481.0 + "V": 0.0, + "T": 53.0 }, { - "V": 0.05, - "T": 486.0 + "V": 0.0, + "T": 57.0 }, { - "V": 0.06, - "T": 491.0 + "V": 0.0, + "T": 61.0 }, { - "V": 0.1, - "T": 496.0 + "V": 0.0, + "T": 65.0 }, { - "V": 0.05, - "T": 501.0 + "V": 0.0, + "T": 69.0 }, { - "V": 0.13, - "T": 506.0 + "V": 0.0, + "T": 73.0 }, { - "V": 0.11, - "T": 511.0 + "V": 0.0, + "T": 77.0 }, { - "V": 0.16, - "T": 516.0 + "V": 0.0, + "T": 81.0 }, { - "V": 0.11, - "T": 521.0 + "V": 0.0, + "T": 85.0 }, { - "V": 0.14, - "T": 526.0 + "V": 0.0, + "T": 89.0 }, { - "V": 0.12, - "T": 531.0 + "V": 0.0, + "T": 93.0 }, { - "V": 0.11, - "T": 536.0 + "V": 0.0, + "T": 97.0 }, { - "V": 0.16, - "T": 541.0 + "V": 0.0, + "T": 101.0 }, { - "V": 0.11, - "T": 546.0 + "V": 0.0, + "T": 105.0 }, { - "V": 0.04, - "T": 551.0 + "V": 0.0, + "T": 109.0 }, { - "V": 0.09, - "T": 556.0 + "V": 0.0, + "T": 113.0 }, { - "V": 0.13, - "T": 561.0 + "V": 0.0, + "T": 117.0 }, { - "V": 0.13, - "T": 566.0 + "V": 0.0, + "T": 121.0 }, { - "V": 0.13, - "T": 571.0 + "V": 0.0, + "T": 125.0 }, { - "V": 0.17, - "T": 576.0 - }, - { - "V": 0.12, - "T": 581.0 - }, - { - "V": 0.14, - "T": 586.0 - }, - { - "V": 0.1, - "T": 591.0 - }, - { - "V": 0.13, - "T": 596.0 - }, - { - "V": 0.02, - "T": 601.0 - } - ], - "OpsPerSec": [ - { - "V": 1.0, - "T": 0.0 - }, - { - "V": 1.0, - "T": 4.0 - }, - { - "V": 1.0, - "T": 8.0 - }, - { - "V": 2.0, - "T": 12.0 - }, - { - "V": 1.0, - "T": 16.0 - }, - { - "V": 3.0, - "T": 20.0 - }, - { - "V": 2.0, - "T": 24.0 - }, - { - "V": 1.0, - "T": 28.0 - }, - { - "V": 4.0, - "T": 32.0 - }, - { - "V": 4.0, - "T": 36.0 - }, - { - "V": 4.0, - "T": 40.0 - }, - { - "V": 4.0, - "T": 44.0 - }, - { - "V": 3.0, - "T": 48.0 - }, - { - "V": 4.0, - "T": 52.0 - }, - { - "V": 2.0, - "T": 56.0 - }, - { - "V": 2.0, - "T": 60.0 - }, - { - "V": 3.0, - "T": 64.0 - }, - { - "V": 1.0, - "T": 68.0 - }, - { - "V": 2.0, - "T": 72.0 - }, - { - "V": 3.0, - "T": 76.0 - }, - { - "V": 3.0, - "T": 80.0 - }, - { - "V": 2.0, - "T": 85.0 - }, - { - "V": 1.0, - "T": 90.0 - }, - { - "V": 1.0, - "T": 94.0 - }, - { - "V": 1.0, - "T": 98.0 - }, - { - "V": 3.0, - "T": 103.0 - }, - { - "V": 1.0, - "T": 109.0 - }, - { - "V": 1.0, - "T": 113.0 - }, - { - "V": 2.0, - "T": 117.0 - }, - { - "V": 2.0, - "T": 121.0 - }, - { - "V": 1.0, - "T": 125.0 - }, - { - "V": 1.0, + "V": 0.0, "T": 129.0 }, { - "V": 1.0, + "V": 0.0, "T": 133.0 }, { - "V": 2.0, + "V": 0.0, "T": 137.0 }, { - "V": 4.0, + "V": 0.0, "T": 141.0 }, { - "V": 3.0, + "V": 0.0, "T": 145.0 }, { - "V": 4.0, + "V": 0.0, "T": 149.0 }, { - "V": 2.0, + "V": 0.0, "T": 153.0 }, { - "V": 3.0, + "V": 0.0, "T": 157.0 }, { - "V": 7.0, + "V": 0.0, "T": 161.0 }, { - "V": 5.0, + "V": 0.0, "T": 165.0 }, { - "V": 3.0, + "V": 0.0, "T": 169.0 }, { - "V": 2.0, + "V": 0.0, "T": 173.0 }, { - "V": 3.0, + "V": 0.0, "T": 177.0 }, { - "V": 4.0, + "V": 0.0, "T": 181.0 }, { - "V": 4.0, + "V": 0.0, "T": 185.0 }, { - "V": 2.0, + "V": 0.0, "T": 189.0 }, { - "V": 2.0, + "V": 0.0, "T": 193.0 }, { - "V": 2.0, + "V": 0.0, "T": 197.0 }, { - "V": 2.0, + "V": 0.0, "T": 201.0 }, { - "V": 3.0, + "V": 0.0, "T": 205.0 }, { - "V": 4.0, + "V": 0.0, "T": 209.0 }, { - "V": 1.0, + "V": 0.0, "T": 213.0 }, { - "V": 2.0, + "V": 0.0, "T": 217.0 }, { - "V": 3.0, + "V": 0.0, "T": 221.0 }, { - "V": 4.0, + "V": 0.0, "T": 225.0 }, { - "V": 3.0, + "V": 0.0, "T": 229.0 }, { - "V": 2.0, + "V": 0.0, "T": 233.0 }, { - "V": 2.0, + "V": 0.0, "T": 237.0 }, { - "V": 3.0, + "V": 0.0, "T": 241.0 }, { - "V": 3.0, + "V": 0.0, "T": 245.0 }, { - "V": 1.0, + "V": 0.0, "T": 249.0 }, { - "V": 3.0, + "V": 0.0, "T": 253.0 }, { - "V": 3.0, + "V": 0.0, "T": 257.0 }, { - "V": 4.0, + "V": 0.0, "T": 261.0 }, { - "V": 4.0, + "V": 0.0, "T": 265.0 }, { - "V": 5.0, + "V": 0.0, "T": 269.0 }, { - "V": 2.0, + "V": 0.0, "T": 273.0 }, { - "V": 4.0, + "V": 0.0, "T": 277.0 }, { - "V": 4.0, + "V": 0.0, "T": 281.0 }, { - "V": 4.0, + "V": 0.0, "T": 285.0 }, { - "V": 3.0, + "V": 0.0, "T": 289.0 }, { - "V": 2.0, + "V": 0.0, "T": 293.0 }, { - "V": 3.0, + "V": 0.0, "T": 297.0 }, { - "V": 4.0, + "V": 0.0, "T": 301.0 }, { - "V": 3.0, + "V": 0.0, "T": 305.0 }, { - "V": 1.0, + "V": 0.0, "T": 309.0 }, { - "V": 3.0, + "V": 0.0, "T": 313.0 }, { - "V": 5.0, + "V": 0.0, "T": 317.0 }, { - "V": 5.0, + "V": 0.0, "T": 321.0 }, { - "V": 4.0, + "V": 0.0, "T": 325.0 }, { - "V": 4.0, + "V": 0.0, "T": 329.0 }, { - "V": 2.0, + "V": 0.0, "T": 333.0 }, { - "V": 2.0, + "V": 0.0, "T": 337.0 }, { - "V": 3.0, + "V": 0.0, "T": 341.0 }, { - "V": 4.0, + "V": 0.0, "T": 345.0 }, { - "V": 2.0, + "V": 0.0, "T": 349.0 }, { - "V": 2.0, + "V": 0.0, "T": 353.0 }, { - "V": 3.0, + "V": 0.0, "T": 357.0 }, { - "V": 2.0, + "V": 0.0, "T": 361.0 }, { - "V": 3.0, + "V": 0.0, "T": 365.0 }, { - "V": 2.0, + "V": 0.0, "T": 369.0 }, { - "V": 2.0, + "V": 0.0, "T": 373.0 }, { - "V": 3.0, + "V": 0.0, "T": 377.0 }, { - "V": 4.0, + "V": 0.0, "T": 381.0 }, { - "V": 2.0, + "V": 0.0, "T": 385.0 }, { - "V": 2.0, + "V": 0.0, "T": 389.0 }, { - "V": 2.0, + "V": 0.0, "T": 393.0 }, { - "V": 4.0, + "V": 0.0, "T": 397.0 }, { - "V": 4.0, + "V": 0.0, "T": 401.0 }, { - "V": 3.0, + "V": 0.0, "T": 405.0 }, { - "V": 3.0, + "V": 0.0, "T": 409.0 }, { - "V": 2.0, + "V": 0.0, "T": 413.0 }, { - "V": 4.0, + "V": 0.0, "T": 417.0 }, { - "V": 4.0, + "V": 0.0, "T": 421.0 }, { - "V": 5.0, + "V": 0.0, "T": 425.0 }, { - "V": 2.0, + "V": 0.0, "T": 429.0 }, { - "V": 2.0, + "V": 0.0, "T": 433.0 }, { - "V": 4.0, + "V": 0.0, "T": 437.0 }, { - "V": 3.0, + "V": 0.0, "T": 441.0 }, { - "V": 6.0, + "V": 0.0, "T": 445.0 }, { - "V": 4.0, + "V": 0.0, "T": 449.0 }, { - "V": 3.0, + "V": 0.0, "T": 453.0 }, { - "V": 4.0, + "V": 0.0, "T": 457.0 }, { - "V": 5.0, + "V": 0.0, "T": 461.0 }, { - "V": 4.0, + "V": 0.0, "T": 465.0 }, - { - "V": 1.0, - "T": 470.0 - }, - { - "V": 1.0, - "T": 475.0 - }, - { - "V": 1.0, - "T": 479.0 - }, - { - "V": 1.0, - "T": 483.0 - }, - { - "V": 1.0, - "T": 487.0 - }, - { - "V": 1.0, - "T": 491.0 - }, - { - "V": 2.0, - "T": 495.0 - }, - { - "V": 1.0, - "T": 500.0 - }, - { - "V": 5.0, - "T": 504.0 - }, - { - "V": 3.0, - "T": 508.0 - }, - { - "V": 4.0, - "T": 512.0 - }, - { - "V": 6.0, - "T": 516.0 - }, - { - "V": 5.0, - "T": 520.0 - }, - { - "V": 4.0, - "T": 524.0 - }, - { - "V": 4.0, - "T": 528.0 - }, - { - "V": 5.0, - "T": 532.0 - }, - { - "V": 4.0, - "T": 536.0 - }, - { - "V": 5.0, - "T": 540.0 - }, - { - "V": 6.0, - "T": 544.0 - }, - { - "V": 1.0, - "T": 548.0 - }, - { - "V": 1.0, - "T": 553.0 - }, - { - "V": 3.0, - "T": 558.0 - }, - { - "V": 4.0, - "T": 562.0 - }, - { - "V": 4.0, - "T": 566.0 - }, - { - "V": 4.0, - "T": 570.0 - }, - { - "V": 4.0, - "T": 574.0 - }, - { - "V": 5.0, - "T": 578.0 - }, - { - "V": 3.0, - "T": 582.0 - }, - { - "V": 6.0, - "T": 586.0 - }, - { - "V": 4.0, - "T": 590.0 - }, - { - "V": 4.0, - "T": 594.0 - }, - { - "V": 3.0, - "T": 598.0 - } - ], - "Gen0PerSec": [ { "V": 0.0, - "T": 1.0 + "T": 469.0 }, { "V": 0.0, - "T": 6.0 + "T": 473.0 }, { "V": 0.0, - "T": 11.0 + "T": 477.0 }, { "V": 0.0, - "T": 16.0 + "T": 481.0 }, { "V": 0.0, - "T": 21.0 + "T": 485.0 }, { "V": 0.0, - "T": 26.0 + "T": 489.0 }, { "V": 0.0, - "T": 31.0 + "T": 493.0 }, { "V": 0.0, - "T": 36.0 + "T": 497.0 }, { "V": 0.0, - "T": 41.0 + "T": 501.0 }, { "V": 0.0, - "T": 46.0 + "T": 505.0 }, { "V": 0.0, - "T": 51.0 + "T": 509.0 }, { "V": 0.0, - "T": 56.0 + "T": 513.0 }, { "V": 0.0, - "T": 61.0 + "T": 517.0 }, { "V": 0.0, - "T": 66.0 + "T": 521.0 }, { "V": 0.0, - "T": 71.0 + "T": 525.0 }, { "V": 0.0, - "T": 76.0 + "T": 529.0 }, { "V": 0.0, - "T": 81.0 + "T": 533.0 }, { "V": 0.0, - "T": 86.0 + "T": 537.0 }, { "V": 0.0, - "T": 91.0 + "T": 541.0 }, { "V": 0.0, - "T": 96.0 + "T": 545.0 }, { "V": 0.0, - "T": 101.0 + "T": 549.0 }, { "V": 0.0, - "T": 106.0 + "T": 553.0 }, { "V": 0.0, - "T": 111.0 + "T": 557.0 }, { "V": 0.0, - "T": 116.0 + "T": 561.0 }, { "V": 0.0, - "T": 121.0 + "T": 565.0 }, { "V": 0.0, - "T": 126.0 + "T": 569.0 }, { "V": 0.0, - "T": 131.0 + "T": 573.0 }, { "V": 0.0, - "T": 136.0 + "T": 577.0 }, { "V": 0.0, - "T": 141.0 + "T": 581.0 }, { "V": 0.0, - "T": 146.0 + "T": 585.0 }, { "V": 0.0, - "T": 151.0 + "T": 589.0 }, { "V": 0.0, - "T": 156.0 - }, + "T": 593.0 + } + ] + } + }, + { + "ScenarioId": "growing-cache", + "ScenarioName": "Console: growing in-memory cache with real request workload (naturally escalating gen2 GCs)", + "GcModeId": "server", + "GcModeName": "Server GC", + "DurationSeconds": 600.0003392, + "Summary": { + "OperationsTotal": 37751, + "OpsPerSecondOverall": 62.91829776352233, + "TotalAllocatedBytes": 8923117408, + "Gen0Collections": 103, + "Gen1Collections": 34, + "Gen2Collections": 13, + "WorkingSetBytes": 8100327424, + "PeakWorkingSetBytes": 8100327424, + "HeapSizeBytes": 7163275232, + "TotalCommittedBytes": 7257989120, + "GcName": "CoreCLR (Server)", + "FinalCacheEntryCount": 30839663, + "ObservedGen2Events": 13, + "ObservedGen2PauseAvgMs": 605.8124615384615, + "ObservedGen2PauseMaxMs": 2176.4489999999996, + "ObservedGen2PauseMinMs": 0.8460000000000001, + "ObservedGen2PauseSamplesMs": [ + 10.508, + 5.7840000000000025, + 0.8460000000000001, + 51.18799999999999, + 15.504000000000005, + 118.20100000000001, + 439.55699999999996, + 502.29600000000005, + 413.25800000000004, + 868.6249999999998, + 1218.65, + 2054.6960000000004, + 2176.4489999999996 + ] + }, + "PauseTimePctStats": { + "Avg": 1.4463164705882356, + "P50": 0.0, + "P90": 4.16909999999997, + "P99": 28.27200000000001, + "Max": 49.27720000000004, + "Min": 0.0, + "Count": 595 + }, + "PauseTimeMsStats": { + "Avg": 14.46316470588235, + "P50": 0.0, + "P90": 41.690999999999704, + "P99": 282.7200000000001, + "Max": 492.77200000000045, + "Min": 0.0, + "Count": 595 + }, + "WorkingSetStats": { + "Avg": 3818182972.134228, + "P50": 4095696896.0, + "P90": 6317719552.0, + "P99": 8042143744.0, + "Max": 8089899008.0, + "Min": 96518144.0, + "Count": 596 + }, + "AllocRateMBStats": { + "Avg": 14.1904167752306, + "P50": 9.066757202148438, + "P90": 9.183395385742188, + "P99": 64.19603729248047, + "Max": 1547.081916809082, + "Min": 5.864410400390625, + "Count": 595 + }, + "OpsPerSecStats": { + "Avg": 62.91610738255034, + "P50": 63.0, + "P90": 65.0, + "P99": 74.0, + "Max": 76.0, + "Min": 43.0, + "Count": 596 + }, + "TimeSeries": { + "PauseTimePct": [ { "V": 0.0, - "T": 161.0 + "T": 1.0 }, { - "V": 0.0, - "T": 166.0 + "V": 1.4935, + "T": 5.0 }, { "V": 0.0, - "T": 171.0 + "T": 9.0 }, { "V": 0.0, - "T": 176.0 + "T": 13.0 }, { "V": 0.0, - "T": 181.0 + "T": 17.0 }, { "V": 0.0, - "T": 186.0 + "T": 21.0 }, { "V": 0.0, - "T": 191.0 + "T": 25.0 }, { - "V": 0.0, - "T": 196.0 + "V": 0.0975, + "T": 29.0 }, { - "V": 0.0, - "T": 201.0 + "V": 4.2897, + "T": 33.0 }, { "V": 0.0, - "T": 206.0 + "T": 37.0 }, { "V": 0.0, - "T": 211.0 + "T": 41.0 }, { "V": 0.0, - "T": 216.0 + "T": 45.0 }, { "V": 0.0, - "T": 221.0 + "T": 49.0 }, { "V": 0.0, - "T": 226.0 + "T": 53.0 }, { "V": 0.0, - "T": 231.0 + "T": 57.0 }, { "V": 0.0, - "T": 236.0 + "T": 61.0 }, { "V": 0.0, - "T": 241.0 + "T": 65.0 }, { - "V": 0.0, - "T": 246.0 + "V": 5.1192, + "T": 69.0 }, { "V": 0.0, - "T": 251.0 + "T": 73.0 }, { "V": 0.0, - "T": 256.0 + "T": 77.0 }, { "V": 0.0, - "T": 261.0 + "T": 81.0 }, { "V": 0.0, - "T": 266.0 + "T": 85.0 }, { "V": 0.0, - "T": 271.0 + "T": 89.0 }, { "V": 0.0, - "T": 276.0 + "T": 93.0 }, { - "V": 0.0, - "T": 281.0 + "V": 4.0898, + "T": 97.0 }, { "V": 0.0, - "T": 286.0 + "T": 101.0 }, { "V": 0.0, - "T": 291.0 + "T": 105.0 }, { "V": 0.0, - "T": 296.0 + "T": 109.0 }, { "V": 0.0, - "T": 301.0 + "T": 113.0 }, { "V": 0.0, - "T": 306.0 + "T": 117.0 }, { "V": 0.0, - "T": 311.0 + "T": 121.0 }, { - "V": 0.0, - "T": 316.0 + "V": 4.0452, + "T": 125.0 }, { "V": 0.0, - "T": 321.0 + "T": 129.0 }, { "V": 0.0, - "T": 326.0 + "T": 133.0 }, { - "V": 0.0, - "T": 331.0 + "V": 0.1255, + "T": 137.0 }, { "V": 0.0, - "T": 336.0 + "T": 141.0 }, { "V": 0.0, - "T": 341.0 + "T": 145.0 }, { "V": 0.0, - "T": 346.0 + "T": 149.0 }, { - "V": 0.0, - "T": 351.0 + "V": 4.4476, + "T": 153.0 }, { "V": 0.0, - "T": 356.0 + "T": 157.0 }, { "V": 0.0, - "T": 361.0 + "T": 161.0 }, { "V": 0.0, - "T": 366.0 + "T": 165.0 }, { "V": 0.0, - "T": 371.0 + "T": 169.0 }, { "V": 0.0, - "T": 376.0 + "T": 173.0 }, { "V": 0.0, - "T": 381.0 + "T": 177.0 }, { - "V": 0.0, - "T": 386.0 + "V": 4.2564, + "T": 181.0 }, { "V": 0.0, - "T": 391.0 + "T": 185.0 }, { "V": 0.0, - "T": 396.0 + "T": 189.0 }, { "V": 0.0, - "T": 401.0 + "T": 193.0 }, { "V": 0.0, - "T": 406.0 + "T": 197.0 }, { "V": 0.0, - "T": 411.0 + "T": 201.0 }, { "V": 0.0, - "T": 416.0 + "T": 205.0 }, { - "V": 0.0, - "T": 421.0 + "V": 28.2788, + "T": 209.0 }, { "V": 0.0, - "T": 426.0 + "T": 213.0 }, { "V": 0.0, - "T": 431.0 + "T": 217.0 }, { "V": 0.0, - "T": 436.0 + "T": 221.0 }, { "V": 0.0, - "T": 441.0 + "T": 225.0 }, { "V": 0.0, - "T": 446.0 + "T": 229.0 }, { "V": 0.0, - "T": 451.0 + "T": 233.0 }, { - "V": 0.0, - "T": 456.0 + "V": 42.6127, + "T": 237.0 }, { "V": 0.0, - "T": 461.0 + "T": 241.0 }, { "V": 0.0, - "T": 466.0 + "T": 245.0 }, { "V": 0.0, - "T": 471.0 + "T": 249.0 }, { "V": 0.0, - "T": 476.0 + "T": 253.0 }, { "V": 0.0, - "T": 481.0 + "T": 257.0 }, { "V": 0.0, - "T": 486.0 + "T": 261.0 }, { - "V": 0.0, - "T": 491.0 + "V": 21.4764, + "T": 265.0 }, { "V": 0.0, - "T": 496.0 + "T": 269.0 }, { "V": 0.0, - "T": 501.0 + "T": 273.0 }, { - "V": 0.0, - "T": 506.0 + "V": 0.2011, + "T": 277.0 }, { "V": 0.0, - "T": 511.0 + "T": 281.0 }, { "V": 0.0, - "T": 516.0 + "T": 285.0 }, { "V": 0.0, - "T": 521.0 + "T": 289.0 }, { "V": 0.0, - "T": 526.0 + "T": 293.0 }, { "V": 0.0, - "T": 531.0 + "T": 297.0 }, { - "V": 0.0, - "T": 536.0 + "V": 4.2778, + "T": 301.0 }, { "V": 0.0, - "T": 541.0 + "T": 305.0 }, { "V": 0.0, - "T": 546.0 + "T": 309.0 }, { "V": 0.0, - "T": 551.0 + "T": 313.0 }, { "V": 0.0, - "T": 556.0 + "T": 317.0 }, { "V": 0.0, - "T": 561.0 + "T": 321.0 }, { "V": 0.0, - "T": 566.0 + "T": 325.0 }, { - "V": 0.0, - "T": 571.0 + "V": 4.6135, + "T": 329.0 }, { "V": 0.0, - "T": 576.0 + "T": 333.0 }, { "V": 0.0, - "T": 581.0 + "T": 337.0 }, { "V": 0.0, - "T": 586.0 + "T": 341.0 }, { "V": 0.0, - "T": 591.0 + "T": 345.0 }, { "V": 0.0, - "T": 596.0 + "T": 349.0 }, { "V": 0.0, - "T": 601.0 - } - ] - } - }, - { - "ScenarioId": "growing-cache", - "ScenarioName": "Console: growing in-memory cache with real request workload (naturally escalating gen2 GCs)", - "GcModeId": "workstation", - "GcModeName": "Workstation GC", - "DurationSeconds": 600.0083229, - "Summary": { - "OperationsTotal": 37506, - "OpsPerSecondOverall": 62.50913290456291, - "TotalAllocatedBytes": 8923067248, - "Gen0Collections": 352, - "Gen1Collections": 351, - "Gen2Collections": 11, - "WorkingSetBytes": 7068979200, - "PeakWorkingSetBytes": 7068979200, - "HeapSizeBytes": 7420867512, - "TotalCommittedBytes": 7571333120, - "GcName": "CoreCLR (Workstation)", - "FinalCacheEntryCount": 30840080, - "ObservedGen2Events": 11, - "ObservedGen2PauseAvgMs": 567.6749090909091, - "ObservedGen2PauseMaxMs": 2349.084, - "ObservedGen2PauseMinMs": 1.122, - "ObservedGen2PauseSamplesMs": [ - 1.122, - 7.212, - 19.488, - 40.12599999999999, - 96.847, - 159.479, - 311.054, - 559.4639999999999, - 971.6179999999999, - 1728.9300000000003, - 2349.084 - ] - }, - "PauseTimePctStats": { - "Avg": 1.3744714285714281, - "P50": 1.316300000000048, - "P90": 3.7346999999999575, - "P99": 4.611300000000007, - "Max": 11.723600000000012, - "Min": 0.0, - "Count": 595 - }, - "PauseTimeMsStats": { - "Avg": 13.744714285714286, - "P50": 13.16300000000048, - "P90": 37.346999999999575, - "P99": 46.11300000000007, - "Max": 117.23600000000012, - "Min": 0.0, - "Count": 595 - }, - "WorkingSetStats": { - "Avg": 3491501351.5167785, - "P50": 3831513088.0, - "P90": 5829730304.0, - "P99": 7012450304.0, - "Max": 7058108416.0, - "Min": 96186368.0, - "Count": 596 - }, - "AllocRateMBStats": { - "Avg": 14.190307694122572, - "P50": 9.071517944335938, - "P90": 9.175865173339844, - "P99": 101.90104675292969, - "Max": 1546.9776153564453, - "Min": 8.792945861816406, - "Count": 595 - }, - "OpsPerSecStats": { - "Avg": 62.50503355704698, - "P50": 63.0, - "P90": 64.0, - "P99": 65.0, - "Max": 66.0, - "Min": 48.0, - "Count": 596 - }, - "TimeSeries": { - "PauseTimePct": [ - { - "V": 2.0002, - "T": 1.0 + "T": 353.0 }, { - "V": 2.1529, - "T": 5.0 + "V": 4.1902, + "T": 357.0 }, { "V": 0.0, - "T": 9.0 + "T": 361.0 }, { "V": 0.0, - "T": 13.0 - }, - { - "V": 1.8377, - "T": 17.0 + "T": 365.0 }, { - "V": 1.2049, - "T": 21.0 + "V": 0.0, + "T": 369.0 }, { "V": 0.0, - "T": 25.0 + "T": 373.0 }, { "V": 0.0, - "T": 29.0 + "T": 377.0 }, { - "V": 1.9206, - "T": 33.0 + "V": 0.0, + "T": 381.0 }, { - "V": 3.8168, - "T": 37.0 + "V": 4.3972, + "T": 385.0 }, { "V": 0.0, - "T": 41.0 + "T": 389.0 }, { - "V": 1.4694, - "T": 45.0 + "V": 0.0, + "T": 393.0 }, { - "V": 3.6275, - "T": 49.0 + "V": 0.0, + "T": 397.0 }, { "V": 0.0, - "T": 53.0 + "T": 401.0 }, { "V": 0.0, - "T": 57.0 + "T": 405.0 }, { - "V": 3.8572, - "T": 61.0 + "V": 0.0, + "T": 409.0 }, { - "V": 3.0218, - "T": 65.0 + "V": 4.2427, + "T": 413.0 }, { "V": 0.0, - "T": 69.0 + "T": 417.0 }, { - "V": 3.8073, - "T": 73.0 + "V": 0.0, + "T": 421.0 }, { - "V": 1.8879, - "T": 77.0 + "V": 0.0, + "T": 425.0 }, { - "V": 1.6021, - "T": 81.0 + "V": 0.0, + "T": 429.0 }, { "V": 0.0, - "T": 85.0 + "T": 433.0 }, { - "V": 2.4804, - "T": 89.0 + "V": 0.0, + "T": 437.0 }, { - "V": 2.0233, - "T": 93.0 + "V": 45.2463, + "T": 441.0 }, { "V": 0.0, - "T": 97.0 + "T": 445.0 }, { "V": 0.0, - "T": 101.0 + "T": 449.0 }, { - "V": 3.8744, - "T": 105.0 + "V": 0.0, + "T": 453.0 }, { - "V": 1.8631, - "T": 109.0 + "V": 0.0, + "T": 457.0 }, { "V": 0.0, - "T": 113.0 + "T": 461.0 }, { - "V": 3.6404, - "T": 117.0 + "V": 0.0, + "T": 465.0 }, { - "V": 1.9046, - "T": 121.0 + "V": 49.2772, + "T": 469.0 }, { "V": 0.0, - "T": 125.0 + "T": 473.0 }, { "V": 0.0, - "T": 129.0 + "T": 477.0 }, { - "V": 3.8439, - "T": 133.0 + "V": 0.0, + "T": 481.0 }, { - "V": 4.0806, - "T": 137.0 + "V": 0.0, + "T": 485.0 }, { "V": 0.0, - "T": 141.0 + "T": 489.0 }, { "V": 0.0, - "T": 145.0 + "T": 493.0 }, { - "V": 1.3585, - "T": 149.0 + "V": 21.3964, + "T": 497.0 }, { - "V": 3.5349, - "T": 153.0 + "V": 0.0, + "T": 501.0 }, { "V": 0.0, - "T": 157.0 + "T": 505.0 }, { - "V": 2.4542, + "V": 0.0, + "T": 509.0 + }, + { + "V": 0.0, + "T": 513.0 + }, + { + "V": 0.0, + "T": 517.0 + }, + { + "V": 0.0, + "T": 521.0 + }, + { + "V": 0.0, + "T": 525.0 + }, + { + "V": 0.0, + "T": 529.0 + }, + { + "V": 4.3167, + "T": 533.0 + }, + { + "V": 0.0, + "T": 537.0 + }, + { + "V": 0.0, + "T": 541.0 + }, + { + "V": 0.0, + "T": 545.0 + }, + { + "V": 0.0, + "T": 549.0 + }, + { + "V": 0.0, + "T": 553.0 + }, + { + "V": 0.0535, + "T": 557.0 + }, + { + "V": 13.5513, + "T": 561.0 + }, + { + "V": 0.0, + "T": 565.0 + }, + { + "V": 0.0, + "T": 569.0 + }, + { + "V": 0.0, + "T": 573.0 + }, + { + "V": 0.0, + "T": 577.0 + }, + { + "V": 0.0, + "T": 581.0 + }, + { + "V": 0.0, + "T": 585.0 + }, + { + "V": 4.7651, + "T": 589.0 + }, + { + "V": 0.0, + "T": 593.0 + } + ], + "PauseTimeMs": [ + { + "V": 0.0, + "T": 1.0 + }, + { + "V": 14.935, + "T": 5.0 + }, + { + "V": 0.0, + "T": 9.0 + }, + { + "V": 0.0, + "T": 13.0 + }, + { + "V": 0.0, + "T": 17.0 + }, + { + "V": 0.0, + "T": 21.0 + }, + { + "V": 0.0, + "T": 25.0 + }, + { + "V": 0.975, + "T": 29.0 + }, + { + "V": 42.897, + "T": 33.0 + }, + { + "V": 0.0, + "T": 37.0 + }, + { + "V": 0.0, + "T": 41.0 + }, + { + "V": 0.0, + "T": 45.0 + }, + { + "V": 0.0, + "T": 49.0 + }, + { + "V": 0.0, + "T": 53.0 + }, + { + "V": 0.0, + "T": 57.0 + }, + { + "V": 0.0, + "T": 61.0 + }, + { + "V": 0.0, + "T": 65.0 + }, + { + "V": 51.192, + "T": 69.0 + }, + { + "V": 0.0, + "T": 73.0 + }, + { + "V": 0.0, + "T": 77.0 + }, + { + "V": 0.0, + "T": 81.0 + }, + { + "V": 0.0, + "T": 85.0 + }, + { + "V": 0.0, + "T": 89.0 + }, + { + "V": 0.0, + "T": 93.0 + }, + { + "V": 40.898, + "T": 97.0 + }, + { + "V": 0.0, + "T": 101.0 + }, + { + "V": 0.0, + "T": 105.0 + }, + { + "V": 0.0, + "T": 109.0 + }, + { + "V": 0.0, + "T": 113.0 + }, + { + "V": 0.0, + "T": 117.0 + }, + { + "V": 0.0, + "T": 121.0 + }, + { + "V": 40.452, + "T": 125.0 + }, + { + "V": 0.0, + "T": 129.0 + }, + { + "V": 0.0, + "T": 133.0 + }, + { + "V": 1.255, + "T": 137.0 + }, + { + "V": 0.0, + "T": 141.0 + }, + { + "V": 0.0, + "T": 145.0 + }, + { + "V": 0.0, + "T": 149.0 + }, + { + "V": 44.476, + "T": 153.0 + }, + { + "V": 0.0, + "T": 157.0 + }, + { + "V": 0.0, "T": 161.0 }, { - "V": 1.8474, + "V": 0.0, "T": 165.0 }, { @@ -39580,11 +38929,11 @@ "T": 173.0 }, { - "V": 1.8499, + "V": 0.0, "T": 177.0 }, { - "V": 1.3557, + "V": 42.564, "T": 181.0 }, { @@ -39592,11 +38941,11 @@ "T": 185.0 }, { - "V": 1.8413, + "V": 0.0, "T": 189.0 }, { - "V": 1.2287, + "V": 0.0, "T": 193.0 }, { @@ -39608,11 +38957,11 @@ "T": 201.0 }, { - "V": 1.5039, + "V": 0.0, "T": 205.0 }, { - "V": 3.7458, + "V": 282.788, "T": 209.0 }, { @@ -39624,11 +38973,11 @@ "T": 217.0 }, { - "V": 3.8238, + "V": 0.0, "T": 221.0 }, { - "V": 1.8731, + "V": 0.0, "T": 225.0 }, { @@ -39636,11 +38985,11 @@ "T": 229.0 }, { - "V": 1.4328, + "V": 0.0, "T": 233.0 }, { - "V": 3.8141, + "V": 426.127, "T": 237.0 }, { @@ -39652,11 +39001,11 @@ "T": 245.0 }, { - "V": 2.0749, + "V": 0.0, "T": 249.0 }, { - "V": 1.3689, + "V": 0.0, "T": 253.0 }, { @@ -39664,11 +39013,11 @@ "T": 257.0 }, { - "V": 3.7209, + "V": 0.0, "T": 261.0 }, { - "V": 2.0224, + "V": 214.764, "T": 265.0 }, { @@ -39680,11 +39029,11 @@ "T": 273.0 }, { - "V": 5.7319, + "V": 2.011, "T": 277.0 }, { - "V": 3.7441, + "V": 0.0, "T": 281.0 }, { @@ -39696,23 +39045,23 @@ "T": 289.0 }, { - "V": 1.852, + "V": 0.0, "T": 293.0 }, { - "V": 1.203, + "V": 0.0, "T": 297.0 }, { - "V": 0.0, + "V": 42.778, "T": 301.0 }, { - "V": 1.8589, + "V": 0.0, "T": 305.0 }, { - "V": 1.2453, + "V": 0.0, "T": 309.0 }, { @@ -39724,23 +39073,23 @@ "T": 317.0 }, { - "V": 2.0436, + "V": 0.0, "T": 321.0 }, { - "V": 3.6143, + "V": 0.0, "T": 325.0 }, { - "V": 0.0, + "V": 46.135, "T": 329.0 }, { - "V": 1.9155, + "V": 0.0, "T": 333.0 }, { - "V": 1.2768, + "V": 0.0, "T": 337.0 }, { @@ -39752,15 +39101,15 @@ "T": 345.0 }, { - "V": 1.3848, + "V": 0.0, "T": 349.0 }, { - "V": 2.3085, + "V": 0.0, "T": 353.0 }, { - "V": 0.0, + "V": 41.902, "T": 357.0 }, { @@ -39768,11 +39117,11 @@ "T": 361.0 }, { - "V": 3.9312, + "V": 0.0, "T": 365.0 }, { - "V": 1.8805, + "V": 0.0, "T": 369.0 }, { @@ -39780,15 +39129,15 @@ "T": 373.0 }, { - "V": 1.9015, + "V": 0.0, "T": 377.0 }, { - "V": 1.173, + "V": 0.0, "T": 381.0 }, { - "V": 0.0, + "V": 43.972, "T": 385.0 }, { @@ -39796,11 +39145,11 @@ "T": 389.0 }, { - "V": 1.2476, + "V": 0.0, "T": 393.0 }, { - "V": 1.7885, + "V": 0.0, "T": 397.0 }, { @@ -39808,15 +39157,15 @@ "T": 401.0 }, { - "V": 3.8215, + "V": 0.0, "T": 405.0 }, { - "V": 1.8119, + "V": 0.0, "T": 409.0 }, { - "V": 0.0, + "V": 42.427, "T": 413.0 }, { @@ -39824,11 +39173,11 @@ "T": 417.0 }, { - "V": 3.6618, + "V": 0.0, "T": 421.0 }, { - "V": 1.9684, + "V": 0.0, "T": 425.0 }, { @@ -39840,11 +39189,11 @@ "T": 433.0 }, { - "V": 1.9224, + "V": 0.0, "T": 437.0 }, { - "V": 1.2669, + "V": 452.463, "T": 441.0 }, { @@ -39852,11 +39201,11 @@ "T": 445.0 }, { - "V": 1.8085, + "V": 0.0, "T": 449.0 }, { - "V": 1.6378, + "V": 0.0, "T": 453.0 }, { @@ -39868,11 +39217,11 @@ "T": 461.0 }, { - "V": 1.8757, + "V": 0.0, "T": 465.0 }, { - "V": 1.2293, + "V": 492.772, "T": 469.0 }, { @@ -39880,11 +39229,11 @@ "T": 473.0 }, { - "V": 1.5142, + "V": 0.0, "T": 477.0 }, { - "V": 2.4292, + "V": 0.0, "T": 481.0 }, { @@ -39896,11 +39245,11 @@ "T": 489.0 }, { - "V": 3.6632, + "V": 0.0, "T": 493.0 }, { - "V": 1.8783, + "V": 213.964, "T": 497.0 }, { @@ -39912,11 +39261,11 @@ "T": 505.0 }, { - "V": 1.2465, + "V": 0.0, "T": 509.0 }, { - "V": 3.6373, + "V": 0.0, "T": 513.0 }, { @@ -39924,11 +39273,11 @@ "T": 517.0 }, { - "V": 1.9785, + "V": 0.0, "T": 521.0 }, { - "V": 4.3273, + "V": 0.0, "T": 525.0 }, { @@ -39936,15 +39285,15 @@ "T": 529.0 }, { - "V": 0.0, + "V": 43.167, "T": 533.0 }, { - "V": 3.6279, + "V": 0.0, "T": 537.0 }, { - "V": 2.0374, + "V": 0.0, "T": 541.0 }, { @@ -39952,27 +39301,27 @@ "T": 545.0 }, { - "V": 3.868, + "V": 0.0, "T": 549.0 }, { - "V": 1.99, + "V": 0.0, "T": 553.0 }, { - "V": 3.8825, + "V": 0.535, "T": 557.0 }, { - "V": 0.0, + "V": 135.513, "T": 561.0 }, { - "V": 1.7218, + "V": 0.0, "T": 565.0 }, { - "V": 3.8146, + "V": 0.0, "T": 569.0 }, { @@ -39984,7241 +39333,7815 @@ "T": 577.0 }, { - "V": 4.5524, + "V": 0.0, "T": 581.0 }, { - "V": 2.0447, + "V": 0.0, "T": 585.0 }, { - "V": 0.0, + "V": 47.651, "T": 589.0 }, { - "V": 3.8427, + "V": 0.0, "T": 593.0 } ], - "PauseTimeMs": [ + "WorkingSetMB": [ { - "V": 20.002, - "T": 1.0 + "V": 92.05, + "T": 0.0 }, { - "V": 21.529, - "T": 5.0 + "V": 133.74, + "T": 4.0 }, { - "V": 0.0, - "T": 9.0 + "V": 173.29, + "T": 8.0 }, { - "V": 0.0, - "T": 13.0 + "V": 248.32, + "T": 12.0 }, { - "V": 18.377, - "T": 17.0 + "V": 285.71, + "T": 16.0 }, { - "V": 12.049, - "T": 21.0 + "V": 330.64, + "T": 20.0 }, { - "V": 0.0, - "T": 25.0 + "V": 368.03, + "T": 24.0 }, { - "V": 0.0, - "T": 29.0 + "V": 405.09, + "T": 28.0 }, { - "V": 19.206, - "T": 33.0 + "V": 527.96, + "T": 32.0 }, { - "V": 38.168, - "T": 37.0 + "V": 565.26, + "T": 36.0 }, { - "V": 0.0, - "T": 41.0 + "V": 602.17, + "T": 40.0 }, { - "V": 14.694, - "T": 45.0 + "V": 639.69, + "T": 44.0 }, { - "V": 36.275, - "T": 49.0 + "V": 676.91, + "T": 48.0 }, { - "V": 0.0, - "T": 53.0 + "V": 714.06, + "T": 52.0 }, { - "V": 0.0, - "T": 57.0 + "V": 751.34, + "T": 56.0 }, { - "V": 38.572, - "T": 61.0 + "V": 788.55, + "T": 60.0 }, { - "V": 30.218, - "T": 65.0 + "V": 968.3, + "T": 64.0 }, { - "V": 0.0, - "T": 69.0 + "V": 1004.68, + "T": 68.0 }, { - "V": 38.073, - "T": 73.0 + "V": 1041.0, + "T": 72.0 }, { - "V": 18.879, - "T": 77.0 + "V": 1077.5, + "T": 76.0 }, { - "V": 16.021, - "T": 81.0 + "V": 1114.04, + "T": 80.0 }, { - "V": 0.0, - "T": 85.0 + "V": 1150.36, + "T": 84.0 }, { - "V": 24.804, - "T": 89.0 + "V": 1186.83, + "T": 88.0 }, { - "V": 20.233, - "T": 93.0 + "V": 1223.58, + "T": 92.0 }, { - "V": 0.0, - "T": 97.0 + "V": 1260.8, + "T": 96.0 }, { - "V": 0.0, - "T": 101.0 + "V": 1298.12, + "T": 100.0 }, { - "V": 38.744, - "T": 105.0 + "V": 1337.38, + "T": 104.0 }, { - "V": 18.631, - "T": 109.0 + "V": 1374.59, + "T": 108.0 }, { - "V": 0.0, - "T": 113.0 + "V": 1373.42, + "T": 112.0 }, { - "V": 36.404, - "T": 117.0 - }, + "V": 1410.68, + "T": 116.0 + }, { - "V": 19.046, - "T": 121.0 + "V": 1447.88, + "T": 120.0 }, { - "V": 0.0, - "T": 125.0 + "V": 1485.09, + "T": 124.0 }, { - "V": 0.0, - "T": 129.0 + "V": 1522.39, + "T": 128.0 }, { - "V": 38.439, - "T": 133.0 + "V": 1559.58, + "T": 132.0 }, { - "V": 40.806, - "T": 137.0 + "V": 1744.5, + "T": 136.0 }, { - "V": 0.0, - "T": 141.0 + "V": 1941.0, + "T": 140.0 }, { - "V": 0.0, - "T": 145.0 + "V": 1977.53, + "T": 144.0 }, { - "V": 13.585, - "T": 149.0 + "V": 2013.88, + "T": 148.0 }, { - "V": 35.349, - "T": 153.0 + "V": 2050.37, + "T": 152.0 }, { - "V": 0.0, - "T": 157.0 + "V": 2086.9, + "T": 156.0 }, { - "V": 24.542, - "T": 161.0 + "V": 2123.44, + "T": 160.0 }, { - "V": 18.474, - "T": 165.0 + "V": 2159.79, + "T": 164.0 }, { - "V": 0.0, - "T": 169.0 + "V": 2196.33, + "T": 168.0 }, { - "V": 0.0, - "T": 173.0 + "V": 2232.8, + "T": 172.0 }, { - "V": 18.499, - "T": 177.0 + "V": 2269.19, + "T": 176.0 }, { - "V": 13.557, - "T": 181.0 + "V": 2305.71, + "T": 180.0 }, { - "V": 0.0, - "T": 185.0 + "V": 2342.1, + "T": 184.0 }, { - "V": 18.413, - "T": 189.0 + "V": 2378.69, + "T": 188.0 }, { - "V": 12.287, - "T": 193.0 + "V": 2415.07, + "T": 192.0 }, { - "V": 0.0, - "T": 197.0 + "V": 2451.43, + "T": 196.0 }, { - "V": 0.0, - "T": 201.0 + "V": 2488.03, + "T": 200.0 }, { - "V": 15.039, - "T": 205.0 + "V": 2529.39, + "T": 204.0 }, { - "V": 37.458, - "T": 209.0 + "V": 2565.89, + "T": 208.0 }, { - "V": 0.0, - "T": 213.0 + "V": 2602.34, + "T": 212.0 }, { - "V": 0.0, - "T": 217.0 + "V": 2638.77, + "T": 216.0 }, { - "V": 38.238, - "T": 221.0 + "V": 2675.21, + "T": 220.0 }, { - "V": 18.731, - "T": 225.0 + "V": 2711.61, + "T": 224.0 }, { - "V": 0.0, - "T": 229.0 + "V": 2748.14, + "T": 228.0 }, { - "V": 14.328, - "T": 233.0 + "V": 2784.53, + "T": 232.0 }, { - "V": 38.141, - "T": 237.0 + "V": 2821.02, + "T": 236.0 }, { - "V": 0.0, - "T": 241.0 + "V": 2936.66, + "T": 240.0 }, { - "V": 0.0, - "T": 245.0 + "V": 2936.66, + "T": 244.0 }, { - "V": 20.749, - "T": 249.0 + "V": 2936.66, + "T": 248.0 }, { - "V": 13.689, - "T": 253.0 + "V": 2940.66, + "T": 252.0 }, { - "V": 0.0, - "T": 257.0 + "V": 2940.66, + "T": 256.0 }, { - "V": 37.209, - "T": 261.0 + "V": 2971.82, + "T": 260.0 }, { - "V": 20.224, - "T": 265.0 + "V": 3008.38, + "T": 264.0 }, { - "V": 0.0, - "T": 269.0 + "V": 3044.88, + "T": 268.0 }, { - "V": 0.0, - "T": 273.0 + "V": 3080.93, + "T": 272.0 }, { - "V": 57.319, - "T": 277.0 + "V": 3117.86, + "T": 276.0 }, { - "V": 37.441, - "T": 281.0 + "V": 3750.81, + "T": 280.0 }, { - "V": 0.0, - "T": 285.0 + "V": 3787.23, + "T": 284.0 }, { - "V": 0.0, - "T": 289.0 + "V": 3823.74, + "T": 288.0 }, { - "V": 18.52, - "T": 293.0 + "V": 3860.25, + "T": 292.0 }, { - "V": 12.03, - "T": 297.0 + "V": 3896.85, + "T": 296.0 }, { - "V": 0.0, - "T": 301.0 + "V": 3933.42, + "T": 300.0 }, { - "V": 18.589, - "T": 305.0 + "V": 3969.82, + "T": 304.0 }, { - "V": 12.453, - "T": 309.0 + "V": 4006.31, + "T": 308.0 }, { - "V": 0.0, - "T": 313.0 + "V": 4042.73, + "T": 312.0 }, { - "V": 0.0, - "T": 317.0 + "V": 4079.2, + "T": 316.0 }, { - "V": 20.436, - "T": 321.0 + "V": 4115.7, + "T": 320.0 }, { - "V": 36.143, - "T": 325.0 + "V": 4152.07, + "T": 324.0 }, { - "V": 0.0, - "T": 329.0 + "V": 4188.51, + "T": 328.0 }, { - "V": 19.155, - "T": 333.0 + "V": 4225.02, + "T": 332.0 }, { - "V": 12.768, - "T": 337.0 + "V": 4261.37, + "T": 336.0 }, { - "V": 0.0, - "T": 341.0 + "V": 4297.92, + "T": 340.0 }, { - "V": 0.0, - "T": 345.0 + "V": 4334.29, + "T": 344.0 }, { - "V": 13.848, - "T": 349.0 + "V": 4370.77, + "T": 348.0 }, { - "V": 23.085, - "T": 353.0 + "V": 4407.26, + "T": 352.0 }, { - "V": 0.0, - "T": 357.0 + "V": 4443.64, + "T": 356.0 }, { - "V": 0.0, - "T": 361.0 + "V": 4480.24, + "T": 360.0 }, { - "V": 39.312, - "T": 365.0 + "V": 4516.72, + "T": 364.0 }, { - "V": 18.805, - "T": 369.0 + "V": 4553.04, + "T": 368.0 }, { - "V": 0.0, - "T": 373.0 + "V": 4589.54, + "T": 372.0 }, { - "V": 19.015, - "T": 377.0 + "V": 4626.02, + "T": 376.0 }, { - "V": 11.73, - "T": 381.0 + "V": 4662.42, + "T": 380.0 }, { - "V": 0.0, - "T": 385.0 + "V": 4698.81, + "T": 384.0 }, { - "V": 0.0, - "T": 389.0 + "V": 4735.31, + "T": 388.0 }, { - "V": 12.476, - "T": 393.0 + "V": 4771.95, + "T": 392.0 }, { - "V": 17.885, - "T": 397.0 + "V": 4808.38, + "T": 396.0 }, { - "V": 0.0, - "T": 401.0 + "V": 4844.64, + "T": 400.0 }, { - "V": 38.215, - "T": 405.0 + "V": 4881.3, + "T": 404.0 }, { - "V": 18.119, - "T": 409.0 + "V": 4917.67, + "T": 408.0 }, { - "V": 0.0, - "T": 413.0 + "V": 4954.14, + "T": 412.0 }, { - "V": 0.0, - "T": 417.0 + "V": 4990.5, + "T": 416.0 }, { - "V": 36.618, - "T": 421.0 + "V": 5027.17, + "T": 420.0 }, { - "V": 19.684, - "T": 425.0 + "V": 5063.45, + "T": 424.0 }, { - "V": 0.0, - "T": 429.0 + "V": 5099.91, + "T": 428.0 }, { - "V": 0.0, - "T": 433.0 + "V": 5136.5, + "T": 432.0 }, { - "V": 19.224, - "T": 437.0 + "V": 5184.87, + "T": 436.0 }, { - "V": 12.669, - "T": 441.0 + "V": 5221.38, + "T": 440.0 }, { - "V": 0.0, - "T": 445.0 + "V": 5257.88, + "T": 444.0 }, { - "V": 18.085, - "T": 449.0 + "V": 5294.32, + "T": 448.0 }, { - "V": 16.378, - "T": 453.0 + "V": 5330.65, + "T": 452.0 }, { - "V": 0.0, - "T": 457.0 + "V": 5367.12, + "T": 456.0 }, { - "V": 0.0, - "T": 461.0 + "V": 5403.55, + "T": 460.0 }, { - "V": 18.757, - "T": 465.0 + "V": 5440.02, + "T": 464.0 }, { - "V": 12.293, - "T": 469.0 + "V": 5476.53, + "T": 468.0 }, { - "V": 0.0, - "T": 473.0 + "V": 5596.29, + "T": 472.0 }, { - "V": 15.142, - "T": 477.0 + "V": 5596.29, + "T": 476.0 }, { - "V": 24.292, - "T": 481.0 + "V": 5596.29, + "T": 480.0 }, { - "V": 0.0, - "T": 485.0 + "V": 5600.29, + "T": 484.0 }, { - "V": 0.0, - "T": 489.0 + "V": 5600.29, + "T": 488.0 }, { - "V": 36.632, - "T": 493.0 + "V": 5623.83, + "T": 492.0 }, { - "V": 18.783, - "T": 497.0 + "V": 5660.37, + "T": 496.0 }, { - "V": 0.0, - "T": 501.0 + "V": 5696.76, + "T": 500.0 }, { - "V": 0.0, - "T": 505.0 + "V": 5733.24, + "T": 504.0 }, { - "V": 12.465, - "T": 509.0 + "V": 5769.75, + "T": 508.0 }, { - "V": 36.373, - "T": 513.0 + "V": 5806.16, + "T": 512.0 }, { - "V": 0.0, - "T": 517.0 + "V": 5842.57, + "T": 516.0 }, { - "V": 19.785, - "T": 521.0 + "V": 5879.12, + "T": 520.0 }, { - "V": 43.273, - "T": 525.0 + "V": 5915.49, + "T": 524.0 }, { - "V": 0.0, - "T": 529.0 + "V": 5952.04, + "T": 528.0 }, { - "V": 0.0, - "T": 533.0 + "V": 5988.5, + "T": 532.0 }, { - "V": 36.279, - "T": 537.0 + "V": 6025.05, + "T": 536.0 }, { - "V": 20.374, - "T": 541.0 + "V": 6061.33, + "T": 540.0 }, { - "V": 0.0, - "T": 545.0 + "V": 6097.86, + "T": 544.0 }, { - "V": 38.68, - "T": 549.0 + "V": 6134.38, + "T": 548.0 }, { - "V": 19.9, - "T": 553.0 + "V": 6170.82, + "T": 552.0 }, { - "V": 38.825, - "T": 557.0 + "V": 6207.17, + "T": 556.0 }, { - "V": 0.0, - "T": 561.0 + "V": 7451.39, + "T": 560.0 }, { - "V": 17.218, - "T": 565.0 + "V": 7432.6, + "T": 564.0 }, { - "V": 38.146, - "T": 569.0 + "V": 7469.1, + "T": 568.0 }, { - "V": 0.0, - "T": 573.0 + "V": 7505.51, + "T": 572.0 }, { - "V": 0.0, - "T": 577.0 + "V": 7541.94, + "T": 576.0 }, { - "V": 45.524, - "T": 581.0 + "V": 7578.47, + "T": 580.0 }, { - "V": 20.447, - "T": 585.0 + "V": 7614.84, + "T": 584.0 }, { - "V": 0.0, - "T": 589.0 + "V": 7651.38, + "T": 588.0 }, { - "V": 38.427, - "T": 593.0 + "V": 7687.82, + "T": 592.0 } ], - "WorkingSetMB": [ + "AllocRateMB": [ { - "V": 91.73, - "T": 0.0 + "V": 9.1, + "T": 1.0 }, { - "V": 136.96, - "T": 4.0 + "V": 9.02, + "T": 5.0 }, { - "V": 171.71, - "T": 8.0 + "V": 9.04, + "T": 9.0 }, { - "V": 222.15, - "T": 12.0 + "V": 9.12, + "T": 13.0 }, { - "V": 264.07, - "T": 16.0 + "V": 9.06, + "T": 17.0 }, { - "V": 297.46, - "T": 20.0 + "V": 9.09, + "T": 21.0 }, { - "V": 347.39, - "T": 24.0 + "V": 9.0, + "T": 25.0 }, { - "V": 370.34, - "T": 28.0 - }, + "V": 101.94, + "T": 29.0 + }, { - "V": 448.65, - "T": 32.0 + "V": 9.05, + "T": 33.0 }, { - "V": 490.58, - "T": 36.0 + "V": 9.01, + "T": 37.0 }, { - "V": 527.69, - "T": 40.0 + "V": 9.27, + "T": 41.0 }, { - "V": 570.57, - "T": 44.0 + "V": 8.99, + "T": 45.0 }, { - "V": 620.36, - "T": 48.0 + "V": 9.1, + "T": 49.0 }, { - "V": 652.71, - "T": 52.0 + "V": 9.04, + "T": 53.0 }, { - "V": 681.99, - "T": 56.0 + "V": 9.09, + "T": 57.0 }, { - "V": 719.28, - "T": 60.0 + "V": 9.21, + "T": 61.0 }, { - "V": 831.98, - "T": 64.0 + "V": 9.0, + "T": 65.0 }, { - "V": 879.61, - "T": 68.0 + "V": 9.06, + "T": 69.0 }, { - "V": 907.28, - "T": 72.0 + "V": 9.25, + "T": 73.0 }, { - "V": 940.43, - "T": 76.0 + "V": 9.07, + "T": 77.0 }, { - "V": 973.75, - "T": 80.0 + "V": 9.02, + "T": 81.0 }, { - "V": 1014.89, - "T": 84.0 + "V": 9.14, + "T": 85.0 }, { - "V": 1084.95, - "T": 88.0 + "V": 9.04, + "T": 89.0 }, { - "V": 1121.88, - "T": 92.0 + "V": 9.21, + "T": 93.0 }, { - "V": 1152.42, - "T": 96.0 + "V": 9.14, + "T": 97.0 }, { - "V": 1191.56, - "T": 100.0 + "V": 9.04, + "T": 101.0 }, { - "V": 1218.82, - "T": 104.0 + "V": 9.19, + "T": 105.0 }, { - "V": 1248.04, - "T": 108.0 + "V": 9.07, + "T": 109.0 }, { - "V": 1277.59, - "T": 112.0 + "V": 9.04, + "T": 113.0 }, { - "V": 1314.62, - "T": 116.0 + "V": 9.06, + "T": 117.0 }, { - "V": 1347.91, - "T": 120.0 + "V": 9.18, + "T": 121.0 }, { - "V": 1377.17, - "T": 124.0 + "V": 9.03, + "T": 125.0 }, { - "V": 1417.3, - "T": 128.0 + "V": 9.07, + "T": 129.0 }, { - "V": 1443.77, - "T": 132.0 + "V": 9.02, + "T": 133.0 }, { - "V": 1637.85, - "T": 136.0 + "V": 64.2, + "T": 137.0 }, { - "V": 1687.93, - "T": 140.0 + "V": 9.2, + "T": 141.0 }, { - "V": 1715.43, - "T": 144.0 + "V": 9.03, + "T": 145.0 }, { - "V": 1754.22, - "T": 148.0 + "V": 9.11, + "T": 149.0 }, { - "V": 1790.64, - "T": 152.0 + "V": 9.07, + "T": 153.0 }, { - "V": 1823.82, - "T": 156.0 + "V": 9.09, + "T": 157.0 }, { - "V": 1996.5, - "T": 160.0 + "V": 9.04, + "T": 161.0 }, { - "V": 2033.08, - "T": 164.0 + "V": 9.21, + "T": 165.0 }, { - "V": 2065.45, - "T": 168.0 + "V": 9.06, + "T": 169.0 }, { - "V": 2102.06, - "T": 172.0 + "V": 9.0, + "T": 173.0 }, { - "V": 2131.57, - "T": 176.0 + "V": 9.11, + "T": 177.0 }, { - "V": 2161.28, - "T": 180.0 + "V": 9.05, + "T": 181.0 }, { - "V": 2201.3, - "T": 184.0 + "V": 9.07, + "T": 185.0 }, { - "V": 2224.98, - "T": 188.0 + "V": 9.04, + "T": 189.0 }, { - "V": 2260.2, - "T": 192.0 + "V": 9.12, + "T": 193.0 }, { - "V": 2293.54, - "T": 196.0 + "V": 9.13, + "T": 197.0 }, { - "V": 2324.2, - "T": 200.0 + "V": 9.05, + "T": 201.0 }, { - "V": 2360.03, - "T": 204.0 + "V": 9.21, + "T": 205.0 }, { - "V": 2390.65, - "T": 208.0 + "V": 9.06, + "T": 209.0 }, { - "V": 2419.98, - "T": 212.0 + "V": 9.03, + "T": 213.0 }, { - "V": 2449.15, - "T": 216.0 + "V": 9.04, + "T": 217.0 }, { - "V": 2486.53, - "T": 220.0 + "V": 9.17, + "T": 221.0 }, { - "V": 2519.62, - "T": 224.0 + "V": 9.24, + "T": 225.0 }, { - "V": 2548.93, - "T": 228.0 + "V": 9.06, + "T": 229.0 }, { - "V": 2585.67, - "T": 232.0 + "V": 9.0, + "T": 233.0 }, { - "V": 2615.45, - "T": 236.0 + "V": 7.28, + "T": 237.0 }, { - "V": 2644.58, - "T": 240.0 + "V": 9.15, + "T": 241.0 }, { - "V": 2687.48, - "T": 244.0 + "V": 9.06, + "T": 245.0 }, { - "V": 2714.53, - "T": 248.0 + "V": 9.09, + "T": 249.0 }, { - "V": 2745.75, - "T": 252.0 + "V": 9.17, + "T": 253.0 }, { - "V": 2786.59, - "T": 256.0 + "V": 8.99, + "T": 257.0 }, { - "V": 2810.95, - "T": 260.0 + "V": 9.07, + "T": 261.0 }, { - "V": 2840.25, - "T": 264.0 + "V": 8.44, + "T": 265.0 }, { - "V": 2888.09, - "T": 268.0 + "V": 9.07, + "T": 269.0 }, { - "V": 2909.85, - "T": 272.0 + "V": 9.36, + "T": 273.0 }, { - "V": 3018.39, - "T": 276.0 + "V": 778.07, + "T": 277.0 }, { - "V": 3311.07, - "T": 280.0 + "V": 9.07, + "T": 281.0 }, { - "V": 3344.13, - "T": 284.0 + "V": 9.15, + "T": 285.0 }, { - "V": 3701.11, - "T": 288.0 + "V": 9.04, + "T": 289.0 }, { - "V": 3601.93, - "T": 292.0 + "V": 9.05, + "T": 293.0 }, { - "V": 3635.02, - "T": 296.0 + "V": 9.01, + "T": 297.0 }, { - "V": 3671.03, - "T": 300.0 + "V": 9.1, + "T": 301.0 }, { - "V": 3700.76, - "T": 304.0 + "V": 9.07, + "T": 305.0 }, { - "V": 3732.4, - "T": 308.0 + "V": 8.98, + "T": 309.0 }, { - "V": 3772.48, - "T": 312.0 + "V": 9.09, + "T": 313.0 }, { - "V": 3794.25, - "T": 316.0 + "V": 9.03, + "T": 317.0 }, { - "V": 3822.68, - "T": 320.0 + "V": 9.05, + "T": 321.0 }, { - "V": 3859.07, - "T": 324.0 + "V": 9.16, + "T": 325.0 }, { - "V": 3891.63, - "T": 328.0 + "V": 9.06, + "T": 329.0 }, { - "V": 3920.07, - "T": 332.0 + "V": 9.07, + "T": 333.0 }, { - "V": 3952.66, - "T": 336.0 + "V": 9.07, + "T": 337.0 }, { - "V": 3992.74, - "T": 340.0 + "V": 9.05, + "T": 341.0 }, { - "V": 4013.5, - "T": 344.0 + "V": 9.21, + "T": 345.0 }, { - "V": 4052.09, - "T": 348.0 + "V": 9.07, + "T": 349.0 }, { - "V": 4081.82, - "T": 352.0 + "V": 9.08, + "T": 353.0 }, { - "V": 4111.05, - "T": 356.0 + "V": 9.08, + "T": 357.0 }, { - "V": 4148.95, - "T": 360.0 + "V": 8.96, + "T": 361.0 }, { - "V": 4175.86, - "T": 364.0 + "V": 9.04, + "T": 365.0 }, { - "V": 4204.42, - "T": 368.0 + "V": 9.04, + "T": 369.0 }, { - "V": 4248.14, - "T": 372.0 + "V": 9.04, + "T": 373.0 }, { - "V": 4272.37, - "T": 376.0 + "V": 9.07, + "T": 377.0 }, { - "V": 4305.11, - "T": 380.0 + "V": 9.11, + "T": 381.0 }, { - "V": 4345.3, - "T": 384.0 + "V": 9.21, + "T": 385.0 }, { - "V": 4366.88, - "T": 388.0 + "V": 9.07, + "T": 389.0 }, { - "V": 4401.31, - "T": 392.0 + "V": 9.02, + "T": 393.0 }, { - "V": 4431.75, - "T": 396.0 + "V": 9.07, + "T": 397.0 }, { - "V": 4462.91, - "T": 400.0 + "V": 9.18, + "T": 401.0 }, { - "V": 4499.45, - "T": 404.0 + "V": 9.0, + "T": 405.0 }, { - "V": 4529.11, - "T": 408.0 + "V": 9.11, + "T": 409.0 }, { - "V": 4557.46, - "T": 412.0 + "V": 9.08, + "T": 413.0 }, { - "V": 4597.4, - "T": 416.0 + "V": 9.13, + "T": 417.0 }, { - "V": 4622.51, - "T": 420.0 + "V": 8.93, + "T": 421.0 }, { - "V": 4650.96, - "T": 424.0 + "V": 9.09, + "T": 425.0 }, { - "V": 4697.57, - "T": 428.0 + "V": 9.2, + "T": 429.0 }, { - "V": 4720.01, - "T": 432.0 + "V": 9.16, + "T": 433.0 }, { - "V": 4748.38, - "T": 436.0 + "V": 9.04, + "T": 437.0 }, { - "V": 4777.59, - "T": 440.0 + "V": 5.86, + "T": 441.0 }, { - "V": 4817.64, - "T": 444.0 + "V": 8.95, + "T": 445.0 }, { - "V": 4841.93, - "T": 448.0 + "V": 9.07, + "T": 449.0 }, { - "V": 4877.79, - "T": 452.0 + "V": 9.14, + "T": 453.0 }, { - "V": 4917.84, - "T": 456.0 + "V": 9.08, + "T": 457.0 }, { - "V": 4939.33, - "T": 460.0 + "V": 9.12, + "T": 461.0 }, { - "V": 4967.72, - "T": 464.0 + "V": 9.11, + "T": 465.0 }, { - "V": 5008.46, - "T": 468.0 + "V": 6.94, + "T": 469.0 }, { - "V": 5043.2, - "T": 472.0 + "V": 9.0, + "T": 473.0 }, { - "V": 5084.47, - "T": 476.0 + "V": 9.06, + "T": 477.0 }, { - "V": 5112.09, - "T": 480.0 + "V": 9.17, + "T": 481.0 }, { - "V": 5141.58, - "T": 484.0 + "V": 9.13, + "T": 485.0 }, { - "V": 5181.49, - "T": 488.0 + "V": 9.03, + "T": 489.0 }, { - "V": 5206.57, - "T": 492.0 + "V": 9.01, + "T": 493.0 }, { - "V": 5235.1, - "T": 496.0 + "V": 7.98, + "T": 497.0 }, { - "V": 5280.5, - "T": 500.0 + "V": 9.07, + "T": 501.0 }, { - "V": 5302.8, - "T": 504.0 + "V": 9.04, + "T": 505.0 }, { - "V": 5337.71, - "T": 508.0 + "V": 9.05, + "T": 509.0 }, { - "V": 5368.93, - "T": 512.0 + "V": 9.11, + "T": 513.0 }, { - "V": 5397.27, - "T": 516.0 + "V": 9.04, + "T": 517.0 }, { - "V": 5425.82, - "T": 520.0 + "V": 9.07, + "T": 521.0 }, { - "V": 5462.28, - "T": 524.0 + "V": 9.13, + "T": 525.0 }, { - "V": 5493.54, - "T": 528.0 + "V": 9.01, + "T": 529.0 }, { - "V": 5534.0, - "T": 532.0 + "V": 9.07, + "T": 533.0 }, { - "V": 5559.66, - "T": 536.0 + "V": 9.0, + "T": 537.0 }, { - "V": 5588.3, - "T": 540.0 + "V": 9.16, + "T": 541.0 }, { - "V": 5630.07, - "T": 544.0 + "V": 9.07, + "T": 545.0 }, { - "V": 5653.15, - "T": 548.0 + "V": 9.06, + "T": 549.0 }, { - "V": 5681.71, - "T": 552.0 + "V": 9.07, + "T": 553.0 }, { - "V": 5718.17, - "T": 556.0 + "V": 1547.08, + "T": 557.0 }, { - "V": 6413.9, - "T": 560.0 + "V": 8.97, + "T": 561.0 }, { - "V": 6455.06, - "T": 564.0 + "V": 9.0, + "T": 565.0 }, { - "V": 6489.02, - "T": 568.0 + "V": 9.06, + "T": 569.0 }, { - "V": 6522.39, - "T": 572.0 + "V": 9.09, + "T": 573.0 }, { - "V": 6555.42, - "T": 576.0 + "V": 9.15, + "T": 577.0 }, { - "V": 6596.61, - "T": 580.0 + "V": 9.05, + "T": 581.0 }, { - "V": 6632.95, - "T": 584.0 + "V": 9.23, + "T": 585.0 }, { - "V": 6679.62, - "T": 588.0 + "V": 9.02, + "T": 589.0 }, { - "V": 6708.29, - "T": 592.0 + "V": 9.0, + "T": 593.0 } ], - "AllocRateMB": [ + "OpsPerSec": [ { - "V": 8.92, - "T": 1.0 + "V": 65.0, + "T": 0.0 }, { - "V": 9.0, - "T": 5.0 + "V": 63.0, + "T": 4.0 }, { - "V": 8.95, - "T": 9.0 + "V": 63.0, + "T": 8.0 }, { - "V": 9.05, - "T": 13.0 + "V": 61.0, + "T": 12.0 }, { - "V": 9.13, - "T": 17.0 + "V": 63.0, + "T": 16.0 }, { - "V": 9.08, - "T": 21.0 + "V": 63.0, + "T": 20.0 }, { - "V": 9.04, - "T": 25.0 + "V": 63.0, + "T": 24.0 }, { - "V": 101.9, - "T": 29.0 + "V": 63.0, + "T": 28.0 }, { - "V": 9.14, - "T": 33.0 + "V": 63.0, + "T": 32.0 }, { - "V": 9.08, - "T": 37.0 + "V": 64.0, + "T": 36.0 }, { - "V": 9.14, - "T": 41.0 + "V": 61.0, + "T": 40.0 }, { - "V": 8.99, - "T": 45.0 + "V": 63.0, + "T": 44.0 }, { - "V": 9.13, - "T": 49.0 + "V": 62.0, + "T": 48.0 }, { - "V": 9.03, - "T": 53.0 + "V": 63.0, + "T": 52.0 }, { - "V": 9.09, - "T": 57.0 + "V": 64.0, + "T": 56.0 }, { - "V": 9.14, - "T": 61.0 + "V": 63.0, + "T": 60.0 }, { - "V": 9.1, - "T": 65.0 + "V": 62.0, + "T": 64.0 }, { - "V": 9.06, - "T": 69.0 + "V": 63.0, + "T": 68.0 }, { - "V": 9.13, - "T": 73.0 + "V": 63.0, + "T": 72.0 }, { - "V": 9.2, - "T": 77.0 + "V": 46.0, + "T": 76.0 }, { - "V": 9.11, - "T": 81.0 + "V": 64.0, + "T": 80.0 }, { - "V": 9.04, - "T": 85.0 + "V": 63.0, + "T": 84.0 }, { - "V": 9.12, - "T": 89.0 + "V": 64.0, + "T": 88.0 }, { - "V": 9.0, - "T": 93.0 + "V": 63.0, + "T": 92.0 }, { - "V": 9.14, - "T": 97.0 + "V": 63.0, + "T": 96.0 }, { - "V": 9.02, - "T": 101.0 + "V": 63.0, + "T": 100.0 }, { - "V": 9.25, - "T": 105.0 + "V": 62.0, + "T": 104.0 }, { - "V": 9.07, - "T": 109.0 + "V": 63.0, + "T": 108.0 }, { - "V": 8.94, - "T": 113.0 + "V": 64.0, + "T": 112.0 }, { - "V": 9.14, - "T": 117.0 + "V": 63.0, + "T": 116.0 }, { - "V": 9.06, - "T": 121.0 + "V": 64.0, + "T": 120.0 }, { - "V": 9.05, - "T": 125.0 + "V": 63.0, + "T": 124.0 }, { - "V": 8.94, - "T": 129.0 + "V": 63.0, + "T": 128.0 }, { - "V": 9.15, - "T": 133.0 + "V": 61.0, + "T": 132.0 }, { - "V": 9.09, - "T": 137.0 + "V": 60.0, + "T": 136.0 }, { - "V": 9.03, - "T": 141.0 + "V": 62.0, + "T": 140.0 }, { - "V": 9.14, - "T": 145.0 + "V": 64.0, + "T": 144.0 }, { - "V": 9.05, - "T": 149.0 + "V": 62.0, + "T": 148.0 }, { - "V": 9.13, - "T": 153.0 + "V": 63.0, + "T": 152.0 }, { - "V": 9.04, - "T": 157.0 + "V": 64.0, + "T": 156.0 }, { - "V": 9.08, - "T": 161.0 + "V": 62.0, + "T": 160.0 }, { - "V": 9.07, - "T": 165.0 + "V": 63.0, + "T": 164.0 }, { - "V": 9.13, - "T": 169.0 + "V": 63.0, + "T": 168.0 }, { - "V": 9.0, - "T": 173.0 + "V": 63.0, + "T": 172.0 }, { - "V": 9.09, - "T": 177.0 + "V": 62.0, + "T": 176.0 }, { - "V": 9.02, - "T": 181.0 + "V": 63.0, + "T": 180.0 }, { - "V": 9.17, - "T": 185.0 + "V": 63.0, + "T": 184.0 }, { - "V": 9.09, - "T": 189.0 + "V": 61.0, + "T": 188.0 }, { - "V": 9.08, - "T": 193.0 + "V": 63.0, + "T": 192.0 }, { - "V": 9.05, - "T": 197.0 + "V": 63.0, + "T": 196.0 }, { - "V": 8.97, - "T": 201.0 + "V": 63.0, + "T": 200.0 }, { - "V": 9.08, - "T": 205.0 + "V": 64.0, + "T": 204.0 }, { - "V": 9.13, - "T": 209.0 + "V": 63.0, + "T": 208.0 }, { - "V": 9.04, - "T": 213.0 + "V": 65.0, + "T": 212.0 }, { - "V": 9.07, - "T": 217.0 + "V": 61.0, + "T": 216.0 }, { - "V": 9.08, - "T": 221.0 + "V": 63.0, + "T": 220.0 }, { - "V": 9.18, - "T": 225.0 + "V": 63.0, + "T": 224.0 }, { - "V": 9.1, - "T": 229.0 + "V": 63.0, + "T": 228.0 }, { - "V": 8.97, - "T": 233.0 + "V": 63.0, + "T": 232.0 }, { - "V": 9.06, - "T": 237.0 + "V": 63.0, + "T": 236.0 }, { - "V": 9.06, - "T": 241.0 + "V": 63.0, + "T": 240.0 }, { - "V": 9.08, - "T": 245.0 + "V": 61.0, + "T": 244.0 }, { - "V": 9.07, - "T": 249.0 + "V": 63.0, + "T": 248.0 }, { - "V": 9.05, - "T": 253.0 + "V": 63.0, + "T": 252.0 }, { - "V": 9.09, - "T": 257.0 + "V": 63.0, + "T": 256.0 }, { - "V": 9.03, - "T": 261.0 + "V": 63.0, + "T": 260.0 }, { - "V": 9.09, - "T": 265.0 + "V": 63.0, + "T": 264.0 }, { - "V": 9.11, - "T": 269.0 + "V": 64.0, + "T": 268.0 }, { - "V": 8.98, - "T": 273.0 + "V": 60.0, + "T": 272.0 }, { - "V": 119.03, - "T": 277.0 + "V": 63.0, + "T": 276.0 }, { - "V": 9.15, - "T": 281.0 + "V": 59.0, + "T": 280.0 }, { - "V": 9.04, - "T": 285.0 + "V": 64.0, + "T": 284.0 }, { - "V": 8.97, - "T": 289.0 + "V": 63.0, + "T": 288.0 }, { - "V": 9.02, - "T": 293.0 + "V": 64.0, + "T": 292.0 }, { - "V": 8.95, - "T": 297.0 + "V": 62.0, + "T": 296.0 }, { - "V": 9.1, - "T": 301.0 + "V": 63.0, + "T": 300.0 }, { - "V": 8.96, - "T": 305.0 + "V": 63.0, + "T": 304.0 }, { - "V": 8.96, - "T": 309.0 + "V": 62.0, + "T": 308.0 }, { - "V": 9.05, - "T": 313.0 + "V": 63.0, + "T": 312.0 }, { - "V": 9.01, - "T": 317.0 + "V": 64.0, + "T": 316.0 }, { - "V": 9.13, - "T": 321.0 + "V": 63.0, + "T": 320.0 }, { - "V": 9.15, - "T": 325.0 + "V": 63.0, + "T": 324.0 }, { - "V": 9.04, - "T": 329.0 + "V": 63.0, + "T": 328.0 }, { - "V": 8.97, - "T": 333.0 + "V": 62.0, + "T": 332.0 }, { - "V": 8.97, - "T": 337.0 + "V": 61.0, + "T": 336.0 }, { - "V": 9.34, - "T": 341.0 + "V": 63.0, + "T": 340.0 }, { - "V": 9.12, - "T": 345.0 + "V": 63.0, + "T": 344.0 }, { - "V": 9.01, - "T": 349.0 + "V": 63.0, + "T": 348.0 }, { - "V": 9.09, - "T": 353.0 + "V": 63.0, + "T": 352.0 }, { - "V": 9.03, - "T": 357.0 + "V": 63.0, + "T": 356.0 }, { - "V": 9.14, - "T": 361.0 + "V": 63.0, + "T": 360.0 }, { - "V": 9.15, - "T": 365.0 + "V": 63.0, + "T": 364.0 }, { - "V": 9.09, - "T": 369.0 + "V": 64.0, + "T": 368.0 }, { - "V": 9.06, - "T": 373.0 + "V": 63.0, + "T": 372.0 }, { - "V": 9.08, - "T": 377.0 + "V": 64.0, + "T": 376.0 }, { - "V": 9.03, - "T": 381.0 + "V": 62.0, + "T": 380.0 }, { - "V": 9.13, - "T": 385.0 + "V": 62.0, + "T": 384.0 }, { - "V": 9.0, - "T": 389.0 + "V": 64.0, + "T": 388.0 }, { - "V": 8.93, - "T": 393.0 + "V": 61.0, + "T": 392.0 }, { - "V": 9.13, - "T": 397.0 + "V": 64.0, + "T": 396.0 }, { - "V": 9.06, - "T": 401.0 + "V": 63.0, + "T": 400.0 }, { - "V": 8.79, - "T": 405.0 + "V": 63.0, + "T": 404.0 }, { - "V": 9.12, - "T": 409.0 + "V": 62.0, + "T": 408.0 }, { - "V": 9.17, - "T": 413.0 + "V": 64.0, + "T": 412.0 }, { - "V": 9.0, - "T": 417.0 + "V": 68.0, + "T": 416.0 }, { - "V": 9.15, - "T": 421.0 + "V": 67.0, + "T": 420.0 }, { - "V": 9.14, - "T": 425.0 + "V": 69.0, + "T": 424.0 }, { - "V": 9.08, - "T": 429.0 + "V": 66.0, + "T": 428.0 }, { - "V": 9.13, - "T": 433.0 + "V": 65.0, + "T": 432.0 }, { - "V": 9.06, - "T": 437.0 + "V": 65.0, + "T": 436.0 }, { - "V": 9.08, - "T": 441.0 + "V": 64.0, + "T": 440.0 }, { - "V": 9.11, - "T": 445.0 + "V": 68.0, + "T": 444.0 }, { - "V": 9.08, - "T": 449.0 + "V": 63.0, + "T": 448.0 }, { - "V": 9.0, - "T": 453.0 - }, + "V": 65.0, + "T": 452.0 + }, { - "V": 9.2, - "T": 457.0 + "V": 71.0, + "T": 456.0 }, { - "V": 9.11, - "T": 461.0 + "V": 67.0, + "T": 460.0 }, { - "V": 9.06, - "T": 465.0 + "V": 65.0, + "T": 464.0 }, { - "V": 8.94, - "T": 469.0 + "V": 65.0, + "T": 468.0 }, { - "V": 9.07, - "T": 473.0 + "V": 64.0, + "T": 472.0 }, { - "V": 8.84, - "T": 477.0 + "V": 70.0, + "T": 476.0 }, { - "V": 9.14, - "T": 481.0 + "V": 64.0, + "T": 480.0 }, { - "V": 9.06, - "T": 485.0 + "V": 64.0, + "T": 484.0 }, { - "V": 9.2, - "T": 489.0 + "V": 65.0, + "T": 488.0 }, { - "V": 9.02, - "T": 493.0 + "V": 64.0, + "T": 492.0 }, { - "V": 9.02, - "T": 497.0 + "V": 64.0, + "T": 496.0 }, { - "V": 9.02, - "T": 501.0 + "V": 64.0, + "T": 500.0 }, { - "V": 9.0, - "T": 505.0 + "V": 61.0, + "T": 504.0 }, { - "V": 9.06, - "T": 509.0 + "V": 65.0, + "T": 508.0 }, { - "V": 9.15, - "T": 513.0 + "V": 65.0, + "T": 512.0 }, { - "V": 9.14, - "T": 517.0 + "V": 63.0, + "T": 516.0 }, { - "V": 9.05, - "T": 521.0 + "V": 64.0, + "T": 520.0 }, { - "V": 9.02, - "T": 525.0 + "V": 63.0, + "T": 524.0 }, { - "V": 9.04, - "T": 529.0 + "V": 63.0, + "T": 528.0 }, { - "V": 9.08, - "T": 533.0 + "V": 63.0, + "T": 532.0 }, { - "V": 9.33, - "T": 537.0 + "V": 64.0, + "T": 536.0 }, { - "V": 8.96, - "T": 541.0 + "V": 61.0, + "T": 540.0 }, { - "V": 9.17, - "T": 545.0 + "V": 63.0, + "T": 544.0 }, { - "V": 8.92, - "T": 549.0 + "V": 63.0, + "T": 548.0 }, { - "V": 9.03, - "T": 553.0 + "V": 64.0, + "T": 552.0 }, { - "V": 1546.98, - "T": 557.0 + "V": 62.0, + "T": 556.0 }, { - "V": 9.21, - "T": 561.0 + "V": 65.0, + "T": 560.0 }, { - "V": 9.26, - "T": 565.0 + "V": 63.0, + "T": 564.0 }, { - "V": 9.22, - "T": 569.0 + "V": 61.0, + "T": 568.0 }, { - "V": 8.98, - "T": 573.0 + "V": 63.0, + "T": 572.0 }, { - "V": 9.18, - "T": 577.0 + "V": 65.0, + "T": 576.0 }, { - "V": 9.01, - "T": 581.0 + "V": 67.0, + "T": 580.0 }, { - "V": 9.04, - "T": 585.0 + "V": 66.0, + "T": 584.0 }, { - "V": 8.99, - "T": 589.0 + "V": 69.0, + "T": 588.0 }, { - "V": 9.16, - "T": 593.0 + "V": 65.0, + "T": 592.0 } ], - "OpsPerSec": [ + "Gen0PerSec": [ { - "V": 64.0, - "T": 0.0 + "V": 0.0, + "T": 1.0 }, { - "V": 63.0, - "T": 4.0 + "V": 1.0, + "T": 5.0 }, { - "V": 63.0, - "T": 8.0 + "V": 0.0, + "T": 9.0 }, { - "V": 63.0, - "T": 12.0 + "V": 0.0, + "T": 13.0 }, { - "V": 63.0, - "T": 16.0 + "V": 0.0, + "T": 17.0 }, { - "V": 63.0, - "T": 20.0 + "V": 0.0, + "T": 21.0 }, { - "V": 61.0, - "T": 24.0 + "V": 0.0, + "T": 25.0 }, { - "V": 62.0, - "T": 28.0 + "V": 0.0, + "T": 29.0 }, { - "V": 63.0, - "T": 32.0 + "V": 1.0, + "T": 33.0 }, { - "V": 63.0, - "T": 36.0 + "V": 0.0, + "T": 37.0 }, { - "V": 62.0, - "T": 40.0 + "V": 0.0, + "T": 41.0 }, { - "V": 62.0, - "T": 44.0 + "V": 0.0, + "T": 45.0 }, { - "V": 62.0, - "T": 48.0 + "V": 0.0, + "T": 49.0 }, { - "V": 61.0, - "T": 52.0 + "V": 0.0, + "T": 53.0 }, { - "V": 63.0, - "T": 56.0 + "V": 0.0, + "T": 57.0 }, { - "V": 63.0, - "T": 60.0 + "V": 0.0, + "T": 61.0 }, { - "V": 62.0, - "T": 64.0 + "V": 0.0, + "T": 65.0 }, { - "V": 61.0, - "T": 68.0 + "V": 1.0, + "T": 69.0 }, { - "V": 62.0, - "T": 72.0 + "V": 0.0, + "T": 73.0 }, { - "V": 63.0, - "T": 76.0 + "V": 0.0, + "T": 77.0 }, { - "V": 63.0, - "T": 80.0 + "V": 0.0, + "T": 81.0 }, { - "V": 61.0, - "T": 84.0 + "V": 0.0, + "T": 85.0 }, { - "V": 64.0, - "T": 88.0 + "V": 0.0, + "T": 89.0 }, { - "V": 63.0, - "T": 92.0 + "V": 0.0, + "T": 93.0 }, { - "V": 63.0, - "T": 96.0 + "V": 1.0, + "T": 97.0 }, { - "V": 61.0, - "T": 100.0 + "V": 0.0, + "T": 101.0 }, { - "V": 63.0, - "T": 104.0 + "V": 0.0, + "T": 105.0 }, { - "V": 63.0, - "T": 108.0 + "V": 0.0, + "T": 109.0 }, { - "V": 63.0, - "T": 112.0 + "V": 0.0, + "T": 113.0 }, { - "V": 62.0, - "T": 116.0 + "V": 0.0, + "T": 117.0 }, { - "V": 63.0, - "T": 120.0 + "V": 0.0, + "T": 121.0 }, { - "V": 63.0, - "T": 124.0 + "V": 1.0, + "T": 125.0 }, { - "V": 61.0, - "T": 128.0 + "V": 0.0, + "T": 129.0 }, { - "V": 64.0, - "T": 132.0 + "V": 0.0, + "T": 133.0 }, { - "V": 61.0, - "T": 136.0 + "V": 0.0, + "T": 137.0 }, { - "V": 62.0, - "T": 140.0 + "V": 0.0, + "T": 141.0 }, { - "V": 62.0, - "T": 144.0 + "V": 0.0, + "T": 145.0 }, { - "V": 63.0, - "T": 148.0 + "V": 0.0, + "T": 149.0 }, { - "V": 64.0, - "T": 152.0 + "V": 1.0, + "T": 153.0 }, { - "V": 62.0, - "T": 156.0 + "V": 0.0, + "T": 157.0 }, { - "V": 63.0, - "T": 160.0 + "V": 0.0, + "T": 161.0 }, { - "V": 63.0, - "T": 164.0 + "V": 0.0, + "T": 165.0 }, { - "V": 63.0, - "T": 168.0 + "V": 0.0, + "T": 169.0 }, { - "V": 62.0, - "T": 172.0 + "V": 0.0, + "T": 173.0 }, { - "V": 63.0, - "T": 176.0 + "V": 0.0, + "T": 177.0 }, { - "V": 64.0, - "T": 180.0 + "V": 1.0, + "T": 181.0 }, { - "V": 61.0, - "T": 184.0 + "V": 0.0, + "T": 185.0 }, { - "V": 62.0, - "T": 188.0 + "V": 0.0, + "T": 189.0 }, { - "V": 64.0, - "T": 192.0 + "V": 0.0, + "T": 193.0 }, { - "V": 62.0, - "T": 196.0 + "V": 0.0, + "T": 197.0 }, { - "V": 64.0, - "T": 200.0 + "V": 0.0, + "T": 201.0 }, { - "V": 63.0, - "T": 204.0 + "V": 0.0, + "T": 205.0 }, { - "V": 62.0, - "T": 208.0 + "V": 0.0, + "T": 209.0 }, { - "V": 63.0, - "T": 212.0 + "V": 0.0, + "T": 213.0 }, { - "V": 63.0, - "T": 216.0 + "V": 0.0, + "T": 217.0 }, { - "V": 63.0, - "T": 220.0 + "V": 0.0, + "T": 221.0 }, { - "V": 64.0, - "T": 224.0 + "V": 0.0, + "T": 225.0 }, { - "V": 62.0, - "T": 228.0 + "V": 0.0, + "T": 229.0 }, { - "V": 62.0, - "T": 232.0 + "V": 0.0, + "T": 233.0 }, { - "V": 63.0, - "T": 236.0 + "V": 0.0, + "T": 237.0 }, { - "V": 62.0, - "T": 240.0 + "V": 0.0, + "T": 241.0 }, { - "V": 61.0, - "T": 244.0 + "V": 0.0, + "T": 245.0 }, { - "V": 63.0, - "T": 248.0 + "V": 0.0, + "T": 249.0 }, { - "V": 63.0, - "T": 252.0 + "V": 0.0, + "T": 253.0 }, { - "V": 61.0, - "T": 256.0 + "V": 0.0, + "T": 257.0 }, { - "V": 62.0, - "T": 260.0 + "V": 0.0, + "T": 261.0 }, { - "V": 63.0, - "T": 264.0 + "V": 0.0, + "T": 265.0 }, { - "V": 61.0, - "T": 268.0 + "V": 0.0, + "T": 269.0 }, { - "V": 63.0, - "T": 272.0 + "V": 0.0, + "T": 273.0 }, { - "V": 61.0, - "T": 276.0 + "V": 0.0, + "T": 277.0 }, { - "V": 63.0, - "T": 280.0 + "V": 0.0, + "T": 281.0 }, { - "V": 63.0, - "T": 284.0 + "V": 0.0, + "T": 285.0 }, { - "V": 56.0, - "T": 288.0 + "V": 0.0, + "T": 289.0 }, { - "V": 63.0, - "T": 292.0 + "V": 0.0, + "T": 293.0 }, { - "V": 63.0, - "T": 296.0 + "V": 0.0, + "T": 297.0 }, { - "V": 62.0, - "T": 300.0 + "V": 1.0, + "T": 301.0 }, { - "V": 63.0, - "T": 304.0 + "V": 0.0, + "T": 305.0 }, { - "V": 63.0, - "T": 308.0 + "V": 0.0, + "T": 309.0 }, { - "V": 61.0, - "T": 312.0 + "V": 0.0, + "T": 313.0 }, { - "V": 62.0, - "T": 316.0 + "V": 0.0, + "T": 317.0 }, { - "V": 64.0, - "T": 320.0 + "V": 0.0, + "T": 321.0 }, { - "V": 63.0, - "T": 324.0 + "V": 0.0, + "T": 325.0 }, { - "V": 63.0, - "T": 328.0 + "V": 1.0, + "T": 329.0 }, { - "V": 63.0, - "T": 332.0 + "V": 0.0, + "T": 333.0 }, { - "V": 63.0, - "T": 336.0 + "V": 0.0, + "T": 337.0 }, { - "V": 61.0, - "T": 340.0 + "V": 0.0, + "T": 341.0 }, { - "V": 62.0, - "T": 344.0 + "V": 0.0, + "T": 345.0 }, { - "V": 62.0, - "T": 348.0 + "V": 0.0, + "T": 349.0 }, { - "V": 63.0, - "T": 352.0 + "V": 0.0, + "T": 353.0 }, { - "V": 62.0, - "T": 356.0 + "V": 1.0, + "T": 357.0 }, { - "V": 62.0, - "T": 360.0 + "V": 0.0, + "T": 361.0 }, { - "V": 63.0, - "T": 364.0 - }, + "V": 0.0, + "T": 365.0 + }, { - "V": 64.0, - "T": 368.0 + "V": 0.0, + "T": 369.0 }, { - "V": 61.0, - "T": 372.0 + "V": 0.0, + "T": 373.0 }, { - "V": 63.0, - "T": 376.0 + "V": 0.0, + "T": 377.0 }, { - "V": 63.0, - "T": 380.0 + "V": 0.0, + "T": 381.0 }, { - "V": 62.0, - "T": 384.0 + "V": 1.0, + "T": 385.0 }, { - "V": 62.0, - "T": 388.0 + "V": 0.0, + "T": 389.0 }, { - "V": 64.0, - "T": 392.0 + "V": 0.0, + "T": 393.0 }, { - "V": 64.0, - "T": 396.0 + "V": 0.0, + "T": 397.0 }, { - "V": 64.0, - "T": 400.0 + "V": 0.0, + "T": 401.0 }, { - "V": 63.0, - "T": 404.0 + "V": 0.0, + "T": 405.0 }, { - "V": 63.0, - "T": 408.0 + "V": 0.0, + "T": 409.0 }, { - "V": 62.0, - "T": 412.0 + "V": 1.0, + "T": 413.0 }, { - "V": 61.0, - "T": 416.0 + "V": 0.0, + "T": 417.0 }, { - "V": 64.0, - "T": 420.0 + "V": 0.0, + "T": 421.0 }, { - "V": 62.0, - "T": 424.0 + "V": 0.0, + "T": 425.0 }, { - "V": 61.0, - "T": 428.0 + "V": 0.0, + "T": 429.0 }, { - "V": 62.0, - "T": 432.0 + "V": 0.0, + "T": 433.0 }, { - "V": 62.0, - "T": 436.0 + "V": 0.0, + "T": 437.0 }, { - "V": 63.0, - "T": 440.0 + "V": 0.0, + "T": 441.0 }, { - "V": 62.0, - "T": 444.0 + "V": 0.0, + "T": 445.0 }, { - "V": 62.0, - "T": 448.0 + "V": 0.0, + "T": 449.0 }, { - "V": 64.0, - "T": 452.0 + "V": 0.0, + "T": 453.0 }, { - "V": 62.0, - "T": 456.0 + "V": 0.0, + "T": 457.0 }, { - "V": 63.0, - "T": 460.0 + "V": 0.0, + "T": 461.0 }, { - "V": 63.0, - "T": 464.0 + "V": 0.0, + "T": 465.0 }, { - "V": 55.0, - "T": 468.0 + "V": 0.0, + "T": 469.0 }, { - "V": 62.0, - "T": 472.0 + "V": 0.0, + "T": 473.0 }, { - "V": 61.0, - "T": 476.0 + "V": 0.0, + "T": 477.0 }, { - "V": 63.0, - "T": 480.0 + "V": 0.0, + "T": 481.0 }, { - "V": 62.0, - "T": 484.0 + "V": 0.0, + "T": 485.0 }, { - "V": 62.0, - "T": 488.0 + "V": 0.0, + "T": 489.0 }, { - "V": 62.0, - "T": 492.0 + "V": 0.0, + "T": 493.0 }, { - "V": 64.0, - "T": 496.0 + "V": 0.0, + "T": 497.0 }, { - "V": 62.0, - "T": 500.0 + "V": 0.0, + "T": 501.0 }, { - "V": 63.0, - "T": 504.0 + "V": 0.0, + "T": 505.0 }, { - "V": 63.0, - "T": 508.0 + "V": 0.0, + "T": 509.0 }, { - "V": 63.0, - "T": 512.0 + "V": 0.0, + "T": 513.0 }, { - "V": 62.0, - "T": 516.0 + "V": 0.0, + "T": 517.0 }, { - "V": 64.0, - "T": 520.0 + "V": 0.0, + "T": 521.0 }, { - "V": 64.0, - "T": 524.0 + "V": 0.0, + "T": 525.0 }, { - "V": 63.0, - "T": 528.0 + "V": 0.0, + "T": 529.0 }, { - "V": 66.0, - "T": 532.0 + "V": 1.0, + "T": 533.0 }, { - "V": 62.0, - "T": 536.0 + "V": 0.0, + "T": 537.0 }, { - "V": 64.0, - "T": 540.0 + "V": 0.0, + "T": 541.0 }, { - "V": 60.0, - "T": 544.0 + "V": 0.0, + "T": 545.0 }, { - "V": 63.0, - "T": 548.0 + "V": 0.0, + "T": 549.0 }, { - "V": 64.0, - "T": 552.0 + "V": 0.0, + "T": 553.0 }, { - "V": 64.0, - "T": 556.0 + "V": 0.0, + "T": 557.0 }, { - "V": 61.0, - "T": 560.0 + "V": 1.0, + "T": 561.0 }, { - "V": 57.0, - "T": 564.0 + "V": 0.0, + "T": 565.0 }, { - "V": 64.0, - "T": 568.0 + "V": 0.0, + "T": 569.0 }, { - "V": 63.0, - "T": 572.0 + "V": 0.0, + "T": 573.0 }, { - "V": 62.0, - "T": 576.0 + "V": 0.0, + "T": 577.0 }, { - "V": 63.0, - "T": 580.0 + "V": 0.0, + "T": 581.0 }, { - "V": 64.0, - "T": 584.0 + "V": 0.0, + "T": 585.0 }, { - "V": 61.0, - "T": 588.0 + "V": 1.0, + "T": 589.0 }, { - "V": 62.0, - "T": 592.0 + "V": 0.0, + "T": 593.0 } - ], - "Gen0PerSec": [ + ] + } + }, + { + "ScenarioId": "dotllm-serve-1_5b", + "ScenarioName": "dotLLM: 1.5B model (~1GB, Q4_K_M), few-hundred-token context, zero-alloc-inference HTTP server", + "GcModeId": "workstation", + "GcModeName": "Workstation GC", + "DurationSeconds": 600, + "Summary": { + "OperationsTotal": 105.0, + "OpsPerSecondOverall": 0.175, + "TotalAllocatedBytes": 34219416.0, + "Gen0Collections": 1, + "Gen1Collections": 1, + "Gen2Collections": 0, + "WorkingSetBytes": 2428870656.0, + "PeakWorkingSetBytes": 2428870656.0, + "HeapSizeBytes": null, + "TotalCommittedBytes": 138686464.0, + "GcName": "Workstation GC" + }, + "PauseTimePctStats": { + "Avg": 0.003379635761589402, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 1.8698999999999995, + "Min": 0.0, + "Count": 604 + }, + "PauseTimeMsStats": { + "Avg": 0.03379635761589402, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 18.698999999999995, + "Min": 0.0, + "Count": 604 + }, + "WorkingSetStats": { + "Avg": 2420502358.7438016, + "P50": 2422669312.0, + "P90": 2428739584.0, + "P99": 2428837888.0, + "Max": 2428870656.0, + "Min": 2399326208.0, + "Count": 605 + }, + "AllocRateMBStats": { + "Avg": 0.05403009629407466, + "P50": 0.03125, + "P90": 0.1538543701171875, + "P99": 0.18006134033203125, + "Max": 0.23824310302734375, + "Min": 0.00730133056640625, + "Count": 604 + }, + "OpsPerSecStats": { + "Avg": 1.0, + "P50": 1.0, + "P90": 1.0, + "P99": 1.0, + "Max": 1.0, + "Min": 1.0, + "Count": 105 + }, + "TimeSeries": { + "PauseTimePct": [ { - "V": 0.0, - "T": 1.0 + "T": 1.0, + "V": 0.0 }, { - "V": 0.0, - "T": 5.0 + "T": 6.0, + "V": 0.0 }, { - "V": 0.0, - "T": 9.0 + "T": 11.0, + "V": 0.0 }, { - "V": 0.0, - "T": 13.0 + "T": 16.0, + "V": 0.0 }, { - "V": 0.0, - "T": 17.0 + "T": 21.0, + "V": 0.0 }, { - "V": 0.0, - "T": 21.0 + "T": 26.0, + "V": 0.0 }, { - "V": 0.0, - "T": 25.0 + "T": 31.0, + "V": 0.0 }, { - "V": 0.0, - "T": 29.0 + "T": 36.0, + "V": 0.0 }, { - "V": 0.0, - "T": 33.0 + "T": 41.0, + "V": 0.0 }, { - "V": 0.0, - "T": 37.0 + "T": 46.0, + "V": 0.0 }, { - "V": 0.0, - "T": 41.0 + "T": 51.0, + "V": 0.0 }, { - "V": 0.0, - "T": 45.0 + "T": 56.0, + "V": 0.0 }, { - "V": 0.0, - "T": 49.0 + "T": 61.0, + "V": 0.0 }, { - "V": 0.0, - "T": 53.0 + "T": 66.0, + "V": 0.0 }, { - "V": 0.0, - "T": 57.0 + "T": 71.0, + "V": 0.0 }, { - "V": 0.0, - "T": 61.0 + "T": 76.0, + "V": 0.0 }, { - "V": 0.0, - "T": 65.0 + "T": 81.0, + "V": 0.0 }, { - "V": 0.0, - "T": 69.0 + "T": 86.0, + "V": 0.0 }, { - "V": 0.0, - "T": 73.0 + "T": 91.0, + "V": 0.0 }, { - "V": 0.0, - "T": 77.0 + "T": 96.0, + "V": 0.0 }, { - "V": 0.0, - "T": 81.0 + "T": 101.0, + "V": 0.0 }, { - "V": 0.0, - "T": 85.0 + "T": 106.0, + "V": 0.0 }, { - "V": 0.0, - "T": 89.0 + "T": 111.0, + "V": 0.0 }, { - "V": 0.0, - "T": 93.0 + "T": 116.0, + "V": 0.0 }, { - "V": 0.0, - "T": 97.0 + "T": 121.0, + "V": 0.0 }, { - "V": 0.0, - "T": 101.0 + "T": 126.0, + "V": 0.0 }, { - "V": 0.0, - "T": 105.0 + "T": 131.0, + "V": 0.0 }, { - "V": 0.0, - "T": 109.0 + "T": 136.0, + "V": 0.0 }, { - "V": 0.0, - "T": 113.0 + "T": 141.0, + "V": 0.0 }, { - "V": 0.0, - "T": 117.0 + "T": 146.0, + "V": 0.0 }, { - "V": 0.0, - "T": 121.0 + "T": 151.0, + "V": 0.0 }, { - "V": 0.0, - "T": 125.0 + "T": 156.0, + "V": 0.0 }, { - "V": 0.0, - "T": 129.0 + "T": 161.0, + "V": 0.0 }, { - "V": 0.0, - "T": 133.0 + "T": 166.0, + "V": 0.0 }, { - "V": 0.0, - "T": 137.0 + "T": 171.0, + "V": 0.0 }, { - "V": 0.0, - "T": 141.0 + "T": 176.0, + "V": 0.0 }, { - "V": 0.0, - "T": 145.0 + "T": 181.0, + "V": 0.0 }, { - "V": 0.0, - "T": 149.0 + "T": 186.0, + "V": 0.0 }, { - "V": 0.0, - "T": 153.0 + "T": 191.0, + "V": 0.0 }, { - "V": 0.0, - "T": 157.0 + "T": 196.0, + "V": 0.0 }, { - "V": 0.0, - "T": 161.0 + "T": 201.0, + "V": 0.0 }, { - "V": 0.0, - "T": 165.0 + "T": 206.0, + "V": 0.0 }, { - "V": 0.0, - "T": 169.0 + "T": 211.0, + "V": 0.0 }, { - "V": 0.0, - "T": 173.0 + "T": 216.0, + "V": 0.0 }, { - "V": 0.0, - "T": 177.0 + "T": 221.0, + "V": 0.0 }, { - "V": 0.0, - "T": 181.0 + "T": 226.0, + "V": 0.0 }, { - "V": 0.0, - "T": 185.0 + "T": 231.0, + "V": 0.0 }, { - "V": 0.0, - "T": 189.0 + "T": 236.0, + "V": 0.0 }, { - "V": 0.0, - "T": 193.0 + "T": 241.0, + "V": 0.0 }, { - "V": 0.0, - "T": 197.0 + "T": 246.0, + "V": 0.0 }, { - "V": 0.0, - "T": 201.0 + "T": 251.0, + "V": 0.0 }, { - "V": 0.0, - "T": 205.0 + "T": 256.0, + "V": 0.0 }, { - "V": 0.0, - "T": 209.0 + "T": 261.0, + "V": 0.0 }, { - "V": 0.0, - "T": 213.0 + "T": 266.0, + "V": 0.0 }, { - "V": 0.0, - "T": 217.0 + "T": 271.0, + "V": 0.0 }, { - "V": 0.0, - "T": 221.0 + "T": 276.0, + "V": 0.0 }, { - "V": 0.0, - "T": 225.0 + "T": 281.0, + "V": 0.0 }, { - "V": 0.0, - "T": 229.0 + "T": 286.0, + "V": 0.0 }, { - "V": 0.0, - "T": 233.0 + "T": 291.0, + "V": 0.0 }, { - "V": 0.0, - "T": 237.0 + "T": 296.0, + "V": 0.0 }, { - "V": 0.0, - "T": 241.0 + "T": 301.0, + "V": 0.0 }, { - "V": 0.0, - "T": 245.0 + "T": 306.0, + "V": 0.0 }, { - "V": 0.0, - "T": 249.0 + "T": 311.0, + "V": 0.0 }, { - "V": 0.0, - "T": 253.0 + "T": 316.0, + "V": 0.0 }, { - "V": 0.0, - "T": 257.0 + "T": 321.0, + "V": 0.0 }, { - "V": 0.0, - "T": 261.0 + "T": 326.0, + "V": 0.0 }, { - "V": 0.0, - "T": 265.0 + "T": 331.0, + "V": 0.0 }, { - "V": 0.0, - "T": 269.0 + "T": 336.0, + "V": 0.0 }, { - "V": 0.0, - "T": 273.0 + "T": 341.0, + "V": 0.0 }, { - "V": 0.0, - "T": 277.0 + "T": 346.0, + "V": 0.0 }, { - "V": 0.0, - "T": 281.0 + "T": 351.0, + "V": 0.0 }, { - "V": 0.0, - "T": 285.0 + "T": 356.0, + "V": 0.0 }, { - "V": 0.0, - "T": 289.0 + "T": 361.0, + "V": 0.0 }, { - "V": 0.0, - "T": 293.0 + "T": 366.0, + "V": 0.0 }, { - "V": 0.0, - "T": 297.0 + "T": 371.0, + "V": 0.0 }, { - "V": 0.0, - "T": 301.0 + "T": 376.0, + "V": 0.0 }, { - "V": 0.0, - "T": 305.0 + "T": 381.0, + "V": 0.0 }, { - "V": 0.0, - "T": 309.0 + "T": 386.0, + "V": 0.0 }, { - "V": 0.0, - "T": 313.0 + "T": 391.0, + "V": 0.0 }, { - "V": 0.0, - "T": 317.0 + "T": 396.0, + "V": 0.0 }, { - "V": 0.0, - "T": 321.0 + "T": 401.0, + "V": 0.0 }, { - "V": 0.0, - "T": 325.0 + "T": 406.0, + "V": 0.0 }, { - "V": 0.0, - "T": 329.0 + "T": 411.0, + "V": 0.0 }, { - "V": 0.0, - "T": 333.0 + "T": 416.0, + "V": 0.0 }, { - "V": 0.0, - "T": 337.0 + "T": 421.0, + "V": 0.0 }, { - "V": 0.0, - "T": 341.0 + "T": 426.0, + "V": 0.0 }, { - "V": 0.0, - "T": 345.0 + "T": 431.0, + "V": 0.0 }, { - "V": 0.0, - "T": 349.0 + "T": 436.0, + "V": 0.0 }, { - "V": 0.0, - "T": 353.0 + "T": 441.0, + "V": 0.0 }, { - "V": 0.0, - "T": 357.0 + "T": 446.0, + "V": 0.0 }, { - "V": 0.0, - "T": 361.0 + "T": 451.0, + "V": 0.0 }, { - "V": 0.0, - "T": 365.0 + "T": 456.0, + "V": 0.0 }, { - "V": 0.0, - "T": 369.0 + "T": 461.0, + "V": 0.0 }, { - "V": 0.0, - "T": 373.0 + "T": 466.0, + "V": 0.0 }, { - "V": 0.0, - "T": 377.0 + "T": 471.0, + "V": 0.0 }, { - "V": 0.0, - "T": 381.0 + "T": 476.0, + "V": 0.0 }, { - "V": 0.0, - "T": 385.0 + "T": 481.0, + "V": 0.0 }, { - "V": 0.0, - "T": 389.0 + "T": 486.0, + "V": 0.0 }, { - "V": 0.0, - "T": 393.0 + "T": 491.0, + "V": 0.0 }, { - "V": 0.0, - "T": 397.0 + "T": 496.0, + "V": 0.0 }, { - "V": 0.0, - "T": 401.0 + "T": 501.0, + "V": 0.0 }, { - "V": 0.0, - "T": 405.0 + "T": 506.0, + "V": 0.0 }, { - "V": 0.0, - "T": 409.0 + "T": 511.0, + "V": 0.0 }, { - "V": 0.0, - "T": 413.0 + "T": 516.0, + "V": 0.0 }, { - "V": 0.0, - "T": 417.0 + "T": 521.0, + "V": 0.0 }, { - "V": 0.0, - "T": 421.0 + "T": 526.0, + "V": 0.1714 }, { - "V": 0.0, - "T": 425.0 + "T": 531.0, + "V": 0.0 }, { - "V": 0.0, - "T": 429.0 + "T": 536.0, + "V": 0.0 }, { - "V": 0.0, - "T": 433.0 + "T": 541.0, + "V": 0.0 }, { - "V": 0.0, - "T": 437.0 + "T": 546.0, + "V": 0.0 }, { - "V": 0.0, - "T": 441.0 + "T": 551.0, + "V": 0.0 }, { - "V": 0.0, - "T": 445.0 + "T": 556.0, + "V": 0.0 }, { - "V": 0.0, - "T": 449.0 + "T": 561.0, + "V": 0.0 }, { - "V": 0.0, - "T": 453.0 + "T": 566.0, + "V": 0.0 }, { - "V": 0.0, - "T": 457.0 + "T": 571.0, + "V": 0.0 }, { - "V": 0.0, - "T": 461.0 + "T": 576.0, + "V": 0.0 }, { - "V": 0.0, - "T": 465.0 + "T": 581.0, + "V": 0.0 }, { - "V": 0.0, - "T": 469.0 + "T": 586.0, + "V": 0.0 }, { - "V": 0.0, - "T": 473.0 + "T": 591.0, + "V": 0.0 }, { - "V": 0.0, - "T": 477.0 + "T": 596.0, + "V": 0.0 }, { - "V": 0.0, - "T": 481.0 - }, + "T": 601.0, + "V": 0.0 + } + ], + "PauseTimeMs": [ { - "V": 0.0, - "T": 485.0 + "T": 1.0, + "V": 0.0 }, { - "V": 0.0, - "T": 489.0 + "T": 6.0, + "V": 0.0 }, { - "V": 0.0, - "T": 493.0 + "T": 11.0, + "V": 0.0 }, { - "V": 0.0, - "T": 497.0 + "T": 16.0, + "V": 0.0 }, { - "V": 0.0, - "T": 501.0 + "T": 21.0, + "V": 0.0 }, { - "V": 0.0, - "T": 505.0 + "T": 26.0, + "V": 0.0 }, { - "V": 0.0, - "T": 509.0 + "T": 31.0, + "V": 0.0 }, { - "V": 0.0, - "T": 513.0 + "T": 36.0, + "V": 0.0 }, { - "V": 0.0, - "T": 517.0 + "T": 41.0, + "V": 0.0 }, { - "V": 0.0, - "T": 521.0 + "T": 46.0, + "V": 0.0 }, { - "V": 0.0, - "T": 525.0 + "T": 51.0, + "V": 0.0 }, { - "V": 0.0, - "T": 529.0 + "T": 56.0, + "V": 0.0 }, { - "V": 0.0, - "T": 533.0 + "T": 61.0, + "V": 0.0 }, { - "V": 0.0, - "T": 537.0 + "T": 66.0, + "V": 0.0 }, { - "V": 0.0, - "T": 541.0 + "T": 71.0, + "V": 0.0 }, { - "V": 0.0, - "T": 545.0 + "T": 76.0, + "V": 0.0 }, { - "V": 0.0, - "T": 549.0 + "T": 81.0, + "V": 0.0 }, { - "V": 0.0, - "T": 553.0 + "T": 86.0, + "V": 0.0 }, { - "V": 0.0, - "T": 557.0 + "T": 91.0, + "V": 0.0 }, { - "V": 0.0, - "T": 561.0 + "T": 96.0, + "V": 0.0 }, { - "V": 0.0, - "T": 565.0 + "T": 101.0, + "V": 0.0 }, { - "V": 0.0, - "T": 569.0 + "T": 106.0, + "V": 0.0 }, { - "V": 0.0, - "T": 573.0 + "T": 111.0, + "V": 0.0 }, { - "V": 0.0, - "T": 577.0 + "T": 116.0, + "V": 0.0 }, { - "V": 0.0, - "T": 581.0 + "T": 121.0, + "V": 0.0 }, { - "V": 0.0, - "T": 585.0 + "T": 126.0, + "V": 0.0 }, { - "V": 0.0, - "T": 589.0 + "T": 131.0, + "V": 0.0 }, { - "V": 0.0, - "T": 593.0 - } - ] - } - }, - { - "ScenarioId": "growing-cache", - "ScenarioName": "Console: growing in-memory cache with real request workload (naturally escalating gen2 GCs)", - "GcModeId": "server", - "GcModeName": "Server GC", - "DurationSeconds": 600.0003392, - "Summary": { - "OperationsTotal": 37751, - "OpsPerSecondOverall": 62.91829776352233, - "TotalAllocatedBytes": 8923117408, - "Gen0Collections": 103, - "Gen1Collections": 34, - "Gen2Collections": 13, - "WorkingSetBytes": 8100327424, - "PeakWorkingSetBytes": 8100327424, - "HeapSizeBytes": 7163275232, - "TotalCommittedBytes": 7257989120, - "GcName": "CoreCLR (Server)", - "FinalCacheEntryCount": 30839663, - "ObservedGen2Events": 13, - "ObservedGen2PauseAvgMs": 605.8124615384615, - "ObservedGen2PauseMaxMs": 2176.4489999999996, - "ObservedGen2PauseMinMs": 0.8460000000000001, - "ObservedGen2PauseSamplesMs": [ - 10.508, - 5.7840000000000025, - 0.8460000000000001, - 51.18799999999999, - 15.504000000000005, - 118.20100000000001, - 439.55699999999996, - 502.29600000000005, - 413.25800000000004, - 868.6249999999998, - 1218.65, - 2054.6960000000004, - 2176.4489999999996 - ] - }, - "PauseTimePctStats": { - "Avg": 1.4463164705882356, - "P50": 0.0, - "P90": 4.16909999999997, - "P99": 28.27200000000001, - "Max": 49.27720000000004, - "Min": 0.0, - "Count": 595 - }, - "PauseTimeMsStats": { - "Avg": 14.46316470588235, - "P50": 0.0, - "P90": 41.690999999999704, - "P99": 282.7200000000001, - "Max": 492.77200000000045, - "Min": 0.0, - "Count": 595 - }, - "WorkingSetStats": { - "Avg": 3818182972.134228, - "P50": 4095696896.0, - "P90": 6317719552.0, - "P99": 8042143744.0, - "Max": 8089899008.0, - "Min": 96518144.0, - "Count": 596 - }, - "AllocRateMBStats": { - "Avg": 14.1904167752306, - "P50": 9.066757202148438, - "P90": 9.183395385742188, - "P99": 64.19603729248047, - "Max": 1547.081916809082, - "Min": 5.864410400390625, - "Count": 595 - }, - "OpsPerSecStats": { - "Avg": 62.91610738255034, - "P50": 63.0, - "P90": 65.0, - "P99": 74.0, - "Max": 76.0, - "Min": 43.0, - "Count": 596 - }, - "TimeSeries": { - "PauseTimePct": [ - { - "V": 0.0, - "T": 1.0 + "T": 136.0, + "V": 0.0 }, { - "V": 1.4935, - "T": 5.0 + "T": 141.0, + "V": 0.0 }, { - "V": 0.0, - "T": 9.0 + "T": 146.0, + "V": 0.0 }, { - "V": 0.0, - "T": 13.0 + "T": 151.0, + "V": 0.0 }, { - "V": 0.0, - "T": 17.0 + "T": 156.0, + "V": 0.0 }, { - "V": 0.0, - "T": 21.0 + "T": 161.0, + "V": 0.0 }, { - "V": 0.0, - "T": 25.0 + "T": 166.0, + "V": 0.0 }, { - "V": 0.0975, - "T": 29.0 + "T": 171.0, + "V": 0.0 }, { - "V": 4.2897, - "T": 33.0 + "T": 176.0, + "V": 0.0 }, { - "V": 0.0, - "T": 37.0 + "T": 181.0, + "V": 0.0 }, { - "V": 0.0, - "T": 41.0 + "T": 186.0, + "V": 0.0 }, { - "V": 0.0, - "T": 45.0 + "T": 191.0, + "V": 0.0 }, { - "V": 0.0, - "T": 49.0 + "T": 196.0, + "V": 0.0 }, { - "V": 0.0, - "T": 53.0 + "T": 201.0, + "V": 0.0 }, { - "V": 0.0, - "T": 57.0 + "T": 206.0, + "V": 0.0 }, { - "V": 0.0, - "T": 61.0 + "T": 211.0, + "V": 0.0 }, { - "V": 0.0, - "T": 65.0 + "T": 216.0, + "V": 0.0 }, { - "V": 5.1192, - "T": 69.0 + "T": 221.0, + "V": 0.0 }, { - "V": 0.0, - "T": 73.0 + "T": 226.0, + "V": 0.0 }, { - "V": 0.0, - "T": 77.0 + "T": 231.0, + "V": 0.0 }, { - "V": 0.0, - "T": 81.0 + "T": 236.0, + "V": 0.0 }, { - "V": 0.0, - "T": 85.0 + "T": 241.0, + "V": 0.0 }, { - "V": 0.0, - "T": 89.0 + "T": 246.0, + "V": 0.0 }, { - "V": 0.0, - "T": 93.0 + "T": 251.0, + "V": 0.0 }, { - "V": 4.0898, - "T": 97.0 + "T": 256.0, + "V": 0.0 }, { - "V": 0.0, - "T": 101.0 + "T": 261.0, + "V": 0.0 }, { - "V": 0.0, - "T": 105.0 + "T": 266.0, + "V": 0.0 }, { - "V": 0.0, - "T": 109.0 + "T": 271.0, + "V": 0.0 }, { - "V": 0.0, - "T": 113.0 + "T": 276.0, + "V": 0.0 }, { - "V": 0.0, - "T": 117.0 + "T": 281.0, + "V": 0.0 }, { - "V": 0.0, - "T": 121.0 + "T": 286.0, + "V": 0.0 }, { - "V": 4.0452, - "T": 125.0 + "T": 291.0, + "V": 0.0 }, { - "V": 0.0, - "T": 129.0 + "T": 296.0, + "V": 0.0 }, { - "V": 0.0, - "T": 133.0 + "T": 301.0, + "V": 0.0 }, { - "V": 0.1255, - "T": 137.0 + "T": 306.0, + "V": 0.0 }, { - "V": 0.0, - "T": 141.0 + "T": 311.0, + "V": 0.0 }, { - "V": 0.0, - "T": 145.0 + "T": 316.0, + "V": 0.0 }, { - "V": 0.0, - "T": 149.0 + "T": 321.0, + "V": 0.0 }, { - "V": 4.4476, - "T": 153.0 + "T": 326.0, + "V": 0.0 }, { - "V": 0.0, - "T": 157.0 + "T": 331.0, + "V": 0.0 }, { - "V": 0.0, - "T": 161.0 + "T": 336.0, + "V": 0.0 }, { - "V": 0.0, - "T": 165.0 + "T": 341.0, + "V": 0.0 }, { - "V": 0.0, - "T": 169.0 + "T": 346.0, + "V": 0.0 }, { - "V": 0.0, - "T": 173.0 + "T": 351.0, + "V": 0.0 }, { - "V": 0.0, - "T": 177.0 + "T": 356.0, + "V": 0.0 }, { - "V": 4.2564, - "T": 181.0 + "T": 361.0, + "V": 0.0 }, { - "V": 0.0, - "T": 185.0 + "T": 366.0, + "V": 0.0 }, { - "V": 0.0, - "T": 189.0 + "T": 371.0, + "V": 0.0 }, { - "V": 0.0, - "T": 193.0 + "T": 376.0, + "V": 0.0 }, { - "V": 0.0, - "T": 197.0 + "T": 381.0, + "V": 0.0 }, { - "V": 0.0, - "T": 201.0 + "T": 386.0, + "V": 0.0 }, { - "V": 0.0, - "T": 205.0 + "T": 391.0, + "V": 0.0 }, { - "V": 28.2788, - "T": 209.0 + "T": 396.0, + "V": 0.0 }, { - "V": 0.0, - "T": 213.0 + "T": 401.0, + "V": 0.0 }, { - "V": 0.0, - "T": 217.0 + "T": 406.0, + "V": 0.0 }, { - "V": 0.0, - "T": 221.0 + "T": 411.0, + "V": 0.0 }, { - "V": 0.0, - "T": 225.0 + "T": 416.0, + "V": 0.0 }, { - "V": 0.0, - "T": 229.0 + "T": 421.0, + "V": 0.0 }, { - "V": 0.0, - "T": 233.0 + "T": 426.0, + "V": 0.0 }, { - "V": 42.6127, - "T": 237.0 + "T": 431.0, + "V": 0.0 }, { - "V": 0.0, - "T": 241.0 + "T": 436.0, + "V": 0.0 }, { - "V": 0.0, - "T": 245.0 + "T": 441.0, + "V": 0.0 }, { - "V": 0.0, - "T": 249.0 + "T": 446.0, + "V": 0.0 }, { - "V": 0.0, - "T": 253.0 + "T": 451.0, + "V": 0.0 }, { - "V": 0.0, - "T": 257.0 + "T": 456.0, + "V": 0.0 }, { - "V": 0.0, - "T": 261.0 + "T": 461.0, + "V": 0.0 }, { - "V": 21.4764, - "T": 265.0 + "T": 466.0, + "V": 0.0 }, { - "V": 0.0, - "T": 269.0 + "T": 471.0, + "V": 0.0 }, { - "V": 0.0, - "T": 273.0 + "T": 476.0, + "V": 0.0 }, { - "V": 0.2011, - "T": 277.0 + "T": 481.0, + "V": 0.0 }, { - "V": 0.0, - "T": 281.0 + "T": 486.0, + "V": 0.0 }, { - "V": 0.0, - "T": 285.0 + "T": 491.0, + "V": 0.0 }, { - "V": 0.0, - "T": 289.0 + "T": 496.0, + "V": 0.0 }, { - "V": 0.0, - "T": 293.0 + "T": 501.0, + "V": 0.0 }, { - "V": 0.0, - "T": 297.0 + "T": 506.0, + "V": 0.0 }, { - "V": 4.2778, - "T": 301.0 + "T": 511.0, + "V": 0.0 }, { - "V": 0.0, - "T": 305.0 + "T": 516.0, + "V": 0.0 }, { - "V": 0.0, - "T": 309.0 + "T": 521.0, + "V": 0.0 }, { - "V": 0.0, - "T": 313.0 + "T": 526.0, + "V": 1.714 }, { - "V": 0.0, - "T": 317.0 + "T": 531.0, + "V": 0.0 }, { - "V": 0.0, - "T": 321.0 + "T": 536.0, + "V": 0.0 }, { - "V": 0.0, - "T": 325.0 + "T": 541.0, + "V": 0.0 }, { - "V": 4.6135, - "T": 329.0 + "T": 546.0, + "V": 0.0 }, { - "V": 0.0, - "T": 333.0 + "T": 551.0, + "V": 0.0 }, { - "V": 0.0, - "T": 337.0 + "T": 556.0, + "V": 0.0 }, { - "V": 0.0, - "T": 341.0 + "T": 561.0, + "V": 0.0 }, { - "V": 0.0, - "T": 345.0 + "T": 566.0, + "V": 0.0 }, { - "V": 0.0, - "T": 349.0 + "T": 571.0, + "V": 0.0 }, { - "V": 0.0, - "T": 353.0 + "T": 576.0, + "V": 0.0 }, { - "V": 4.1902, - "T": 357.0 + "T": 581.0, + "V": 0.0 }, { - "V": 0.0, - "T": 361.0 + "T": 586.0, + "V": 0.0 }, { - "V": 0.0, - "T": 365.0 + "T": 591.0, + "V": 0.0 }, { - "V": 0.0, - "T": 369.0 + "T": 596.0, + "V": 0.0 }, { - "V": 0.0, - "T": 373.0 - }, + "T": 601.0, + "V": 0.0 + } + ], + "WorkingSetMB": [ { - "V": 0.0, - "T": 377.0 + "T": 0.0, + "V": 2288.18 }, { - "V": 0.0, - "T": 381.0 + "T": 5.0, + "V": 2290.54 }, { - "V": 4.3972, - "T": 385.0 + "T": 10.0, + "V": 2290.53 }, { - "V": 0.0, - "T": 389.0 + "T": 15.0, + "V": 2289.32 }, { - "V": 0.0, - "T": 393.0 + "T": 20.0, + "V": 2290.63 }, { - "V": 0.0, - "T": 397.0 + "T": 25.0, + "V": 2291.0 }, { - "V": 0.0, - "T": 401.0 + "T": 30.0, + "V": 2291.21 }, { - "V": 0.0, - "T": 405.0 + "T": 35.0, + "V": 2291.9 }, { - "V": 0.0, - "T": 409.0 + "T": 40.0, + "V": 2292.29 }, { - "V": 4.2427, - "T": 413.0 + "T": 45.0, + "V": 2292.39 }, { - "V": 0.0, - "T": 417.0 + "T": 50.0, + "V": 2292.91 }, { - "V": 0.0, - "T": 421.0 + "T": 55.0, + "V": 2293.61 }, { - "V": 0.0, - "T": 425.0 + "T": 60.0, + "V": 2293.97 }, { - "V": 0.0, - "T": 429.0 + "T": 65.0, + "V": 2294.37 }, { - "V": 0.0, - "T": 433.0 + "T": 70.0, + "V": 2294.7 }, { - "V": 0.0, - "T": 437.0 + "T": 75.0, + "V": 2294.85 }, { - "V": 45.2463, - "T": 441.0 + "T": 80.0, + "V": 2295.32 }, { - "V": 0.0, - "T": 445.0 + "T": 85.0, + "V": 2296.29 }, { - "V": 0.0, - "T": 449.0 + "T": 90.0, + "V": 2296.63 }, { - "V": 0.0, - "T": 453.0 + "T": 95.0, + "V": 2296.78 }, { - "V": 0.0, - "T": 457.0 + "T": 100.0, + "V": 2298.07 }, { - "V": 0.0, - "T": 461.0 + "T": 105.0, + "V": 2298.4 }, { - "V": 0.0, - "T": 465.0 + "T": 110.0, + "V": 2298.51 }, { - "V": 49.2772, - "T": 469.0 + "T": 115.0, + "V": 2298.87 }, { - "V": 0.0, - "T": 473.0 + "T": 120.0, + "V": 2299.15 }, { - "V": 0.0, - "T": 477.0 + "T": 125.0, + "V": 2299.29 }, { - "V": 0.0, - "T": 481.0 + "T": 130.0, + "V": 2299.62 }, { - "V": 0.0, - "T": 485.0 + "T": 135.0, + "V": 2299.91 }, { - "V": 0.0, - "T": 489.0 + "T": 140.0, + "V": 2300.17 }, { - "V": 0.0, - "T": 493.0 + "T": 145.0, + "V": 2300.48 }, { - "V": 21.3964, - "T": 497.0 + "T": 150.0, + "V": 2300.8 }, { - "V": 0.0, - "T": 501.0 + "T": 155.0, + "V": 2301.21 }, { - "V": 0.0, - "T": 505.0 + "T": 160.0, + "V": 2301.72 }, { - "V": 0.0, - "T": 509.0 + "T": 165.0, + "V": 2302.2 }, { - "V": 0.0, - "T": 513.0 + "T": 170.0, + "V": 2302.33 }, { - "V": 0.0, - "T": 517.0 + "T": 175.0, + "V": 2304.63 }, { - "V": 0.0, - "T": 521.0 + "T": 180.0, + "V": 2305.72 }, { - "V": 0.0, - "T": 525.0 + "T": 185.0, + "V": 2306.0 }, { - "V": 0.0, - "T": 529.0 + "T": 190.0, + "V": 2306.42 }, { - "V": 4.3167, - "T": 533.0 + "T": 195.0, + "V": 2306.66 }, { - "V": 0.0, - "T": 537.0 + "T": 200.0, + "V": 2306.97 }, { - "V": 0.0, - "T": 541.0 + "T": 205.0, + "V": 2307.22 }, { - "V": 0.0, - "T": 545.0 + "T": 210.0, + "V": 2307.55 }, { - "V": 0.0, - "T": 549.0 + "T": 215.0, + "V": 2307.89 }, { - "V": 0.0, - "T": 553.0 + "T": 220.0, + "V": 2308.19 }, { - "V": 0.0535, - "T": 557.0 + "T": 225.0, + "V": 2308.48 }, { - "V": 13.5513, - "T": 561.0 + "T": 230.0, + "V": 2308.62 }, { - "V": 0.0, - "T": 565.0 + "T": 235.0, + "V": 2308.88 }, { - "V": 0.0, - "T": 569.0 + "T": 240.0, + "V": 2313.57 }, { - "V": 0.0, - "T": 573.0 + "T": 245.0, + "V": 2313.6 }, { - "V": 0.0, - "T": 577.0 + "T": 250.0, + "V": 2313.59 }, { - "V": 0.0, - "T": 581.0 + "T": 255.0, + "V": 2313.54 }, { - "V": 0.0, - "T": 585.0 + "T": 260.0, + "V": 2313.56 }, { - "V": 4.7651, - "T": 589.0 + "T": 265.0, + "V": 2313.68 }, { - "V": 0.0, - "T": 593.0 - } - ], - "PauseTimeMs": [ - { - "V": 0.0, - "T": 1.0 + "T": 270.0, + "V": 2313.68 }, { - "V": 14.935, - "T": 5.0 + "T": 275.0, + "V": 2313.68 }, { - "V": 0.0, - "T": 9.0 + "T": 280.0, + "V": 2313.69 }, { - "V": 0.0, - "T": 13.0 + "T": 285.0, + "V": 2313.73 }, { - "V": 0.0, - "T": 17.0 + "T": 290.0, + "V": 2313.74 }, { - "V": 0.0, - "T": 21.0 + "T": 295.0, + "V": 2313.7 }, { - "V": 0.0, - "T": 25.0 + "T": 300.0, + "V": 2313.72 }, { - "V": 0.975, - "T": 29.0 + "T": 305.0, + "V": 2313.71 }, { - "V": 42.897, - "T": 33.0 + "T": 310.0, + "V": 2313.75 }, { - "V": 0.0, - "T": 37.0 + "T": 315.0, + "V": 2313.77 }, { - "V": 0.0, - "T": 41.0 + "T": 320.0, + "V": 2315.58 }, { - "V": 0.0, - "T": 45.0 + "T": 325.0, + "V": 2315.66 }, { - "V": 0.0, - "T": 49.0 + "T": 330.0, + "V": 2315.65 }, { - "V": 0.0, - "T": 53.0 + "T": 335.0, + "V": 2315.6 }, { - "V": 0.0, - "T": 57.0 + "T": 340.0, + "V": 2315.98 }, { - "V": 0.0, - "T": 61.0 + "T": 345.0, + "V": 2316.04 }, { - "V": 0.0, - "T": 65.0 + "T": 350.0, + "V": 2316.05 }, { - "V": 51.192, - "T": 69.0 + "T": 355.0, + "V": 2316.16 }, { - "V": 0.0, - "T": 73.0 + "T": 360.0, + "V": 2316.16 }, { - "V": 0.0, - "T": 77.0 + "T": 365.0, + "V": 2316.16 }, { - "V": 0.0, - "T": 81.0 + "T": 370.0, + "V": 2316.12 }, { - "V": 0.0, - "T": 85.0 + "T": 375.0, + "V": 2316.1 }, { - "V": 0.0, - "T": 89.0 + "T": 380.0, + "V": 2316.1 }, { - "V": 0.0, - "T": 93.0 + "T": 385.0, + "V": 2316.14 }, { - "V": 40.898, - "T": 97.0 + "T": 390.0, + "V": 2316.11 }, { - "V": 0.0, - "T": 101.0 + "T": 395.0, + "V": 2316.15 }, { - "V": 0.0, - "T": 105.0 + "T": 400.0, + "V": 2316.13 }, { - "V": 0.0, - "T": 109.0 + "T": 405.0, + "V": 2316.2 }, { - "V": 0.0, - "T": 113.0 + "T": 410.0, + "V": 2316.16 }, { - "V": 0.0, - "T": 117.0 + "T": 415.0, + "V": 2316.17 }, { - "V": 0.0, - "T": 121.0 + "T": 420.0, + "V": 2316.21 }, { - "V": 40.452, - "T": 125.0 + "T": 425.0, + "V": 2316.18 }, { - "V": 0.0, - "T": 129.0 + "T": 430.0, + "V": 2316.21 }, { - "V": 0.0, - "T": 133.0 + "T": 435.0, + "V": 2316.22 }, { - "V": 1.255, - "T": 137.0 + "T": 440.0, + "V": 2316.19 }, { - "V": 0.0, - "T": 141.0 + "T": 445.0, + "V": 2316.16 }, { - "V": 0.0, - "T": 145.0 + "T": 450.0, + "V": 2316.21 }, { - "V": 0.0, - "T": 149.0 + "T": 455.0, + "V": 2316.21 }, { - "V": 44.476, - "T": 153.0 + "T": 460.0, + "V": 2316.26 }, { - "V": 0.0, - "T": 157.0 + "T": 465.0, + "V": 2316.21 }, { - "V": 0.0, - "T": 161.0 + "T": 470.0, + "V": 2316.22 }, { - "V": 0.0, - "T": 165.0 + "T": 475.0, + "V": 2316.23 }, { - "V": 0.0, - "T": 169.0 + "T": 480.0, + "V": 2316.23 }, { - "V": 0.0, - "T": 173.0 + "T": 485.0, + "V": 2316.27 }, { - "V": 0.0, - "T": 177.0 + "T": 490.0, + "V": 2316.24 }, { - "V": 42.564, - "T": 181.0 + "T": 495.0, + "V": 2316.28 }, { - "V": 0.0, - "T": 185.0 + "T": 500.0, + "V": 2316.29 }, { - "V": 0.0, - "T": 189.0 + "T": 505.0, + "V": 2316.29 }, { - "V": 0.0, - "T": 193.0 + "T": 510.0, + "V": 2316.28 }, { - "V": 0.0, - "T": 197.0 + "T": 515.0, + "V": 2316.29 }, { - "V": 0.0, - "T": 201.0 + "T": 520.0, + "V": 2316.33 }, { - "V": 0.0, - "T": 205.0 + "T": 525.0, + "V": 2316.29 }, { - "V": 282.788, - "T": 209.0 + "T": 530.0, + "V": 2310.06 }, { - "V": 0.0, - "T": 213.0 + "T": 535.0, + "V": 2310.06 }, { - "V": 0.0, - "T": 217.0 + "T": 540.0, + "V": 2310.07 }, { - "V": 0.0, - "T": 221.0 + "T": 545.0, + "V": 2310.2 }, { - "V": 0.0, - "T": 225.0 + "T": 550.0, + "V": 2310.18 }, { - "V": 0.0, - "T": 229.0 + "T": 555.0, + "V": 2310.18 }, { - "V": 0.0, - "T": 233.0 + "T": 560.0, + "V": 2310.35 }, { - "V": 426.127, - "T": 237.0 + "T": 565.0, + "V": 2310.36 }, { - "V": 0.0, - "T": 241.0 + "T": 570.0, + "V": 2310.37 }, { - "V": 0.0, - "T": 245.0 + "T": 575.0, + "V": 2310.37 }, { - "V": 0.0, - "T": 249.0 + "T": 580.0, + "V": 2310.37 }, { - "V": 0.0, - "T": 253.0 + "T": 585.0, + "V": 2310.45 }, { - "V": 0.0, - "T": 257.0 + "T": 590.0, + "V": 2310.45 }, { - "V": 0.0, - "T": 261.0 + "T": 595.0, + "V": 2310.44 }, { - "V": 214.764, - "T": 265.0 + "T": 600.0, + "V": 2310.43 + } + ], + "AllocRateMB": [ + { + "T": 1.0, + "V": 0.03 }, { - "V": 0.0, - "T": 269.0 + "T": 6.0, + "V": 0.15 }, { - "V": 0.0, - "T": 273.0 + "T": 11.0, + "V": 0.18 }, { - "V": 2.011, - "T": 277.0 + "T": 16.0, + "V": 0.16 }, { - "V": 0.0, - "T": 281.0 + "T": 21.0, + "V": 0.02 }, { - "V": 0.0, - "T": 285.0 + "T": 26.0, + "V": 0.03 }, { - "V": 0.0, - "T": 289.0 + "T": 31.0, + "V": 0.14 }, { - "V": 0.0, - "T": 293.0 + "T": 36.0, + "V": 0.03 }, { - "V": 0.0, - "T": 297.0 + "T": 41.0, + "V": 0.03 }, { - "V": 42.778, - "T": 301.0 + "T": 46.0, + "V": 0.03 }, { - "V": 0.0, - "T": 305.0 + "T": 51.0, + "V": 0.02 }, { - "V": 0.0, - "T": 309.0 + "T": 56.0, + "V": 0.03 }, { - "V": 0.0, - "T": 313.0 + "T": 61.0, + "V": 0.03 }, { - "V": 0.0, - "T": 317.0 + "T": 66.0, + "V": 0.03 }, { - "V": 0.0, - "T": 321.0 + "T": 71.0, + "V": 0.04 }, { - "V": 0.0, - "T": 325.0 + "T": 76.0, + "V": 0.15 }, { - "V": 46.135, - "T": 329.0 + "T": 81.0, + "V": 0.02 }, { - "V": 0.0, - "T": 333.0 + "T": 86.0, + "V": 0.04 }, { - "V": 0.0, - "T": 337.0 + "T": 91.0, + "V": 0.03 }, { - "V": 0.0, - "T": 341.0 + "T": 96.0, + "V": 0.02 }, { - "V": 0.0, - "T": 345.0 + "T": 101.0, + "V": 0.02 }, { - "V": 0.0, - "T": 349.0 + "T": 106.0, + "V": 0.02 }, { - "V": 0.0, - "T": 353.0 + "T": 111.0, + "V": 0.24 }, { - "V": 41.902, - "T": 357.0 + "T": 116.0, + "V": 0.03 }, { - "V": 0.0, - "T": 361.0 + "T": 121.0, + "V": 0.04 }, { - "V": 0.0, - "T": 365.0 + "T": 126.0, + "V": 0.15 }, { - "V": 0.0, - "T": 369.0 + "T": 131.0, + "V": 0.14 }, { - "V": 0.0, - "T": 373.0 + "T": 136.0, + "V": 0.02 }, { - "V": 0.0, - "T": 377.0 + "T": 141.0, + "V": 0.02 }, { - "V": 0.0, - "T": 381.0 + "T": 146.0, + "V": 0.02 }, { - "V": 43.972, - "T": 385.0 + "T": 151.0, + "V": 0.03 }, { - "V": 0.0, - "T": 389.0 + "T": 156.0, + "V": 0.03 }, { - "V": 0.0, - "T": 393.0 + "T": 161.0, + "V": 0.04 }, { - "V": 0.0, - "T": 397.0 + "T": 166.0, + "V": 0.03 }, { - "V": 0.0, - "T": 401.0 + "T": 171.0, + "V": 0.15 }, { - "V": 0.0, - "T": 405.0 + "T": 176.0, + "V": 0.17 }, { - "V": 0.0, - "T": 409.0 + "T": 181.0, + "V": 0.15 }, { - "V": 42.427, - "T": 413.0 + "T": 186.0, + "V": 0.05 }, { - "V": 0.0, - "T": 417.0 + "T": 191.0, + "V": 0.04 }, { - "V": 0.0, - "T": 421.0 + "T": 196.0, + "V": 0.02 }, { - "V": 0.0, - "T": 425.0 + "T": 201.0, + "V": 0.03 }, { - "V": 0.0, - "T": 429.0 + "T": 206.0, + "V": 0.03 }, { - "V": 0.0, - "T": 433.0 + "T": 211.0, + "V": 0.03 }, { - "V": 0.0, - "T": 437.0 + "T": 216.0, + "V": 0.03 }, { - "V": 452.463, - "T": 441.0 + "T": 221.0, + "V": 0.03 }, { - "V": 0.0, - "T": 445.0 + "T": 226.0, + "V": 0.02 }, { - "V": 0.0, - "T": 449.0 + "T": 231.0, + "V": 0.15 }, { - "V": 0.0, - "T": 453.0 + "T": 236.0, + "V": 0.15 }, { - "V": 0.0, - "T": 457.0 + "T": 241.0, + "V": 0.04 }, { - "V": 0.0, - "T": 461.0 + "T": 246.0, + "V": 0.02 }, { - "V": 0.0, - "T": 465.0 + "T": 251.0, + "V": 0.03 }, { - "V": 492.772, - "T": 469.0 + "T": 256.0, + "V": 0.03 }, { - "V": 0.0, - "T": 473.0 + "T": 261.0, + "V": 0.02 }, { - "V": 0.0, - "T": 477.0 + "T": 266.0, + "V": 0.16 }, { - "V": 0.0, - "T": 481.0 + "T": 271.0, + "V": 0.15 }, { - "V": 0.0, - "T": 485.0 + "T": 276.0, + "V": 0.15 }, { - "V": 0.0, - "T": 489.0 + "T": 281.0, + "V": 0.03 }, { - "V": 0.0, - "T": 493.0 + "T": 286.0, + "V": 0.02 }, { - "V": 213.964, - "T": 497.0 + "T": 291.0, + "V": 0.04 }, { - "V": 0.0, - "T": 501.0 + "T": 296.0, + "V": 0.03 }, { - "V": 0.0, - "T": 505.0 + "T": 301.0, + "V": 0.03 }, { - "V": 0.0, - "T": 509.0 + "T": 306.0, + "V": 0.03 }, { - "V": 0.0, - "T": 513.0 + "T": 311.0, + "V": 0.03 }, { - "V": 0.0, - "T": 517.0 + "T": 316.0, + "V": 0.03 }, { - "V": 0.0, - "T": 521.0 + "T": 321.0, + "V": 0.03 }, { - "V": 0.0, - "T": 525.0 + "T": 326.0, + "V": 0.03 }, { - "V": 0.0, - "T": 529.0 + "T": 331.0, + "V": 0.03 }, { - "V": 43.167, - "T": 533.0 + "T": 336.0, + "V": 0.15 }, { - "V": 0.0, - "T": 537.0 + "T": 341.0, + "V": 0.02 }, { - "V": 0.0, - "T": 541.0 + "T": 346.0, + "V": 0.03 }, { - "V": 0.0, - "T": 545.0 + "T": 351.0, + "V": 0.04 }, { - "V": 0.0, - "T": 549.0 + "T": 356.0, + "V": 0.03 }, { - "V": 0.0, - "T": 553.0 + "T": 361.0, + "V": 0.04 }, { - "V": 0.535, - "T": 557.0 + "T": 366.0, + "V": 0.02 }, { - "V": 135.513, - "T": 561.0 + "T": 371.0, + "V": 0.04 }, { - "V": 0.0, - "T": 565.0 + "T": 376.0, + "V": 0.03 }, { - "V": 0.0, - "T": 569.0 + "T": 381.0, + "V": 0.03 }, { - "V": 0.0, - "T": 573.0 + "T": 386.0, + "V": 0.02 }, { - "V": 0.0, - "T": 577.0 + "T": 391.0, + "V": 0.04 }, { - "V": 0.0, - "T": 581.0 + "T": 396.0, + "V": 0.03 }, { - "V": 0.0, - "T": 585.0 + "T": 401.0, + "V": 0.16 }, { - "V": 47.651, - "T": 589.0 + "T": 406.0, + "V": 0.02 }, { - "V": 0.0, - "T": 593.0 - } - ], - "WorkingSetMB": [ - { - "V": 92.05, - "T": 0.0 + "T": 411.0, + "V": 0.04 }, { - "V": 133.74, - "T": 4.0 + "T": 416.0, + "V": 0.04 }, { - "V": 173.29, - "T": 8.0 + "T": 421.0, + "V": 0.04 }, { - "V": 248.32, - "T": 12.0 + "T": 426.0, + "V": 0.02 }, { - "V": 285.71, - "T": 16.0 + "T": 431.0, + "V": 0.03 }, { - "V": 330.64, - "T": 20.0 + "T": 436.0, + "V": 0.04 }, { - "V": 368.03, - "T": 24.0 + "T": 441.0, + "V": 0.05 }, { - "V": 405.09, - "T": 28.0 + "T": 446.0, + "V": 0.05 }, { - "V": 527.96, - "T": 32.0 + "T": 451.0, + "V": 0.03 }, { - "V": 565.26, - "T": 36.0 + "T": 456.0, + "V": 0.02 }, { - "V": 602.17, - "T": 40.0 + "T": 461.0, + "V": 0.03 }, { - "V": 639.69, - "T": 44.0 + "T": 466.0, + "V": 0.05 }, { - "V": 676.91, - "T": 48.0 + "T": 471.0, + "V": 0.03 }, { - "V": 714.06, - "T": 52.0 + "T": 476.0, + "V": 0.04 }, { - "V": 751.34, - "T": 56.0 + "T": 481.0, + "V": 0.04 }, { - "V": 788.55, - "T": 60.0 + "T": 486.0, + "V": 0.04 }, { - "V": 968.3, - "T": 64.0 + "T": 491.0, + "V": 0.04 }, { - "V": 1004.68, - "T": 68.0 + "T": 496.0, + "V": 0.03 }, { - "V": 1041.0, - "T": 72.0 + "T": 501.0, + "V": 0.03 }, { - "V": 1077.5, - "T": 76.0 + "T": 506.0, + "V": 0.04 }, { - "V": 1114.04, - "T": 80.0 + "T": 511.0, + "V": 0.03 }, { - "V": 1150.36, - "T": 84.0 + "T": 516.0, + "V": 0.02 }, { - "V": 1186.83, - "T": 88.0 + "T": 521.0, + "V": 0.02 }, { - "V": 1223.58, - "T": 92.0 + "T": 526.0, + "V": 0.02 }, { - "V": 1260.8, - "T": 96.0 + "T": 531.0, + "V": 0.16 }, { - "V": 1298.12, - "T": 100.0 + "T": 536.0, + "V": 0.15 }, { - "V": 1337.38, - "T": 104.0 + "T": 541.0, + "V": 0.02 }, { - "V": 1374.59, - "T": 108.0 + "T": 546.0, + "V": 0.02 }, { - "V": 1373.42, - "T": 112.0 + "T": 551.0, + "V": 0.02 }, { - "V": 1410.68, - "T": 116.0 + "T": 556.0, + "V": 0.02 }, { - "V": 1447.88, - "T": 120.0 + "T": 561.0, + "V": 0.04 }, { - "V": 1485.09, - "T": 124.0 + "T": 566.0, + "V": 0.03 }, { - "V": 1522.39, - "T": 128.0 + "T": 571.0, + "V": 0.02 }, { - "V": 1559.58, - "T": 132.0 + "T": 576.0, + "V": 0.15 }, { - "V": 1744.5, - "T": 136.0 + "T": 581.0, + "V": 0.02 }, { - "V": 1941.0, - "T": 140.0 + "T": 586.0, + "V": 0.04 }, { - "V": 1977.53, - "T": 144.0 + "T": 591.0, + "V": 0.04 }, { - "V": 2013.88, - "T": 148.0 + "T": 596.0, + "V": 0.02 }, { - "V": 2050.37, - "T": 152.0 + "T": 601.0, + "V": 0.03 + } + ], + "OpsPerSec": [ + { + "T": 6.0, + "V": 1.0 }, { - "V": 2086.9, - "T": 156.0 + "T": 11.0, + "V": 1.0 }, { - "V": 2123.44, - "T": 160.0 + "T": 16.0, + "V": 1.0 }, { - "V": 2159.79, - "T": 164.0 + "T": 23.0, + "V": 1.0 }, { - "V": 2196.33, - "T": 168.0 + "T": 31.0, + "V": 1.0 }, { - "V": 2232.8, - "T": 172.0 + "T": 40.0, + "V": 1.0 }, { - "V": 2269.19, - "T": 176.0 + "T": 47.0, + "V": 1.0 }, { - "V": 2305.71, - "T": 180.0 + "T": 53.0, + "V": 1.0 }, { - "V": 2342.1, - "T": 184.0 + "T": 57.0, + "V": 1.0 }, { - "V": 2378.69, - "T": 188.0 + "T": 64.0, + "V": 1.0 }, { - "V": 2415.07, - "T": 192.0 + "T": 69.0, + "V": 1.0 }, { - "V": 2451.43, - "T": 196.0 + "T": 76.0, + "V": 1.0 }, { - "V": 2488.03, - "T": 200.0 + "T": 83.0, + "V": 1.0 }, { - "V": 2529.39, - "T": 204.0 + "T": 90.0, + "V": 1.0 }, { - "V": 2565.89, - "T": 208.0 + "T": 97.0, + "V": 1.0 }, { - "V": 2602.34, - "T": 212.0 + "T": 104.0, + "V": 1.0 }, { - "V": 2638.77, - "T": 216.0 + "T": 111.0, + "V": 1.0 }, { - "V": 2675.21, - "T": 220.0 + "T": 118.0, + "V": 1.0 }, { - "V": 2711.61, - "T": 224.0 + "T": 126.0, + "V": 1.0 }, { - "V": 2748.14, - "T": 228.0 + "T": 131.0, + "V": 1.0 }, { - "V": 2784.53, - "T": 232.0 + "T": 138.0, + "V": 1.0 }, { - "V": 2821.02, - "T": 236.0 + "T": 144.0, + "V": 1.0 }, { - "V": 2936.66, - "T": 240.0 + "T": 150.0, + "V": 1.0 }, { - "V": 2936.66, - "T": 244.0 + "T": 155.0, + "V": 1.0 }, { - "V": 2936.66, - "T": 248.0 + "T": 160.0, + "V": 1.0 }, { - "V": 2940.66, - "T": 252.0 + "T": 165.0, + "V": 1.0 }, { - "V": 2940.66, - "T": 256.0 + "T": 171.0, + "V": 1.0 }, { - "V": 2971.82, - "T": 260.0 + "T": 176.0, + "V": 1.0 }, { - "V": 3008.38, - "T": 264.0 + "T": 181.0, + "V": 1.0 }, { - "V": 3044.88, - "T": 268.0 + "T": 187.0, + "V": 1.0 }, { - "V": 3080.93, - "T": 272.0 + "T": 193.0, + "V": 1.0 }, { - "V": 3117.86, - "T": 276.0 + "T": 198.0, + "V": 1.0 }, { - "V": 3750.81, - "T": 280.0 + "T": 203.0, + "V": 1.0 }, { - "V": 3787.23, - "T": 284.0 + "T": 209.0, + "V": 1.0 }, { - "V": 3823.74, - "T": 288.0 + "T": 214.0, + "V": 1.0 }, { - "V": 3860.25, - "T": 292.0 + "T": 220.0, + "V": 1.0 }, { - "V": 3896.85, - "T": 296.0 + "T": 225.0, + "V": 1.0 }, { - "V": 3933.42, - "T": 300.0 + "T": 231.0, + "V": 1.0 }, { - "V": 3969.82, - "T": 304.0 + "T": 236.0, + "V": 1.0 }, { - "V": 4006.31, - "T": 308.0 + "T": 242.0, + "V": 1.0 }, { - "V": 4042.73, - "T": 312.0 + "T": 248.0, + "V": 1.0 }, { - "V": 4079.2, - "T": 316.0 + "T": 255.0, + "V": 1.0 }, { - "V": 4115.7, - "T": 320.0 + "T": 260.0, + "V": 1.0 }, { - "V": 4152.07, - "T": 324.0 + "T": 266.0, + "V": 1.0 }, { - "V": 4188.51, - "T": 328.0 + "T": 271.0, + "V": 1.0 }, { - "V": 4225.02, - "T": 332.0 + "T": 276.0, + "V": 1.0 }, { - "V": 4261.37, - "T": 336.0 + "T": 282.0, + "V": 1.0 }, { - "V": 4297.92, - "T": 340.0 + "T": 287.0, + "V": 1.0 }, { - "V": 4334.29, - "T": 344.0 + "T": 292.0, + "V": 1.0 }, { - "V": 4370.77, - "T": 348.0 + "T": 298.0, + "V": 1.0 }, { - "V": 4407.26, - "T": 352.0 + "T": 303.0, + "V": 1.0 }, { - "V": 4443.64, - "T": 356.0 + "T": 309.0, + "V": 1.0 }, { - "V": 4480.24, - "T": 360.0 + "T": 314.0, + "V": 1.0 }, { - "V": 4516.72, - "T": 364.0 + "T": 319.0, + "V": 1.0 }, { - "V": 4553.04, - "T": 368.0 + "T": 324.0, + "V": 1.0 }, { - "V": 4589.54, - "T": 372.0 + "T": 330.0, + "V": 1.0 }, { - "V": 4626.02, - "T": 376.0 + "T": 336.0, + "V": 1.0 }, { - "V": 4662.42, - "T": 380.0 + "T": 342.0, + "V": 1.0 }, { - "V": 4698.81, - "T": 384.0 + "T": 348.0, + "V": 1.0 }, { - "V": 4735.31, - "T": 388.0 + "T": 353.0, + "V": 1.0 }, { - "V": 4771.95, - "T": 392.0 + "T": 358.0, + "V": 1.0 }, { - "V": 4808.38, - "T": 396.0 + "T": 363.0, + "V": 1.0 }, { - "V": 4844.64, - "T": 400.0 + "T": 369.0, + "V": 1.0 }, { - "V": 4881.3, - "T": 404.0 + "T": 374.0, + "V": 1.0 }, { - "V": 4917.67, - "T": 408.0 + "T": 379.0, + "V": 1.0 }, { - "V": 4954.14, - "T": 412.0 + "T": 385.0, + "V": 1.0 }, { - "V": 4990.5, - "T": 416.0 + "T": 390.0, + "V": 1.0 }, { - "V": 5027.17, - "T": 420.0 + "T": 395.0, + "V": 1.0 }, { - "V": 5063.45, - "T": 424.0 + "T": 401.0, + "V": 1.0 }, { - "V": 5099.91, - "T": 428.0 + "T": 405.0, + "V": 1.0 }, { - "V": 5136.5, - "T": 432.0 + "T": 413.0, + "V": 1.0 }, { - "V": 5184.87, - "T": 436.0 + "T": 418.0, + "V": 1.0 }, { - "V": 5221.38, - "T": 440.0 + "T": 423.0, + "V": 1.0 }, { - "V": 5257.88, - "T": 444.0 + "T": 429.0, + "V": 1.0 }, { - "V": 5294.32, - "T": 448.0 + "T": 434.0, + "V": 1.0 }, { - "V": 5330.65, - "T": 452.0 + "T": 439.0, + "V": 1.0 }, { - "V": 5367.12, - "T": 456.0 + "T": 444.0, + "V": 1.0 }, { - "V": 5403.55, - "T": 460.0 + "T": 449.0, + "V": 1.0 }, { - "V": 5440.02, - "T": 464.0 + "T": 453.0, + "V": 1.0 }, { - "V": 5476.53, - "T": 468.0 + "T": 459.0, + "V": 1.0 }, { - "V": 5596.29, - "T": 472.0 + "T": 464.0, + "V": 1.0 }, { - "V": 5596.29, - "T": 476.0 + "T": 469.0, + "V": 1.0 }, { - "V": 5596.29, - "T": 480.0 + "T": 474.0, + "V": 1.0 }, { - "V": 5600.29, - "T": 484.0 + "T": 478.0, + "V": 1.0 }, { - "V": 5600.29, - "T": 488.0 + "T": 483.0, + "V": 1.0 }, { - "V": 5623.83, - "T": 492.0 + "T": 489.0, + "V": 1.0 }, { - "V": 5660.37, - "T": 496.0 + "T": 494.0, + "V": 1.0 }, { - "V": 5696.76, - "T": 500.0 + "T": 499.0, + "V": 1.0 }, { - "V": 5733.24, - "T": 504.0 + "T": 503.0, + "V": 1.0 }, { - "V": 5769.75, - "T": 508.0 + "T": 508.0, + "V": 1.0 }, { - "V": 5806.16, - "T": 512.0 + "T": 513.0, + "V": 1.0 }, { - "V": 5842.57, - "T": 516.0 + "T": 519.0, + "V": 1.0 }, { - "V": 5879.12, - "T": 520.0 + "T": 525.0, + "V": 1.0 }, { - "V": 5915.49, - "T": 524.0 + "T": 531.0, + "V": 1.0 }, { - "V": 5952.04, - "T": 528.0 + "T": 536.0, + "V": 1.0 }, { - "V": 5988.5, - "T": 532.0 + "T": 544.0, + "V": 1.0 }, { - "V": 6025.05, - "T": 536.0 + "T": 552.0, + "V": 1.0 }, { - "V": 6061.33, - "T": 540.0 + "T": 560.0, + "V": 1.0 }, { - "V": 6097.86, - "T": 544.0 + "T": 568.0, + "V": 1.0 }, { - "V": 6134.38, - "T": 548.0 + "T": 576.0, + "V": 1.0 }, { - "V": 6170.82, - "T": 552.0 + "T": 583.0, + "V": 1.0 }, { - "V": 6207.17, - "T": 556.0 + "T": 588.0, + "V": 1.0 }, { - "V": 7451.39, - "T": 560.0 + "T": 592.0, + "V": 1.0 }, { - "V": 7432.6, - "T": 564.0 + "T": 597.0, + "V": 1.0 }, { - "V": 7469.1, - "T": 568.0 - }, + "T": 602.0, + "V": 1.0 + } + ], + "Gen0PerSec": [ { - "V": 7505.51, - "T": 572.0 + "T": 1.0, + "V": 0.0 }, { - "V": 7541.94, - "T": 576.0 + "T": 6.0, + "V": 0.0 }, { - "V": 7578.47, - "T": 580.0 + "T": 11.0, + "V": 0.0 }, { - "V": 7614.84, - "T": 584.0 + "T": 16.0, + "V": 0.0 }, { - "V": 7651.38, - "T": 588.0 + "T": 21.0, + "V": 0.0 }, { - "V": 7687.82, - "T": 592.0 - } - ], - "AllocRateMB": [ + "T": 26.0, + "V": 0.0 + }, { - "V": 9.1, - "T": 1.0 + "T": 31.0, + "V": 0.0 }, { - "V": 9.02, - "T": 5.0 + "T": 36.0, + "V": 0.0 }, { - "V": 9.04, - "T": 9.0 + "T": 41.0, + "V": 0.0 }, { - "V": 9.12, - "T": 13.0 + "T": 46.0, + "V": 0.0 }, { - "V": 9.06, - "T": 17.0 + "T": 51.0, + "V": 0.0 }, { - "V": 9.09, - "T": 21.0 + "T": 56.0, + "V": 0.0 }, { - "V": 9.0, - "T": 25.0 + "T": 61.0, + "V": 0.0 }, { - "V": 101.94, - "T": 29.0 + "T": 66.0, + "V": 0.0 }, { - "V": 9.05, - "T": 33.0 + "T": 71.0, + "V": 0.0 }, { - "V": 9.01, - "T": 37.0 + "T": 76.0, + "V": 0.0 }, { - "V": 9.27, - "T": 41.0 + "T": 81.0, + "V": 0.0 }, { - "V": 8.99, - "T": 45.0 + "T": 86.0, + "V": 0.0 }, { - "V": 9.1, - "T": 49.0 + "T": 91.0, + "V": 0.0 }, { - "V": 9.04, - "T": 53.0 + "T": 96.0, + "V": 0.0 }, { - "V": 9.09, - "T": 57.0 + "T": 101.0, + "V": 0.0 }, { - "V": 9.21, - "T": 61.0 + "T": 106.0, + "V": 0.0 }, { - "V": 9.0, - "T": 65.0 + "T": 111.0, + "V": 0.0 }, { - "V": 9.06, - "T": 69.0 + "T": 116.0, + "V": 0.0 }, { - "V": 9.25, - "T": 73.0 + "T": 121.0, + "V": 0.0 }, { - "V": 9.07, - "T": 77.0 + "T": 126.0, + "V": 0.0 }, { - "V": 9.02, - "T": 81.0 + "T": 131.0, + "V": 0.0 }, { - "V": 9.14, - "T": 85.0 + "T": 136.0, + "V": 0.0 }, { - "V": 9.04, - "T": 89.0 + "T": 141.0, + "V": 0.0 }, { - "V": 9.21, - "T": 93.0 + "T": 146.0, + "V": 0.0 }, { - "V": 9.14, - "T": 97.0 + "T": 151.0, + "V": 0.0 }, { - "V": 9.04, - "T": 101.0 + "T": 156.0, + "V": 0.0 }, { - "V": 9.19, - "T": 105.0 + "T": 161.0, + "V": 0.0 }, { - "V": 9.07, - "T": 109.0 + "T": 166.0, + "V": 0.0 }, { - "V": 9.04, - "T": 113.0 + "T": 171.0, + "V": 0.0 }, { - "V": 9.06, - "T": 117.0 + "T": 176.0, + "V": 0.0 }, { - "V": 9.18, - "T": 121.0 + "T": 181.0, + "V": 0.0 }, { - "V": 9.03, - "T": 125.0 + "T": 186.0, + "V": 0.0 }, { - "V": 9.07, - "T": 129.0 + "T": 191.0, + "V": 0.0 }, { - "V": 9.02, - "T": 133.0 + "T": 196.0, + "V": 0.0 }, { - "V": 64.2, - "T": 137.0 + "T": 201.0, + "V": 0.0 }, { - "V": 9.2, - "T": 141.0 + "T": 206.0, + "V": 0.0 }, { - "V": 9.03, - "T": 145.0 + "T": 211.0, + "V": 0.0 }, { - "V": 9.11, - "T": 149.0 + "T": 216.0, + "V": 0.0 }, { - "V": 9.07, - "T": 153.0 + "T": 221.0, + "V": 0.0 }, { - "V": 9.09, - "T": 157.0 + "T": 226.0, + "V": 0.0 }, { - "V": 9.04, - "T": 161.0 + "T": 231.0, + "V": 0.0 }, { - "V": 9.21, - "T": 165.0 + "T": 236.0, + "V": 0.0 }, { - "V": 9.06, - "T": 169.0 + "T": 241.0, + "V": 0.0 }, { - "V": 9.0, - "T": 173.0 + "T": 246.0, + "V": 0.0 }, { - "V": 9.11, - "T": 177.0 + "T": 251.0, + "V": 0.0 }, { - "V": 9.05, - "T": 181.0 + "T": 256.0, + "V": 0.0 }, { - "V": 9.07, - "T": 185.0 + "T": 261.0, + "V": 0.0 }, { - "V": 9.04, - "T": 189.0 + "T": 266.0, + "V": 0.0 }, { - "V": 9.12, - "T": 193.0 + "T": 271.0, + "V": 0.0 }, { - "V": 9.13, - "T": 197.0 + "T": 276.0, + "V": 0.0 }, { - "V": 9.05, - "T": 201.0 + "T": 281.0, + "V": 0.0 }, { - "V": 9.21, - "T": 205.0 + "T": 286.0, + "V": 0.0 }, { - "V": 9.06, - "T": 209.0 + "T": 291.0, + "V": 0.0 }, { - "V": 9.03, - "T": 213.0 + "T": 296.0, + "V": 0.0 }, { - "V": 9.04, - "T": 217.0 + "T": 301.0, + "V": 0.0 }, { - "V": 9.17, - "T": 221.0 + "T": 306.0, + "V": 0.0 }, { - "V": 9.24, - "T": 225.0 + "T": 311.0, + "V": 0.0 }, { - "V": 9.06, - "T": 229.0 + "T": 316.0, + "V": 0.0 }, { - "V": 9.0, - "T": 233.0 + "T": 321.0, + "V": 0.0 }, { - "V": 7.28, - "T": 237.0 + "T": 326.0, + "V": 0.0 }, { - "V": 9.15, - "T": 241.0 + "T": 331.0, + "V": 0.0 }, { - "V": 9.06, - "T": 245.0 + "T": 336.0, + "V": 0.0 }, { - "V": 9.09, - "T": 249.0 + "T": 341.0, + "V": 0.0 }, { - "V": 9.17, - "T": 253.0 + "T": 346.0, + "V": 0.0 }, { - "V": 8.99, - "T": 257.0 + "T": 351.0, + "V": 0.0 }, { - "V": 9.07, - "T": 261.0 + "T": 356.0, + "V": 0.0 }, { - "V": 8.44, - "T": 265.0 + "T": 361.0, + "V": 0.0 }, { - "V": 9.07, - "T": 269.0 + "T": 366.0, + "V": 0.0 }, { - "V": 9.36, - "T": 273.0 + "T": 371.0, + "V": 0.0 }, { - "V": 778.07, - "T": 277.0 + "T": 376.0, + "V": 0.0 }, { - "V": 9.07, - "T": 281.0 + "T": 381.0, + "V": 0.0 }, { - "V": 9.15, - "T": 285.0 + "T": 386.0, + "V": 0.0 }, { - "V": 9.04, - "T": 289.0 + "T": 391.0, + "V": 0.0 }, { - "V": 9.05, - "T": 293.0 + "T": 396.0, + "V": 0.0 }, { - "V": 9.01, - "T": 297.0 + "T": 401.0, + "V": 0.0 }, { - "V": 9.1, - "T": 301.0 + "T": 406.0, + "V": 0.0 }, { - "V": 9.07, - "T": 305.0 + "T": 411.0, + "V": 0.0 }, { - "V": 8.98, - "T": 309.0 + "T": 416.0, + "V": 0.0 }, { - "V": 9.09, - "T": 313.0 + "T": 421.0, + "V": 0.0 }, { - "V": 9.03, - "T": 317.0 + "T": 426.0, + "V": 0.0 }, { - "V": 9.05, - "T": 321.0 + "T": 431.0, + "V": 0.0 }, { - "V": 9.16, - "T": 325.0 + "T": 436.0, + "V": 0.0 }, { - "V": 9.06, - "T": 329.0 + "T": 441.0, + "V": 0.0 }, { - "V": 9.07, - "T": 333.0 + "T": 446.0, + "V": 0.0 }, { - "V": 9.07, - "T": 337.0 + "T": 451.0, + "V": 0.0 }, { - "V": 9.05, - "T": 341.0 + "T": 456.0, + "V": 0.0 }, { - "V": 9.21, - "T": 345.0 + "T": 461.0, + "V": 0.0 }, { - "V": 9.07, - "T": 349.0 + "T": 466.0, + "V": 0.0 }, { - "V": 9.08, - "T": 353.0 + "T": 471.0, + "V": 0.0 }, { - "V": 9.08, - "T": 357.0 + "T": 476.0, + "V": 0.0 }, { - "V": 8.96, - "T": 361.0 + "T": 481.0, + "V": 0.0 }, { - "V": 9.04, - "T": 365.0 + "T": 486.0, + "V": 0.0 }, { - "V": 9.04, - "T": 369.0 + "T": 491.0, + "V": 0.0 }, { - "V": 9.04, - "T": 373.0 + "T": 496.0, + "V": 0.0 }, { - "V": 9.07, - "T": 377.0 + "T": 501.0, + "V": 0.0 }, { - "V": 9.11, - "T": 381.0 + "T": 506.0, + "V": 0.0 }, { - "V": 9.21, - "T": 385.0 + "T": 511.0, + "V": 0.0 }, { - "V": 9.07, - "T": 389.0 + "T": 516.0, + "V": 0.0 }, { - "V": 9.02, - "T": 393.0 + "T": 521.0, + "V": 0.0 }, { - "V": 9.07, - "T": 397.0 + "T": 526.0, + "V": 1.0 }, { - "V": 9.18, - "T": 401.0 + "T": 531.0, + "V": 0.0 }, { - "V": 9.0, - "T": 405.0 + "T": 536.0, + "V": 0.0 }, { - "V": 9.11, - "T": 409.0 + "T": 541.0, + "V": 0.0 }, { - "V": 9.08, - "T": 413.0 + "T": 546.0, + "V": 0.0 }, { - "V": 9.13, - "T": 417.0 + "T": 551.0, + "V": 0.0 }, { - "V": 8.93, - "T": 421.0 + "T": 556.0, + "V": 0.0 }, { - "V": 9.09, - "T": 425.0 + "T": 561.0, + "V": 0.0 }, { - "V": 9.2, - "T": 429.0 + "T": 566.0, + "V": 0.0 }, { - "V": 9.16, - "T": 433.0 + "T": 571.0, + "V": 0.0 }, { - "V": 9.04, - "T": 437.0 + "T": 576.0, + "V": 0.0 }, { - "V": 5.86, - "T": 441.0 + "T": 581.0, + "V": 0.0 }, { - "V": 8.95, - "T": 445.0 + "T": 586.0, + "V": 0.0 }, { - "V": 9.07, - "T": 449.0 + "T": 591.0, + "V": 0.0 }, { - "V": 9.14, - "T": 453.0 + "T": 596.0, + "V": 0.0 }, { - "V": 9.08, - "T": 457.0 - }, + "T": 601.0, + "V": 0.0 + } + ] + } + }, + { + "ScenarioId": "dotllm-serve-1_5b", + "ScenarioName": "dotLLM: 1.5B model (~1GB, Q4_K_M), few-hundred-token context, zero-alloc-inference HTTP server", + "GcModeId": "server", + "GcModeName": "Server GC", + "DurationSeconds": 600, + "Summary": { + "OperationsTotal": 117.0, + "OpsPerSecondOverall": 0.195, + "TotalAllocatedBytes": 36622640.0, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 2456768512.0, + "PeakWorkingSetBytes": 2456768512.0, + "HeapSizeBytes": null, + "TotalCommittedBytes": 105574400.0, + "GcName": "Server GC" + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 604 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 604 + }, + "WorkingSetStats": { + "Avg": 2436090312.9917355, + "P50": 2438266880.0, + "P90": 2453254144.0, + "P99": 2456567808.0, + "Max": 2456768512.0, + "Min": 2408353792.0, + "Count": 605 + }, + "AllocRateMBStats": { + "Avg": 0.05782462113740428, + "P50": 0.03488922119140625, + "P90": 0.1597900390625, + "P99": 0.2243499755859375, + "Max": 0.2586212158203125, + "Min": 0.0134124755859375, + "Count": 604 + }, + "OpsPerSecStats": { + "Avg": 1.0, + "P50": 1.0, + "P90": 1.0, + "P99": 1.0, + "Max": 1.0, + "Min": 1.0, + "Count": 117 + }, + "TimeSeries": { + "PauseTimePct": [ { - "V": 9.12, - "T": 461.0 + "T": 1.0, + "V": 0.0 }, { - "V": 9.11, - "T": 465.0 + "T": 6.0, + "V": 0.0 }, { - "V": 6.94, - "T": 469.0 + "T": 11.0, + "V": 0.0 }, { - "V": 9.0, - "T": 473.0 + "T": 16.0, + "V": 0.0 }, { - "V": 9.06, - "T": 477.0 + "T": 21.0, + "V": 0.0 }, { - "V": 9.17, - "T": 481.0 + "T": 26.0, + "V": 0.0 }, { - "V": 9.13, - "T": 485.0 + "T": 31.0, + "V": 0.0 }, { - "V": 9.03, - "T": 489.0 + "T": 36.0, + "V": 0.0 }, { - "V": 9.01, - "T": 493.0 + "T": 41.0, + "V": 0.0 }, { - "V": 7.98, - "T": 497.0 + "T": 46.0, + "V": 0.0 }, { - "V": 9.07, - "T": 501.0 + "T": 51.0, + "V": 0.0 }, { - "V": 9.04, - "T": 505.0 + "T": 56.0, + "V": 0.0 }, { - "V": 9.05, - "T": 509.0 + "T": 61.0, + "V": 0.0 }, { - "V": 9.11, - "T": 513.0 + "T": 66.0, + "V": 0.0 }, { - "V": 9.04, - "T": 517.0 + "T": 71.0, + "V": 0.0 }, { - "V": 9.07, - "T": 521.0 + "T": 76.0, + "V": 0.0 }, { - "V": 9.13, - "T": 525.0 + "T": 81.0, + "V": 0.0 }, { - "V": 9.01, - "T": 529.0 + "T": 86.0, + "V": 0.0 }, { - "V": 9.07, - "T": 533.0 + "T": 91.0, + "V": 0.0 }, { - "V": 9.0, - "T": 537.0 + "T": 96.0, + "V": 0.0 }, { - "V": 9.16, - "T": 541.0 + "T": 101.0, + "V": 0.0 }, { - "V": 9.07, - "T": 545.0 + "T": 106.0, + "V": 0.0 }, { - "V": 9.06, - "T": 549.0 + "T": 111.0, + "V": 0.0 }, { - "V": 9.07, - "T": 553.0 + "T": 116.0, + "V": 0.0 }, { - "V": 1547.08, - "T": 557.0 + "T": 121.0, + "V": 0.0 }, { - "V": 8.97, - "T": 561.0 + "T": 126.0, + "V": 0.0 }, { - "V": 9.0, - "T": 565.0 + "T": 131.0, + "V": 0.0 }, { - "V": 9.06, - "T": 569.0 + "T": 136.0, + "V": 0.0 }, { - "V": 9.09, - "T": 573.0 + "T": 141.0, + "V": 0.0 }, { - "V": 9.15, - "T": 577.0 + "T": 146.0, + "V": 0.0 }, { - "V": 9.05, - "T": 581.0 + "T": 151.0, + "V": 0.0 }, { - "V": 9.23, - "T": 585.0 + "T": 156.0, + "V": 0.0 }, { - "V": 9.02, - "T": 589.0 + "T": 161.0, + "V": 0.0 }, { - "V": 9.0, - "T": 593.0 - } - ], - "OpsPerSec": [ - { - "V": 65.0, - "T": 0.0 + "T": 166.0, + "V": 0.0 }, { - "V": 63.0, - "T": 4.0 + "T": 171.0, + "V": 0.0 }, { - "V": 63.0, - "T": 8.0 + "T": 176.0, + "V": 0.0 }, { - "V": 61.0, - "T": 12.0 + "T": 181.0, + "V": 0.0 }, { - "V": 63.0, - "T": 16.0 + "T": 186.0, + "V": 0.0 }, { - "V": 63.0, - "T": 20.0 + "T": 191.0, + "V": 0.0 }, { - "V": 63.0, - "T": 24.0 + "T": 196.0, + "V": 0.0 }, { - "V": 63.0, - "T": 28.0 + "T": 201.0, + "V": 0.0 }, { - "V": 63.0, - "T": 32.0 + "T": 206.0, + "V": 0.0 }, { - "V": 64.0, - "T": 36.0 + "T": 211.0, + "V": 0.0 }, { - "V": 61.0, - "T": 40.0 + "T": 216.0, + "V": 0.0 }, { - "V": 63.0, - "T": 44.0 + "T": 221.0, + "V": 0.0 }, { - "V": 62.0, - "T": 48.0 + "T": 226.0, + "V": 0.0 }, { - "V": 63.0, - "T": 52.0 + "T": 231.0, + "V": 0.0 }, { - "V": 64.0, - "T": 56.0 + "T": 236.0, + "V": 0.0 }, { - "V": 63.0, - "T": 60.0 + "T": 241.0, + "V": 0.0 }, { - "V": 62.0, - "T": 64.0 + "T": 246.0, + "V": 0.0 }, { - "V": 63.0, - "T": 68.0 + "T": 251.0, + "V": 0.0 }, { - "V": 63.0, - "T": 72.0 + "T": 256.0, + "V": 0.0 }, { - "V": 46.0, - "T": 76.0 + "T": 261.0, + "V": 0.0 }, { - "V": 64.0, - "T": 80.0 + "T": 266.0, + "V": 0.0 }, { - "V": 63.0, - "T": 84.0 + "T": 271.0, + "V": 0.0 }, { - "V": 64.0, - "T": 88.0 + "T": 276.0, + "V": 0.0 }, { - "V": 63.0, - "T": 92.0 + "T": 281.0, + "V": 0.0 }, { - "V": 63.0, - "T": 96.0 + "T": 286.0, + "V": 0.0 }, { - "V": 63.0, - "T": 100.0 + "T": 291.0, + "V": 0.0 }, { - "V": 62.0, - "T": 104.0 + "T": 296.0, + "V": 0.0 }, { - "V": 63.0, - "T": 108.0 + "T": 301.0, + "V": 0.0 }, { - "V": 64.0, - "T": 112.0 + "T": 306.0, + "V": 0.0 }, { - "V": 63.0, - "T": 116.0 + "T": 311.0, + "V": 0.0 }, { - "V": 64.0, - "T": 120.0 + "T": 316.0, + "V": 0.0 }, { - "V": 63.0, - "T": 124.0 + "T": 321.0, + "V": 0.0 }, { - "V": 63.0, - "T": 128.0 + "T": 326.0, + "V": 0.0 }, { - "V": 61.0, - "T": 132.0 + "T": 331.0, + "V": 0.0 }, { - "V": 60.0, - "T": 136.0 + "T": 336.0, + "V": 0.0 }, { - "V": 62.0, - "T": 140.0 + "T": 341.0, + "V": 0.0 }, { - "V": 64.0, - "T": 144.0 + "T": 346.0, + "V": 0.0 }, { - "V": 62.0, - "T": 148.0 + "T": 351.0, + "V": 0.0 }, { - "V": 63.0, - "T": 152.0 + "T": 356.0, + "V": 0.0 }, { - "V": 64.0, - "T": 156.0 + "T": 361.0, + "V": 0.0 }, { - "V": 62.0, - "T": 160.0 + "T": 366.0, + "V": 0.0 }, { - "V": 63.0, - "T": 164.0 + "T": 371.0, + "V": 0.0 }, { - "V": 63.0, - "T": 168.0 + "T": 376.0, + "V": 0.0 }, { - "V": 63.0, - "T": 172.0 + "T": 381.0, + "V": 0.0 }, { - "V": 62.0, - "T": 176.0 + "T": 386.0, + "V": 0.0 }, { - "V": 63.0, - "T": 180.0 + "T": 391.0, + "V": 0.0 }, { - "V": 63.0, - "T": 184.0 + "T": 396.0, + "V": 0.0 }, { - "V": 61.0, - "T": 188.0 + "T": 401.0, + "V": 0.0 }, { - "V": 63.0, - "T": 192.0 + "T": 406.0, + "V": 0.0 }, { - "V": 63.0, - "T": 196.0 + "T": 411.0, + "V": 0.0 }, { - "V": 63.0, - "T": 200.0 + "T": 416.0, + "V": 0.0 }, { - "V": 64.0, - "T": 204.0 + "T": 421.0, + "V": 0.0 }, { - "V": 63.0, - "T": 208.0 + "T": 426.0, + "V": 0.0 }, { - "V": 65.0, - "T": 212.0 + "T": 431.0, + "V": 0.0 }, { - "V": 61.0, - "T": 216.0 + "T": 436.0, + "V": 0.0 }, { - "V": 63.0, - "T": 220.0 + "T": 441.0, + "V": 0.0 }, { - "V": 63.0, - "T": 224.0 + "T": 446.0, + "V": 0.0 }, { - "V": 63.0, - "T": 228.0 + "T": 451.0, + "V": 0.0 }, { - "V": 63.0, - "T": 232.0 + "T": 456.0, + "V": 0.0 }, { - "V": 63.0, - "T": 236.0 + "T": 461.0, + "V": 0.0 }, { - "V": 63.0, - "T": 240.0 + "T": 466.0, + "V": 0.0 }, { - "V": 61.0, - "T": 244.0 + "T": 471.0, + "V": 0.0 }, { - "V": 63.0, - "T": 248.0 + "T": 476.0, + "V": 0.0 }, { - "V": 63.0, - "T": 252.0 + "T": 481.0, + "V": 0.0 }, { - "V": 63.0, - "T": 256.0 + "T": 486.0, + "V": 0.0 }, { - "V": 63.0, - "T": 260.0 + "T": 491.0, + "V": 0.0 }, { - "V": 63.0, - "T": 264.0 + "T": 496.0, + "V": 0.0 }, { - "V": 64.0, - "T": 268.0 + "T": 501.0, + "V": 0.0 }, { - "V": 60.0, - "T": 272.0 + "T": 506.0, + "V": 0.0 }, { - "V": 63.0, - "T": 276.0 + "T": 511.0, + "V": 0.0 }, { - "V": 59.0, - "T": 280.0 + "T": 516.0, + "V": 0.0 }, { - "V": 64.0, - "T": 284.0 + "T": 521.0, + "V": 0.0 }, { - "V": 63.0, - "T": 288.0 + "T": 526.0, + "V": 0.0 }, { - "V": 64.0, - "T": 292.0 + "T": 531.0, + "V": 0.0 }, { - "V": 62.0, - "T": 296.0 + "T": 536.0, + "V": 0.0 }, { - "V": 63.0, - "T": 300.0 + "T": 541.0, + "V": 0.0 }, { - "V": 63.0, - "T": 304.0 + "T": 546.0, + "V": 0.0 }, { - "V": 62.0, - "T": 308.0 + "T": 551.0, + "V": 0.0 }, { - "V": 63.0, - "T": 312.0 + "T": 556.0, + "V": 0.0 }, { - "V": 64.0, - "T": 316.0 + "T": 561.0, + "V": 0.0 }, { - "V": 63.0, - "T": 320.0 + "T": 566.0, + "V": 0.0 }, { - "V": 63.0, - "T": 324.0 + "T": 571.0, + "V": 0.0 }, { - "V": 63.0, - "T": 328.0 + "T": 576.0, + "V": 0.0 }, { - "V": 62.0, - "T": 332.0 + "T": 581.0, + "V": 0.0 }, { - "V": 61.0, - "T": 336.0 + "T": 586.0, + "V": 0.0 }, { - "V": 63.0, - "T": 340.0 + "T": 591.0, + "V": 0.0 }, { - "V": 63.0, - "T": 344.0 + "T": 596.0, + "V": 0.0 }, { - "V": 63.0, - "T": 348.0 - }, + "T": 601.0, + "V": 0.0 + } + ], + "PauseTimeMs": [ { - "V": 63.0, - "T": 352.0 + "T": 1.0, + "V": 0.0 }, { - "V": 63.0, - "T": 356.0 + "T": 6.0, + "V": 0.0 }, { - "V": 63.0, - "T": 360.0 + "T": 11.0, + "V": 0.0 }, { - "V": 63.0, - "T": 364.0 + "T": 16.0, + "V": 0.0 }, { - "V": 64.0, - "T": 368.0 + "T": 21.0, + "V": 0.0 }, { - "V": 63.0, - "T": 372.0 + "T": 26.0, + "V": 0.0 }, { - "V": 64.0, - "T": 376.0 + "T": 31.0, + "V": 0.0 }, { - "V": 62.0, - "T": 380.0 + "T": 36.0, + "V": 0.0 }, { - "V": 62.0, - "T": 384.0 + "T": 41.0, + "V": 0.0 }, { - "V": 64.0, - "T": 388.0 + "T": 46.0, + "V": 0.0 }, { - "V": 61.0, - "T": 392.0 + "T": 51.0, + "V": 0.0 }, { - "V": 64.0, - "T": 396.0 + "T": 56.0, + "V": 0.0 }, { - "V": 63.0, - "T": 400.0 + "T": 61.0, + "V": 0.0 }, { - "V": 63.0, - "T": 404.0 + "T": 66.0, + "V": 0.0 }, { - "V": 62.0, - "T": 408.0 + "T": 71.0, + "V": 0.0 }, { - "V": 64.0, - "T": 412.0 + "T": 76.0, + "V": 0.0 }, { - "V": 68.0, - "T": 416.0 + "T": 81.0, + "V": 0.0 }, { - "V": 67.0, - "T": 420.0 + "T": 86.0, + "V": 0.0 }, { - "V": 69.0, - "T": 424.0 + "T": 91.0, + "V": 0.0 }, { - "V": 66.0, - "T": 428.0 + "T": 96.0, + "V": 0.0 }, { - "V": 65.0, - "T": 432.0 + "T": 101.0, + "V": 0.0 }, { - "V": 65.0, - "T": 436.0 + "T": 106.0, + "V": 0.0 }, { - "V": 64.0, - "T": 440.0 + "T": 111.0, + "V": 0.0 }, { - "V": 68.0, - "T": 444.0 + "T": 116.0, + "V": 0.0 }, { - "V": 63.0, - "T": 448.0 + "T": 121.0, + "V": 0.0 }, { - "V": 65.0, - "T": 452.0 + "T": 126.0, + "V": 0.0 }, { - "V": 71.0, - "T": 456.0 + "T": 131.0, + "V": 0.0 }, { - "V": 67.0, - "T": 460.0 + "T": 136.0, + "V": 0.0 }, { - "V": 65.0, - "T": 464.0 + "T": 141.0, + "V": 0.0 }, { - "V": 65.0, - "T": 468.0 + "T": 146.0, + "V": 0.0 }, { - "V": 64.0, - "T": 472.0 + "T": 151.0, + "V": 0.0 }, { - "V": 70.0, - "T": 476.0 + "T": 156.0, + "V": 0.0 }, { - "V": 64.0, - "T": 480.0 + "T": 161.0, + "V": 0.0 }, { - "V": 64.0, - "T": 484.0 + "T": 166.0, + "V": 0.0 }, { - "V": 65.0, - "T": 488.0 + "T": 171.0, + "V": 0.0 }, { - "V": 64.0, - "T": 492.0 + "T": 176.0, + "V": 0.0 }, { - "V": 64.0, - "T": 496.0 + "T": 181.0, + "V": 0.0 }, { - "V": 64.0, - "T": 500.0 + "T": 186.0, + "V": 0.0 }, { - "V": 61.0, - "T": 504.0 + "T": 191.0, + "V": 0.0 }, { - "V": 65.0, - "T": 508.0 + "T": 196.0, + "V": 0.0 }, { - "V": 65.0, - "T": 512.0 + "T": 201.0, + "V": 0.0 }, { - "V": 63.0, - "T": 516.0 + "T": 206.0, + "V": 0.0 }, { - "V": 64.0, - "T": 520.0 + "T": 211.0, + "V": 0.0 }, { - "V": 63.0, - "T": 524.0 + "T": 216.0, + "V": 0.0 }, { - "V": 63.0, - "T": 528.0 + "T": 221.0, + "V": 0.0 }, { - "V": 63.0, - "T": 532.0 + "T": 226.0, + "V": 0.0 }, { - "V": 64.0, - "T": 536.0 + "T": 231.0, + "V": 0.0 }, { - "V": 61.0, - "T": 540.0 + "T": 236.0, + "V": 0.0 }, { - "V": 63.0, - "T": 544.0 + "T": 241.0, + "V": 0.0 }, { - "V": 63.0, - "T": 548.0 + "T": 246.0, + "V": 0.0 }, { - "V": 64.0, - "T": 552.0 + "T": 251.0, + "V": 0.0 }, { - "V": 62.0, - "T": 556.0 + "T": 256.0, + "V": 0.0 }, { - "V": 65.0, - "T": 560.0 + "T": 261.0, + "V": 0.0 }, { - "V": 63.0, - "T": 564.0 + "T": 266.0, + "V": 0.0 }, { - "V": 61.0, - "T": 568.0 + "T": 271.0, + "V": 0.0 }, { - "V": 63.0, - "T": 572.0 + "T": 276.0, + "V": 0.0 }, { - "V": 65.0, - "T": 576.0 + "T": 281.0, + "V": 0.0 }, { - "V": 67.0, - "T": 580.0 + "T": 286.0, + "V": 0.0 }, { - "V": 66.0, - "T": 584.0 + "T": 291.0, + "V": 0.0 }, { - "V": 69.0, - "T": 588.0 + "T": 296.0, + "V": 0.0 }, { - "V": 65.0, - "T": 592.0 - } - ], - "Gen0PerSec": [ + "T": 301.0, + "V": 0.0 + }, { - "V": 0.0, - "T": 1.0 + "T": 306.0, + "V": 0.0 }, { - "V": 1.0, - "T": 5.0 + "T": 311.0, + "V": 0.0 }, { - "V": 0.0, - "T": 9.0 + "T": 316.0, + "V": 0.0 }, { - "V": 0.0, - "T": 13.0 + "T": 321.0, + "V": 0.0 }, { - "V": 0.0, - "T": 17.0 + "T": 326.0, + "V": 0.0 }, { - "V": 0.0, - "T": 21.0 + "T": 331.0, + "V": 0.0 }, { - "V": 0.0, - "T": 25.0 + "T": 336.0, + "V": 0.0 }, { - "V": 0.0, - "T": 29.0 + "T": 341.0, + "V": 0.0 }, { - "V": 1.0, - "T": 33.0 + "T": 346.0, + "V": 0.0 }, { - "V": 0.0, - "T": 37.0 + "T": 351.0, + "V": 0.0 }, { - "V": 0.0, - "T": 41.0 + "T": 356.0, + "V": 0.0 }, { - "V": 0.0, - "T": 45.0 + "T": 361.0, + "V": 0.0 }, { - "V": 0.0, - "T": 49.0 + "T": 366.0, + "V": 0.0 }, { - "V": 0.0, - "T": 53.0 + "T": 371.0, + "V": 0.0 }, { - "V": 0.0, - "T": 57.0 + "T": 376.0, + "V": 0.0 }, { - "V": 0.0, - "T": 61.0 + "T": 381.0, + "V": 0.0 }, { - "V": 0.0, - "T": 65.0 + "T": 386.0, + "V": 0.0 }, { - "V": 1.0, - "T": 69.0 + "T": 391.0, + "V": 0.0 }, { - "V": 0.0, - "T": 73.0 + "T": 396.0, + "V": 0.0 }, { - "V": 0.0, - "T": 77.0 + "T": 401.0, + "V": 0.0 }, { - "V": 0.0, - "T": 81.0 + "T": 406.0, + "V": 0.0 }, { - "V": 0.0, - "T": 85.0 + "T": 411.0, + "V": 0.0 }, { - "V": 0.0, - "T": 89.0 + "T": 416.0, + "V": 0.0 }, { - "V": 0.0, - "T": 93.0 + "T": 421.0, + "V": 0.0 }, { - "V": 1.0, - "T": 97.0 + "T": 426.0, + "V": 0.0 }, { - "V": 0.0, - "T": 101.0 + "T": 431.0, + "V": 0.0 }, { - "V": 0.0, - "T": 105.0 + "T": 436.0, + "V": 0.0 }, { - "V": 0.0, - "T": 109.0 + "T": 441.0, + "V": 0.0 }, { - "V": 0.0, - "T": 113.0 + "T": 446.0, + "V": 0.0 }, { - "V": 0.0, - "T": 117.0 + "T": 451.0, + "V": 0.0 }, { - "V": 0.0, - "T": 121.0 + "T": 456.0, + "V": 0.0 }, { - "V": 1.0, - "T": 125.0 + "T": 461.0, + "V": 0.0 }, { - "V": 0.0, - "T": 129.0 + "T": 466.0, + "V": 0.0 }, { - "V": 0.0, - "T": 133.0 + "T": 471.0, + "V": 0.0 }, { - "V": 0.0, - "T": 137.0 + "T": 476.0, + "V": 0.0 }, { - "V": 0.0, - "T": 141.0 + "T": 481.0, + "V": 0.0 }, { - "V": 0.0, - "T": 145.0 + "T": 486.0, + "V": 0.0 }, { - "V": 0.0, - "T": 149.0 + "T": 491.0, + "V": 0.0 }, { - "V": 1.0, - "T": 153.0 + "T": 496.0, + "V": 0.0 }, { - "V": 0.0, - "T": 157.0 + "T": 501.0, + "V": 0.0 }, { - "V": 0.0, - "T": 161.0 + "T": 506.0, + "V": 0.0 }, { - "V": 0.0, - "T": 165.0 + "T": 511.0, + "V": 0.0 }, { - "V": 0.0, - "T": 169.0 + "T": 516.0, + "V": 0.0 }, { - "V": 0.0, - "T": 173.0 + "T": 521.0, + "V": 0.0 }, { - "V": 0.0, - "T": 177.0 + "T": 526.0, + "V": 0.0 }, { - "V": 1.0, - "T": 181.0 + "T": 531.0, + "V": 0.0 }, { - "V": 0.0, - "T": 185.0 + "T": 536.0, + "V": 0.0 }, { - "V": 0.0, - "T": 189.0 + "T": 541.0, + "V": 0.0 }, { - "V": 0.0, - "T": 193.0 + "T": 546.0, + "V": 0.0 }, { - "V": 0.0, - "T": 197.0 + "T": 551.0, + "V": 0.0 }, { - "V": 0.0, - "T": 201.0 + "T": 556.0, + "V": 0.0 }, { - "V": 0.0, - "T": 205.0 + "T": 561.0, + "V": 0.0 }, { - "V": 0.0, - "T": 209.0 + "T": 566.0, + "V": 0.0 }, { - "V": 0.0, - "T": 213.0 + "T": 571.0, + "V": 0.0 }, { - "V": 0.0, - "T": 217.0 + "T": 576.0, + "V": 0.0 }, { - "V": 0.0, - "T": 221.0 + "T": 581.0, + "V": 0.0 }, { - "V": 0.0, - "T": 225.0 + "T": 586.0, + "V": 0.0 }, { - "V": 0.0, - "T": 229.0 + "T": 591.0, + "V": 0.0 }, { - "V": 0.0, - "T": 233.0 + "T": 596.0, + "V": 0.0 }, { - "V": 0.0, - "T": 237.0 - }, + "T": 601.0, + "V": 0.0 + } + ], + "WorkingSetMB": [ { - "V": 0.0, - "T": 241.0 + "T": 0.0, + "V": 2296.79 }, { - "V": 0.0, - "T": 245.0 + "T": 5.0, + "V": 2300.78 }, { - "V": 0.0, - "T": 249.0 + "T": 10.0, + "V": 2301.3 }, { - "V": 0.0, - "T": 253.0 + "T": 15.0, + "V": 2300.6 }, { - "V": 0.0, - "T": 257.0 + "T": 20.0, + "V": 2301.01 }, { - "V": 0.0, - "T": 261.0 + "T": 25.0, + "V": 2301.6 }, { - "V": 0.0, - "T": 265.0 + "T": 30.0, + "V": 2301.96 }, { - "V": 0.0, - "T": 269.0 + "T": 35.0, + "V": 2302.43 }, { - "V": 0.0, - "T": 273.0 + "T": 40.0, + "V": 2302.88 }, { - "V": 0.0, - "T": 277.0 + "T": 45.0, + "V": 2303.23 }, { - "V": 0.0, - "T": 281.0 + "T": 50.0, + "V": 2303.54 }, { - "V": 0.0, - "T": 285.0 + "T": 55.0, + "V": 2303.89 }, { - "V": 0.0, - "T": 289.0 + "T": 60.0, + "V": 2304.36 }, { - "V": 0.0, - "T": 293.0 + "T": 65.0, + "V": 2304.84 }, { - "V": 0.0, - "T": 297.0 + "T": 70.0, + "V": 2305.12 }, { - "V": 1.0, - "T": 301.0 + "T": 75.0, + "V": 2307.09 }, { - "V": 0.0, - "T": 305.0 + "T": 80.0, + "V": 2307.34 }, { - "V": 0.0, - "T": 309.0 + "T": 85.0, + "V": 2307.69 }, { - "V": 0.0, - "T": 313.0 + "T": 90.0, + "V": 2308.02 }, { - "V": 0.0, - "T": 317.0 + "T": 95.0, + "V": 2308.34 }, { - "V": 0.0, - "T": 321.0 + "T": 100.0, + "V": 2308.59 }, { - "V": 0.0, - "T": 325.0 + "T": 105.0, + "V": 2308.71 }, { - "V": 1.0, - "T": 329.0 + "T": 110.0, + "V": 2309.13 }, { - "V": 0.0, - "T": 333.0 + "T": 115.0, + "V": 2309.45 }, { - "V": 0.0, - "T": 337.0 + "T": 120.0, + "V": 2309.72 }, { - "V": 0.0, - "T": 341.0 + "T": 125.0, + "V": 2310.07 }, { - "V": 0.0, - "T": 345.0 + "T": 130.0, + "V": 2310.42 }, { - "V": 0.0, - "T": 349.0 + "T": 135.0, + "V": 2310.95 }, { - "V": 0.0, - "T": 353.0 + "T": 140.0, + "V": 2311.02 }, { - "V": 1.0, - "T": 357.0 + "T": 145.0, + "V": 2313.05 }, { - "V": 0.0, - "T": 361.0 + "T": 150.0, + "V": 2313.57 }, { - "V": 0.0, - "T": 365.0 + "T": 155.0, + "V": 2313.89 }, { - "V": 0.0, - "T": 369.0 + "T": 160.0, + "V": 2314.29 }, { - "V": 0.0, - "T": 373.0 + "T": 165.0, + "V": 2314.57 }, { - "V": 0.0, - "T": 377.0 + "T": 170.0, + "V": 2314.89 }, { - "V": 0.0, - "T": 381.0 + "T": 175.0, + "V": 2315.14 }, { - "V": 1.0, - "T": 385.0 + "T": 180.0, + "V": 2315.43 }, { - "V": 0.0, - "T": 389.0 + "T": 185.0, + "V": 2315.73 }, { - "V": 0.0, - "T": 393.0 + "T": 190.0, + "V": 2315.96 }, { - "V": 0.0, - "T": 397.0 + "T": 195.0, + "V": 2316.13 }, { - "V": 0.0, - "T": 401.0 + "T": 200.0, + "V": 2316.42 }, { - "V": 0.0, - "T": 405.0 + "T": 205.0, + "V": 2316.68 }, { - "V": 0.0, - "T": 409.0 + "T": 210.0, + "V": 2316.96 }, { - "V": 1.0, - "T": 413.0 + "T": 215.0, + "V": 2317.27 }, { - "V": 0.0, - "T": 417.0 + "T": 220.0, + "V": 2317.64 }, { - "V": 0.0, - "T": 421.0 + "T": 225.0, + "V": 2317.89 }, { - "V": 0.0, - "T": 425.0 + "T": 230.0, + "V": 2318.17 }, { - "V": 0.0, - "T": 429.0 + "T": 235.0, + "V": 2318.46 }, { - "V": 0.0, - "T": 433.0 + "T": 240.0, + "V": 2318.79 }, { - "V": 0.0, - "T": 437.0 + "T": 245.0, + "V": 2319.07 }, { - "V": 0.0, - "T": 441.0 + "T": 250.0, + "V": 2319.34 }, { - "V": 0.0, - "T": 445.0 + "T": 255.0, + "V": 2319.64 }, { - "V": 0.0, - "T": 449.0 + "T": 260.0, + "V": 2319.98 }, { - "V": 0.0, - "T": 453.0 + "T": 265.0, + "V": 2320.41 }, { - "V": 0.0, - "T": 457.0 + "T": 270.0, + "V": 2320.69 }, { - "V": 0.0, - "T": 461.0 + "T": 275.0, + "V": 2320.95 }, { - "V": 0.0, - "T": 465.0 + "T": 280.0, + "V": 2321.25 }, { - "V": 0.0, - "T": 469.0 + "T": 285.0, + "V": 2323.86 }, { - "V": 0.0, - "T": 473.0 + "T": 290.0, + "V": 2324.26 }, { - "V": 0.0, - "T": 477.0 + "T": 295.0, + "V": 2324.54 }, { - "V": 0.0, - "T": 481.0 + "T": 300.0, + "V": 2325.29 }, { - "V": 0.0, - "T": 485.0 + "T": 305.0, + "V": 2325.6 }, { - "V": 0.0, - "T": 489.0 + "T": 310.0, + "V": 2325.91 }, { - "V": 0.0, - "T": 493.0 + "T": 315.0, + "V": 2326.29 }, { - "V": 0.0, - "T": 497.0 + "T": 320.0, + "V": 2326.52 }, { - "V": 0.0, - "T": 501.0 + "T": 325.0, + "V": 2326.66 }, { - "V": 0.0, - "T": 505.0 + "T": 330.0, + "V": 2327.16 }, { - "V": 0.0, - "T": 509.0 + "T": 335.0, + "V": 2327.39 }, { - "V": 0.0, - "T": 513.0 + "T": 340.0, + "V": 2327.67 }, { - "V": 0.0, - "T": 517.0 + "T": 345.0, + "V": 2328.03 }, { - "V": 0.0, - "T": 521.0 + "T": 350.0, + "V": 2328.26 }, { - "V": 0.0, - "T": 525.0 + "T": 355.0, + "V": 2328.54 }, { - "V": 0.0, - "T": 529.0 + "T": 360.0, + "V": 2328.89 }, { - "V": 1.0, - "T": 533.0 + "T": 365.0, + "V": 2329.21 }, { - "V": 0.0, - "T": 537.0 + "T": 370.0, + "V": 2329.41 }, { - "V": 0.0, - "T": 541.0 + "T": 375.0, + "V": 2329.55 }, { - "V": 0.0, - "T": 545.0 + "T": 380.0, + "V": 2329.82 }, { - "V": 0.0, - "T": 549.0 + "T": 385.0, + "V": 2330.16 }, { - "V": 0.0, - "T": 553.0 + "T": 390.0, + "V": 2330.42 }, { - "V": 0.0, - "T": 557.0 + "T": 395.0, + "V": 2330.75 }, { - "V": 1.0, - "T": 561.0 + "T": 400.0, + "V": 2331.0 }, { - "V": 0.0, - "T": 565.0 + "T": 405.0, + "V": 2331.3 }, { - "V": 0.0, - "T": 569.0 + "T": 410.0, + "V": 2331.57 }, { - "V": 0.0, - "T": 573.0 + "T": 415.0, + "V": 2331.88 }, { - "V": 0.0, - "T": 577.0 + "T": 420.0, + "V": 2332.2 }, { - "V": 0.0, - "T": 581.0 + "T": 425.0, + "V": 2332.52 }, { - "V": 0.0, - "T": 585.0 + "T": 430.0, + "V": 2332.8 }, { - "V": 1.0, - "T": 589.0 + "T": 435.0, + "V": 2333.09 }, { - "V": 0.0, - "T": 593.0 + "T": 440.0, + "V": 2333.28 + }, + { + "T": 445.0, + "V": 2333.59 + }, + { + "T": 450.0, + "V": 2333.87 + }, + { + "T": 455.0, + "V": 2334.2 + }, + { + "T": 460.0, + "V": 2334.49 + }, + { + "T": 465.0, + "V": 2334.81 + }, + { + "T": 470.0, + "V": 2335.07 + }, + { + "T": 475.0, + "V": 2335.35 + }, + { + "T": 480.0, + "V": 2335.68 + }, + { + "T": 485.0, + "V": 2336.0 + }, + { + "T": 490.0, + "V": 2336.3 + }, + { + "T": 495.0, + "V": 2336.65 + }, + { + "T": 500.0, + "V": 2336.9 + }, + { + "T": 505.0, + "V": 2337.19 + }, + { + "T": 510.0, + "V": 2337.61 + }, + { + "T": 515.0, + "V": 2337.74 + }, + { + "T": 520.0, + "V": 2338.08 + }, + { + "T": 525.0, + "V": 2338.45 + }, + { + "T": 530.0, + "V": 2338.76 + }, + { + "T": 535.0, + "V": 2339.04 + }, + { + "T": 540.0, + "V": 2339.34 + }, + { + "T": 545.0, + "V": 2339.64 + }, + { + "T": 550.0, + "V": 2339.94 + }, + { + "T": 555.0, + "V": 2340.21 + }, + { + "T": 560.0, + "V": 2340.5 + }, + { + "T": 565.0, + "V": 2340.96 + }, + { + "T": 570.0, + "V": 2341.27 + }, + { + "T": 575.0, + "V": 2341.55 + }, + { + "T": 580.0, + "V": 2341.93 + }, + { + "T": 585.0, + "V": 2342.18 + }, + { + "T": 590.0, + "V": 2342.41 + }, + { + "T": 595.0, + "V": 2342.68 + }, + { + "T": 600.0, + "V": 2342.88 } - ] - } - }, - { - "ScenarioId": "dotllm-serve-1_5b", - "ScenarioName": "dotLLM: 1.5B model (~1GB, Q4_K_M), few-hundred-token context, zero-alloc-inference HTTP server", - "GcModeId": "workstation", - "GcModeName": "Workstation GC", - "DurationSeconds": 600, - "Summary": { - "OperationsTotal": 105.0, - "OpsPerSecondOverall": 0.175, - "TotalAllocatedBytes": 34219416.0, - "Gen0Collections": 1, - "Gen1Collections": 1, - "Gen2Collections": 0, - "WorkingSetBytes": 2428870656.0, - "PeakWorkingSetBytes": 2428870656.0, - "HeapSizeBytes": null, - "TotalCommittedBytes": 138686464.0, - "GcName": "Workstation GC" - }, - "PauseTimePctStats": { - "Avg": 0.003379635761589402, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 1.8698999999999995, - "Min": 0.0, - "Count": 604 - }, - "PauseTimeMsStats": { - "Avg": 0.03379635761589402, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 18.698999999999995, - "Min": 0.0, - "Count": 604 - }, - "WorkingSetStats": { - "Avg": 2420502358.7438016, - "P50": 2422669312.0, - "P90": 2428739584.0, - "P99": 2428837888.0, - "Max": 2428870656.0, - "Min": 2399326208.0, - "Count": 605 - }, - "AllocRateMBStats": { - "Avg": 0.05403009629407466, - "P50": 0.03125, - "P90": 0.1538543701171875, - "P99": 0.18006134033203125, - "Max": 0.23824310302734375, - "Min": 0.00730133056640625, - "Count": 604 - }, - "OpsPerSecStats": { - "Avg": 1.0, - "P50": 1.0, - "P90": 1.0, - "P99": 1.0, - "Max": 1.0, - "Min": 1.0, - "Count": 105 - }, - "TimeSeries": { - "PauseTimePct": [ + ], + "AllocRateMB": [ { "T": 1.0, - "V": 0.0 + "V": 0.04 }, { "T": 6.0, - "V": 0.0 + "V": 0.03 }, { "T": 11.0, - "V": 0.0 + "V": 0.05 }, { "T": 16.0, - "V": 0.0 + "V": 0.03 }, { "T": 21.0, - "V": 0.0 + "V": 0.05 }, { "T": 26.0, - "V": 0.0 + "V": 0.04 }, { "T": 31.0, - "V": 0.0 + "V": 0.03 }, { "T": 36.0, - "V": 0.0 + "V": 0.02 }, { "T": 41.0, - "V": 0.0 + "V": 0.04 }, { "T": 46.0, - "V": 0.0 + "V": 0.04 }, { "T": 51.0, - "V": 0.0 + "V": 0.03 }, { "T": 56.0, - "V": 0.0 + "V": 0.04 }, { "T": 61.0, - "V": 0.0 + "V": 0.04 }, { "T": 66.0, - "V": 0.0 + "V": 0.03 }, { "T": 71.0, - "V": 0.0 + "V": 0.03 }, { "T": 76.0, - "V": 0.0 + "V": 0.02 }, { "T": 81.0, - "V": 0.0 + "V": 0.04 }, { "T": 86.0, - "V": 0.0 + "V": 0.04 }, { "T": 91.0, - "V": 0.0 + "V": 0.04 }, { "T": 96.0, - "V": 0.0 + "V": 0.03 }, { "T": 101.0, - "V": 0.0 + "V": 0.02 }, { "T": 106.0, - "V": 0.0 + "V": 0.25 }, { "T": 111.0, - "V": 0.0 + "V": 0.03 }, { "T": 116.0, - "V": 0.0 + "V": 0.03 }, { "T": 121.0, - "V": 0.0 + "V": 0.04 }, { "T": 126.0, - "V": 0.0 + "V": 0.02 }, { "T": 131.0, - "V": 0.0 + "V": 0.04 }, { "T": 136.0, - "V": 0.0 + "V": 0.02 }, { "T": 141.0, - "V": 0.0 + "V": 0.04 }, { "T": 146.0, - "V": 0.0 + "V": 0.04 }, { "T": 151.0, - "V": 0.0 + "V": 0.04 }, { "T": 156.0, - "V": 0.0 + "V": 0.03 }, { "T": 161.0, - "V": 0.0 + "V": 0.03 }, { "T": 166.0, - "V": 0.0 + "V": 0.04 }, { "T": 171.0, - "V": 0.0 + "V": 0.04 }, { "T": 176.0, - "V": 0.0 + "V": 0.02 }, { "T": 181.0, - "V": 0.0 + "V": 0.02 }, { "T": 186.0, - "V": 0.0 + "V": 0.05 }, { "T": 191.0, - "V": 0.0 + "V": 0.04 }, { "T": 196.0, - "V": 0.0 + "V": 0.15 }, { "T": 201.0, - "V": 0.0 + "V": 0.15 }, { "T": 206.0, - "V": 0.0 + "V": 0.17 }, { "T": 211.0, - "V": 0.0 + "V": 0.16 }, { "T": 216.0, - "V": 0.0 + "V": 0.25 }, { "T": 221.0, - "V": 0.0 + "V": 0.17 }, { "T": 226.0, - "V": 0.0 + "V": 0.15 }, { "T": 231.0, - "V": 0.0 + "V": 0.16 }, { "T": 236.0, - "V": 0.0 + "V": 0.15 }, { "T": 241.0, - "V": 0.0 + "V": 0.16 }, { "T": 246.0, - "V": 0.0 + "V": 0.15 }, { "T": 251.0, - "V": 0.0 + "V": 0.17 }, { "T": 256.0, - "V": 0.0 + "V": 0.17 }, { "T": 261.0, - "V": 0.0 + "V": 0.14 }, { "T": 266.0, - "V": 0.0 + "V": 0.15 }, { "T": 271.0, - "V": 0.0 + "V": 0.16 }, { "T": 276.0, - "V": 0.0 + "V": 0.17 }, { "T": 281.0, - "V": 0.0 + "V": 0.16 }, { "T": 286.0, - "V": 0.0 + "V": 0.16 }, { "T": 291.0, - "V": 0.0 + "V": 0.14 }, { "T": 296.0, - "V": 0.0 + "V": 0.03 }, { "T": 301.0, - "V": 0.0 + "V": 0.03 }, { "T": 306.0, - "V": 0.0 + "V": 0.03 }, { "T": 311.0, - "V": 0.0 + "V": 0.03 }, { "T": 316.0, - "V": 0.0 + "V": 0.04 }, { "T": 321.0, - "V": 0.0 + "V": 0.04 }, { "T": 326.0, - "V": 0.0 + "V": 0.17 }, { "T": 331.0, - "V": 0.0 + "V": 0.02 }, { "T": 336.0, - "V": 0.0 + "V": 0.02 }, { "T": 341.0, - "V": 0.0 + "V": 0.04 }, { "T": 346.0, - "V": 0.0 + "V": 0.04 }, { "T": 351.0, - "V": 0.0 + "V": 0.03 }, { "T": 356.0, - "V": 0.0 + "V": 0.02 }, { "T": 361.0, - "V": 0.0 + "V": 0.03 }, { "T": 366.0, - "V": 0.0 + "V": 0.04 }, { "T": 371.0, - "V": 0.0 + "V": 0.03 }, { "T": 376.0, - "V": 0.0 + "V": 0.16 }, { "T": 381.0, - "V": 0.0 + "V": 0.03 }, { "T": 386.0, - "V": 0.0 + "V": 0.04 }, { "T": 391.0, - "V": 0.0 + "V": 0.04 }, { "T": 396.0, - "V": 0.0 + "V": 0.16 }, { "T": 401.0, - "V": 0.0 + "V": 0.15 }, { "T": 406.0, - "V": 0.0 + "V": 0.16 }, { "T": 411.0, - "V": 0.0 + "V": 0.16 }, { "T": 416.0, - "V": 0.0 + "V": 0.16 }, { "T": 421.0, - "V": 0.0 + "V": 0.15 }, { "T": 426.0, - "V": 0.0 + "V": 0.16 }, { "T": 431.0, - "V": 0.0 + "V": 0.15 }, { "T": 436.0, - "V": 0.0 + "V": 0.16 }, { "T": 441.0, - "V": 0.0 + "V": 0.16 }, { "T": 446.0, - "V": 0.0 + "V": 0.16 }, { "T": 451.0, - "V": 0.0 + "V": 0.16 }, { "T": 456.0, - "V": 0.0 + "V": 0.17 }, { "T": 461.0, - "V": 0.0 + "V": 0.15 }, { "T": 466.0, - "V": 0.0 + "V": 0.14 }, { "T": 471.0, - "V": 0.0 + "V": 0.16 }, { "T": 476.0, - "V": 0.0 + "V": 0.24 }, { "T": 481.0, - "V": 0.0 + "V": 0.18 }, { "T": 486.0, - "V": 0.0 + "V": 0.22 }, { "T": 491.0, - "V": 0.0 + "V": 0.17 }, { "T": 496.0, - "V": 0.0 + "V": 0.15 }, { "T": 501.0, - "V": 0.0 + "V": 0.16 }, { "T": 506.0, - "V": 0.0 + "V": 0.14 }, { "T": 511.0, - "V": 0.0 + "V": 0.03 }, { "T": 516.0, - "V": 0.0 + "V": 0.15 }, { "T": 521.0, - "V": 0.0 + "V": 0.16 }, { "T": 526.0, - "V": 0.1714 + "V": 0.03 }, { "T": 531.0, - "V": 0.0 + "V": 0.02 }, { "T": 536.0, - "V": 0.0 + "V": 0.04 }, { "T": 541.0, - "V": 0.0 + "V": 0.03 }, { "T": 546.0, - "V": 0.0 + "V": 0.03 }, { "T": 551.0, - "V": 0.0 + "V": 0.03 }, { "T": 556.0, - "V": 0.0 + "V": 0.03 }, { "T": 561.0, - "V": 0.0 + "V": 0.03 }, { "T": 566.0, - "V": 0.0 + "V": 0.04 }, { "T": 571.0, - "V": 0.0 + "V": 0.03 }, { "T": 576.0, - "V": 0.0 + "V": 0.03 }, { "T": 581.0, - "V": 0.0 + "V": 0.03 }, { "T": 586.0, - "V": 0.0 + "V": 0.03 }, { "T": 591.0, - "V": 0.0 + "V": 0.04 }, { "T": 596.0, - "V": 0.0 + "V": 0.02 }, { "T": 601.0, - "V": 0.0 + "V": 0.03 } ], - "PauseTimeMs": [ + "OpsPerSec": [ + { + "T": 5.0, + "V": 1.0 + }, + { + "T": 10.0, + "V": 1.0 + }, + { + "T": 14.0, + "V": 1.0 + }, + { + "T": 19.0, + "V": 1.0 + }, + { + "T": 24.0, + "V": 1.0 + }, + { + "T": 28.0, + "V": 1.0 + }, + { + "T": 33.0, + "V": 1.0 + }, + { + "T": 38.0, + "V": 1.0 + }, + { + "T": 43.0, + "V": 1.0 + }, + { + "T": 48.0, + "V": 1.0 + }, + { + "T": 53.0, + "V": 1.0 + }, + { + "T": 58.0, + "V": 1.0 + }, + { + "T": 63.0, + "V": 1.0 + }, + { + "T": 68.0, + "V": 1.0 + }, + { + "T": 73.0, + "V": 1.0 + }, + { + "T": 78.0, + "V": 1.0 + }, + { + "T": 84.0, + "V": 1.0 + }, + { + "T": 89.0, + "V": 1.0 + }, + { + "T": 95.0, + "V": 1.0 + }, + { + "T": 100.0, + "V": 1.0 + }, + { + "T": 106.0, + "V": 1.0 + }, + { + "T": 112.0, + "V": 1.0 + }, + { + "T": 118.0, + "V": 1.0 + }, + { + "T": 123.0, + "V": 1.0 + }, + { + "T": 129.0, + "V": 1.0 + }, + { + "T": 135.0, + "V": 1.0 + }, + { + "T": 142.0, + "V": 1.0 + }, + { + "T": 148.0, + "V": 1.0 + }, + { + "T": 153.0, + "V": 1.0 + }, + { + "T": 158.0, + "V": 1.0 + }, + { + "T": 164.0, + "V": 1.0 + }, + { + "T": 169.0, + "V": 1.0 + }, + { + "T": 174.0, + "V": 1.0 + }, + { + "T": 179.0, + "V": 1.0 + }, + { + "T": 185.0, + "V": 1.0 + }, + { + "T": 190.0, + "V": 1.0 + }, + { + "T": 196.0, + "V": 1.0 + }, + { + "T": 201.0, + "V": 1.0 + }, + { + "T": 206.0, + "V": 1.0 + }, + { + "T": 211.0, + "V": 1.0 + }, + { + "T": 216.0, + "V": 1.0 + }, + { + "T": 221.0, + "V": 1.0 + }, + { + "T": 226.0, + "V": 1.0 + }, + { + "T": 231.0, + "V": 1.0 + }, + { + "T": 236.0, + "V": 1.0 + }, + { + "T": 241.0, + "V": 1.0 + }, + { + "T": 246.0, + "V": 1.0 + }, + { + "T": 251.0, + "V": 1.0 + }, + { + "T": 256.0, + "V": 1.0 + }, + { + "T": 261.0, + "V": 1.0 + }, + { + "T": 266.0, + "V": 1.0 + }, + { + "T": 271.0, + "V": 1.0 + }, + { + "T": 276.0, + "V": 1.0 + }, + { + "T": 281.0, + "V": 1.0 + }, + { + "T": 286.0, + "V": 1.0 + }, + { + "T": 291.0, + "V": 1.0 + }, + { + "T": 298.0, + "V": 1.0 + }, + { + "T": 304.0, + "V": 1.0 + }, + { + "T": 309.0, + "V": 1.0 + }, + { + "T": 315.0, + "V": 1.0 + }, + { + "T": 320.0, + "V": 1.0 + }, + { + "T": 326.0, + "V": 1.0 + }, + { + "T": 330.0, + "V": 1.0 + }, + { + "T": 335.0, + "V": 1.0 + }, + { + "T": 340.0, + "V": 1.0 + }, + { + "T": 345.0, + "V": 1.0 + }, + { + "T": 350.0, + "V": 1.0 + }, + { + "T": 355.0, + "V": 1.0 + }, + { + "T": 360.0, + "V": 1.0 + }, + { + "T": 365.0, + "V": 1.0 + }, + { + "T": 370.0, + "V": 1.0 + }, + { + "T": 376.0, + "V": 1.0 + }, + { + "T": 382.0, + "V": 1.0 + }, + { + "T": 387.0, + "V": 1.0 + }, + { + "T": 392.0, + "V": 1.0 + }, + { + "T": 396.0, + "V": 1.0 + }, + { + "T": 401.0, + "V": 1.0 + }, + { + "T": 406.0, + "V": 1.0 + }, + { + "T": 411.0, + "V": 1.0 + }, + { + "T": 416.0, + "V": 1.0 + }, + { + "T": 421.0, + "V": 1.0 + }, + { + "T": 426.0, + "V": 1.0 + }, + { + "T": 431.0, + "V": 1.0 + }, + { + "T": 436.0, + "V": 1.0 + }, + { + "T": 441.0, + "V": 1.0 + }, + { + "T": 446.0, + "V": 1.0 + }, + { + "T": 451.0, + "V": 1.0 + }, + { + "T": 456.0, + "V": 1.0 + }, + { + "T": 461.0, + "V": 1.0 + }, + { + "T": 466.0, + "V": 1.0 + }, + { + "T": 471.0, + "V": 1.0 + }, + { + "T": 476.0, + "V": 1.0 + }, + { + "T": 481.0, + "V": 1.0 + }, + { + "T": 486.0, + "V": 1.0 + }, + { + "T": 491.0, + "V": 1.0 + }, + { + "T": 496.0, + "V": 1.0 + }, + { + "T": 501.0, + "V": 1.0 + }, + { + "T": 506.0, + "V": 1.0 + }, + { + "T": 510.0, + "V": 1.0 + }, + { + "T": 516.0, + "V": 1.0 + }, + { + "T": 520.0, + "V": 1.0 + }, + { + "T": 525.0, + "V": 1.0 + }, + { + "T": 530.0, + "V": 1.0 + }, + { + "T": 535.0, + "V": 1.0 + }, + { + "T": 540.0, + "V": 1.0 + }, + { + "T": 544.0, + "V": 1.0 + }, + { + "T": 549.0, + "V": 1.0 + }, + { + "T": 554.0, + "V": 1.0 + }, + { + "T": 559.0, + "V": 1.0 + }, + { + "T": 564.0, + "V": 1.0 + }, + { + "T": 569.0, + "V": 1.0 + }, + { + "T": 574.0, + "V": 1.0 + }, + { + "T": 578.0, + "V": 1.0 + }, + { + "T": 584.0, + "V": 1.0 + }, + { + "T": 589.0, + "V": 1.0 + }, + { + "T": 594.0, + "V": 1.0 + }, + { + "T": 600.0, + "V": 1.0 + } + ], + "Gen0PerSec": [ { "T": 1.0, "V": 0.0 @@ -47641,7 +47564,7 @@ }, { "T": 526.0, - "V": 1.714 + "V": 0.0 }, { "T": 531.0, @@ -47703,6836 +47626,8065 @@ "T": 601.0, "V": 0.0 } - ], - "WorkingSetMB": [ - { - "T": 0.0, - "V": 2288.18 - }, - { - "T": 5.0, - "V": 2290.54 - }, - { - "T": 10.0, - "V": 2290.53 - }, - { - "T": 15.0, - "V": 2289.32 - }, - { - "T": 20.0, - "V": 2290.63 - }, - { - "T": 25.0, - "V": 2291.0 - }, - { - "T": 30.0, - "V": 2291.21 - }, - { - "T": 35.0, - "V": 2291.9 - }, - { - "T": 40.0, - "V": 2292.29 - }, - { - "T": 45.0, - "V": 2292.39 - }, - { - "T": 50.0, - "V": 2292.91 - }, - { - "T": 55.0, - "V": 2293.61 - }, - { - "T": 60.0, - "V": 2293.97 - }, - { - "T": 65.0, - "V": 2294.37 - }, - { - "T": 70.0, - "V": 2294.7 - }, - { - "T": 75.0, - "V": 2294.85 - }, - { - "T": 80.0, - "V": 2295.32 - }, - { - "T": 85.0, - "V": 2296.29 - }, - { - "T": 90.0, - "V": 2296.63 - }, - { - "T": 95.0, - "V": 2296.78 - }, - { - "T": 100.0, - "V": 2298.07 - }, - { - "T": 105.0, - "V": 2298.4 - }, - { - "T": 110.0, - "V": 2298.51 - }, - { - "T": 115.0, - "V": 2298.87 - }, - { - "T": 120.0, - "V": 2299.15 - }, - { - "T": 125.0, - "V": 2299.29 - }, + ] + } + }, + { + "ScenarioId": "gcperfsim-mt-throughput", + "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, no compute delay)", + "GcModeId": "workstation", + "GcModeName": "Workstation GC", + "DurationSeconds": 13.120092, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 3512.170521838638, + "TotalAllocatedBytes": 48318382464.0, + "Gen0Collections": 3216, + "Gen1Collections": 2412, + "Gen2Collections": 12, + "WorkingSetBytes": 1124925440.0, + "PeakWorkingSetBytes": 1124925440.0, + "HeapSizeBytes": 775405664.0, + "TotalCommittedBytes": 1079812096.0, + "GcName": "Workstation GC", + "TagbUsed": 45.0 + }, + "PauseTimePctStats": { + "Avg": 51.43022727272728, + "P50": 41.885200000000026, + "P90": 67.1637, + "P99": 72.59059999999997, + "Max": 72.59059999999997, + "Min": 38.1297, + "Count": 11 + }, + "PauseTimeMsStats": { + "Avg": 514.3022727272728, + "P50": 418.8520000000002, + "P90": 671.6370000000001, + "P99": 725.9059999999997, + "Max": 725.9059999999997, + "Min": 381.297, + "Count": 11 + }, + "WorkingSetStats": { + "Avg": 945202176.0, + "P50": 1040986112.0, + "P90": 1102811136.0, + "P99": 1124925440.0, + "Max": 1124925440.0, + "Min": 528900096.0, + "Count": 12 + }, + "AllocRateMBStats": { + "Avg": 3528.214861089533, + "P50": 3703.0615844726562, + "P90": 4264.538063049316, + "P99": 4916.221420288086, + "Max": 4916.221420288086, + "Min": 2209.1163330078125, + "Count": 11 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ { - "T": 130.0, - "V": 2299.62 + "V": 40.0356, + "T": 1.0 }, { - "T": 135.0, - "V": 2299.91 + "V": 38.1297, + "T": 2.0 }, { - "T": 140.0, - "V": 2300.17 + "V": 40.3889, + "T": 3.0 }, { - "T": 145.0, - "V": 2300.48 + "V": 41.8852, + "T": 4.0 }, { - "T": 150.0, - "V": 2300.8 + "V": 39.8996, + "T": 5.0 }, { - "T": 155.0, - "V": 2301.21 + "V": 38.5545, + "T": 6.0 }, { - "T": 160.0, - "V": 2301.72 + "V": 67.1637, + "T": 7.0 }, { - "T": 165.0, - "V": 2302.2 + "V": 72.5906, + "T": 8.0 }, { - "T": 170.0, - "V": 2302.33 + "V": 66.5869, + "T": 9.0 }, { - "T": 175.0, - "V": 2304.63 + "V": 62.9506, + "T": 10.0 }, { - "T": 180.0, - "V": 2305.72 - }, + "V": 57.5472, + "T": 11.0 + } + ], + "PauseTimeMs": [ { - "T": 185.0, - "V": 2306.0 + "V": 400.356, + "T": 1.0 }, { - "T": 190.0, - "V": 2306.42 + "V": 381.297, + "T": 2.0 }, { - "T": 195.0, - "V": 2306.66 + "V": 403.889, + "T": 3.0 }, { - "T": 200.0, - "V": 2306.97 + "V": 418.852, + "T": 4.0 }, { - "T": 205.0, - "V": 2307.22 + "V": 398.996, + "T": 5.0 }, { - "T": 210.0, - "V": 2307.55 + "V": 385.545, + "T": 6.0 }, { - "T": 215.0, - "V": 2307.89 + "V": 671.637, + "T": 7.0 }, { - "T": 220.0, - "V": 2308.19 + "V": 725.906, + "T": 8.0 }, { - "T": 225.0, - "V": 2308.48 + "V": 665.869, + "T": 9.0 }, { - "T": 230.0, - "V": 2308.62 + "V": 629.506, + "T": 10.0 }, { - "T": 235.0, - "V": 2308.88 - }, + "V": 575.472, + "T": 11.0 + } + ], + "WorkingSetMB": [ { - "T": 240.0, - "V": 2313.57 + "V": 504.4, + "T": 0.0 }, { - "T": 245.0, - "V": 2313.6 + "V": 626.16, + "T": 1.0 }, { - "T": 250.0, - "V": 2313.59 + "V": 722.8, + "T": 2.0 }, { - "T": 255.0, - "V": 2313.54 + "V": 807.18, + "T": 3.0 }, { - "T": 260.0, - "V": 2313.56 + "V": 894.6, + "T": 4.0 }, { - "T": 265.0, - "V": 2313.68 + "V": 992.76, + "T": 5.0 }, { - "T": 270.0, - "V": 2313.68 + "V": 1072.81, + "T": 6.0 }, { - "T": 275.0, - "V": 2313.68 + "V": 1051.72, + "T": 7.0 }, { - "T": 280.0, - "V": 2313.69 + "V": 1036.36, + "T": 8.0 }, { - "T": 285.0, - "V": 2313.73 + "V": 1037.44, + "T": 9.0 }, { - "T": 290.0, - "V": 2313.74 + "V": 1037.45, + "T": 10.0 }, { - "T": 295.0, - "V": 2313.7 - }, + "V": 1033.29, + "T": 11.0 + } + ], + "AllocRateMB": [ { - "T": 300.0, - "V": 2313.72 + "V": 4916.22, + "T": 1.0 }, { - "T": 305.0, - "V": 2313.71 + "V": 4264.54, + "T": 2.0 }, { - "T": 310.0, - "V": 2313.75 + "V": 3703.06, + "T": 3.0 }, { - "T": 315.0, - "V": 2313.77 + "V": 4042.24, + "T": 4.0 }, { - "T": 320.0, - "V": 2315.58 + "V": 3935.76, + "T": 5.0 }, { - "T": 325.0, - "V": 2315.66 + "V": 3446.68, + "T": 6.0 }, { - "T": 330.0, - "V": 2315.65 + "V": 2838.47, + "T": 7.0 }, { - "T": 335.0, - "V": 2315.6 + "V": 2209.12, + "T": 8.0 }, { - "T": 340.0, - "V": 2315.98 + "V": 2637.4, + "T": 9.0 }, { - "T": 345.0, - "V": 2316.04 + "V": 3007.62, + "T": 10.0 }, { - "T": 350.0, - "V": 2316.05 - }, + "V": 3809.26, + "T": 11.0 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ { - "T": 355.0, - "V": 2316.16 + "V": 0.0, + "T": 1.0 }, { - "T": 360.0, - "V": 2316.16 + "V": 3.0, + "T": 2.0 }, { - "T": 365.0, - "V": 2316.16 + "V": 3.0, + "T": 3.0 }, { - "T": 370.0, - "V": 2316.12 + "V": 6.0, + "T": 4.0 }, { - "T": 375.0, - "V": 2316.1 + "V": 13.0, + "T": 5.0 }, { - "T": 380.0, - "V": 2316.1 + "V": 12.0, + "T": 6.0 }, { - "T": 385.0, - "V": 2316.14 + "V": 54.0, + "T": 7.0 }, { - "T": 390.0, - "V": 2316.11 + "V": 116.0, + "T": 8.0 }, { - "T": 395.0, - "V": 2316.15 + "V": 128.0, + "T": 9.0 }, { - "T": 400.0, - "V": 2316.13 + "V": 145.0, + "T": 10.0 }, { - "T": 405.0, - "V": 2316.2 - }, + "V": 183.0, + "T": 11.0 + } + ] + } + }, + { + "ScenarioId": "gcperfsim-mt-throughput", + "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, no compute delay)", + "GcModeId": "server", + "GcModeName": "Server GC", + "DurationSeconds": 4.3643795, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 10558.202000126465, + "TotalAllocatedBytes": 48318382464.0, + "Gen0Collections": 1025, + "Gen1Collections": 259, + "Gen2Collections": 9, + "WorkingSetBytes": 1235128320.0, + "PeakWorkingSetBytes": 1235128320.0, + "HeapSizeBytes": 880396248.0, + "TotalCommittedBytes": 1187405824.0, + "GcName": "Server GC", + "TagbUsed": 45.0 + }, + "PauseTimePctStats": { + "Avg": 56.96005000000001, + "P50": 56.584999999999994, + "P90": 57.33510000000002, + "P99": 57.33510000000002, + "Max": 57.33510000000002, + "Min": 56.584999999999994, + "Count": 2 + }, + "PauseTimeMsStats": { + "Avg": 569.6005, + "P50": 565.8499999999999, + "P90": 573.3510000000001, + "P99": 573.3510000000001, + "Max": 573.3510000000001, + "Min": 565.8499999999999, + "Count": 2 + }, + "WorkingSetStats": { + "Avg": 975738197.3333334, + "P50": 947568640.0, + "P90": 1235128320.0, + "P99": 1235128320.0, + "Max": 1235128320.0, + "Min": 744517632.0, + "Count": 3 + }, + "AllocRateMBStats": { + "Avg": 12249.52598953247, + "P50": 11084.256813049316, + "P90": 13414.795166015625, + "P99": 13414.795166015625, + "Max": 13414.795166015625, + "Min": 11084.256813049316, + "Count": 2 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ { - "T": 410.0, - "V": 2316.16 + "V": 56.585, + "T": 1.0 }, { - "T": 415.0, - "V": 2316.17 - }, + "V": 57.3351, + "T": 2.0 + } + ], + "PauseTimeMs": [ { - "T": 420.0, - "V": 2316.21 + "V": 565.85, + "T": 1.0 }, { - "T": 425.0, - "V": 2316.18 - }, + "V": 573.351, + "T": 2.0 + } + ], + "WorkingSetMB": [ { - "T": 430.0, - "V": 2316.21 + "V": 710.03, + "T": 0.0 }, { - "T": 435.0, - "V": 2316.22 + "V": 903.67, + "T": 1.0 }, { - "T": 440.0, - "V": 2316.19 - }, + "V": 1177.91, + "T": 2.0 + } + ], + "AllocRateMB": [ { - "T": 445.0, - "V": 2316.16 + "V": 11084.26, + "T": 1.0 }, { - "T": 450.0, - "V": 2316.21 - }, + "V": 13414.8, + "T": 2.0 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ { - "T": 455.0, - "V": 2316.21 + "V": 195.0, + "T": 1.0 }, { - "T": 460.0, - "V": 2316.26 - }, - { - "T": 465.0, - "V": 2316.21 - }, - { - "T": 470.0, - "V": 2316.22 - }, + "V": 238.0, + "T": 2.0 + } + ] + } + }, + { + "ScenarioId": "gcperfsim-mt-throughput", + "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, no compute delay)", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 1.979561, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 23277.888565298537, + "TotalAllocatedBytes": 48318382464.0, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 49489113088.0, + "PeakWorkingSetBytes": 49489113088.0, + "HeapSizeBytes": 51136954368.0, + "TotalCommittedBytes": 50600083456.0, + "GcName": "ZeroGC", + "TagbUsed": 45.0 + }, + "PauseTimePctStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "PauseTimeMsStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "WorkingSetStats": { + "Avg": 49489113088.0, + "P50": 49489113088.0, + "P90": 49489113088.0, + "P99": 49489113088.0, + "Max": 49489113088.0, + "Min": 49489113088.0, + "Count": 1 + }, + "AllocRateMBStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": null, + "PauseTimeMs": null, + "WorkingSetMB": { + "V": 47196.5, + "T": 0.0 + }, + "AllocRateMB": null, + "OpsPerSec": null, + "Gen0PerSec": null + } + }, + { + "ScenarioId": "gcperfsim-mt-throughput-moderate", + "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, moderate compute delay)", + "GcModeId": "workstation", + "GcModeName": "Workstation GC", + "DurationSeconds": 14.7838004, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 3116.9266984300266, + "TotalAllocatedBytes": 48318405328.0, + "Gen0Collections": 3216, + "Gen1Collections": 2399, + "Gen2Collections": 12, + "WorkingSetBytes": 1134526464.0, + "PeakWorkingSetBytes": 1134526464.0, + "HeapSizeBytes": 844100880.0, + "TotalCommittedBytes": 1089703936.0, + "GcName": "Workstation GC", + "TagbUsed": 45.0 + }, + "PauseTimePctStats": { + "Avg": 39.85953846153846, + "P50": 31.433500000000002, + "P90": 56.52589999999997, + "P99": 59.28550000000001, + "Max": 59.28550000000001, + "Min": 28.541099999999986, + "Count": 13 + }, + "PauseTimeMsStats": { + "Avg": 398.59538461538455, + "P50": 314.33500000000004, + "P90": 565.2589999999998, + "P99": 592.8550000000001, + "Max": 592.8550000000001, + "Min": 285.41099999999983, + "Count": 13 + }, + "WorkingSetStats": { + "Avg": 907629714.2857143, + "P50": 971452416.0, + "P90": 1113243648.0, + "P99": 1134526464.0, + "Max": 1134526464.0, + "Min": 491274240.0, + "Count": 14 + }, + "AllocRateMBStats": { + "Avg": 3201.973497244028, + "P50": 3245.5746002197266, + "P90": 3685.68009185791, + "P99": 3760.6579208374023, + "Max": 3760.6579208374023, + "Min": 2305.756004333496, + "Count": 13 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ { - "T": 475.0, - "V": 2316.23 + "V": 29.0903, + "T": 1.0 }, { - "T": 480.0, - "V": 2316.23 + "V": 31.0533, + "T": 2.0 }, { - "T": 485.0, - "V": 2316.27 + "V": 29.7605, + "T": 3.0 }, { - "T": 490.0, - "V": 2316.24 + "V": 30.9455, + "T": 4.0 }, { - "T": 495.0, - "V": 2316.28 + "V": 30.1837, + "T": 5.0 }, { - "T": 500.0, - "V": 2316.29 + "V": 31.4335, + "T": 6.0 }, { - "T": 505.0, - "V": 2316.29 + "V": 28.5411, + "T": 7.0 }, { - "T": 510.0, - "V": 2316.28 + "V": 54.453, + "T": 8.0 }, { - "T": 515.0, - "V": 2316.29 + "V": 59.2855, + "T": 9.0 }, { - "T": 520.0, - "V": 2316.33 + "V": 56.5259, + "T": 10.0 }, { - "T": 525.0, - "V": 2316.29 + "V": 52.0576, + "T": 11.0 }, { - "T": 530.0, - "V": 2310.06 + "V": 47.1403, + "T": 12.0 }, { - "T": 535.0, - "V": 2310.06 - }, + "V": 37.7038, + "T": 13.0 + } + ], + "PauseTimeMs": [ { - "T": 540.0, - "V": 2310.07 + "V": 290.903, + "T": 1.0 }, { - "T": 545.0, - "V": 2310.2 + "V": 310.533, + "T": 2.0 }, { - "T": 550.0, - "V": 2310.18 + "V": 297.605, + "T": 3.0 }, { - "T": 555.0, - "V": 2310.18 + "V": 309.455, + "T": 4.0 }, { - "T": 560.0, - "V": 2310.35 + "V": 301.837, + "T": 5.0 }, { - "T": 565.0, - "V": 2310.36 + "V": 314.335, + "T": 6.0 }, { - "T": 570.0, - "V": 2310.37 + "V": 285.411, + "T": 7.0 }, { - "T": 575.0, - "V": 2310.37 + "V": 544.53, + "T": 8.0 }, { - "T": 580.0, - "V": 2310.37 + "V": 592.855, + "T": 9.0 }, { - "T": 585.0, - "V": 2310.45 + "V": 565.259, + "T": 10.0 }, { - "T": 590.0, - "V": 2310.45 + "V": 520.576, + "T": 11.0 }, { - "T": 595.0, - "V": 2310.44 + "V": 471.403, + "T": 12.0 }, { - "T": 600.0, - "V": 2310.43 + "V": 377.038, + "T": 13.0 } ], - "AllocRateMB": [ + "WorkingSetMB": [ { - "T": 1.0, - "V": 0.03 + "V": 468.52, + "T": 0.0 }, { - "T": 6.0, - "V": 0.15 + "V": 565.8, + "T": 1.0 }, { - "T": 11.0, - "V": 0.18 + "V": 653.81, + "T": 2.0 }, { - "T": 16.0, - "V": 0.16 + "V": 746.31, + "T": 3.0 }, { - "T": 21.0, - "V": 0.02 + "V": 831.27, + "T": 4.0 }, { - "T": 26.0, - "V": 0.03 + "V": 915.63, + "T": 5.0 }, { - "T": 31.0, - "V": 0.14 + "V": 999.99, + "T": 6.0 }, { - "T": 36.0, - "V": 0.03 + "V": 1081.97, + "T": 7.0 }, { - "T": 41.0, - "V": 0.03 + "V": 1061.67, + "T": 8.0 }, { - "T": 46.0, - "V": 0.03 + "V": 987.81, + "T": 9.0 }, { - "T": 51.0, - "V": 0.02 + "V": 971.73, + "T": 10.0 }, { - "T": 56.0, - "V": 0.03 + "V": 955.36, + "T": 11.0 }, { - "T": 61.0, - "V": 0.03 + "V": 951.84, + "T": 12.0 }, { - "T": 66.0, - "V": 0.03 - }, + "V": 926.45, + "T": 13.0 + } + ], + "AllocRateMB": [ { - "T": 71.0, - "V": 0.04 + "V": 3760.66, + "T": 1.0 }, { - "T": 76.0, - "V": 0.15 + "V": 3685.68, + "T": 2.0 }, { - "T": 81.0, - "V": 0.02 + "V": 3536.85, + "T": 3.0 }, { - "T": 86.0, - "V": 0.04 + "V": 3592.65, + "T": 4.0 }, { - "T": 91.0, - "V": 0.03 + "V": 3501.68, + "T": 5.0 }, { - "T": 96.0, - "V": 0.02 + "V": 3569.18, + "T": 6.0 }, { - "T": 101.0, - "V": 0.02 + "V": 3245.57, + "T": 7.0 }, { - "T": 106.0, - "V": 0.02 + "V": 2717.81, + "T": 8.0 }, { - "T": 111.0, - "V": 0.24 + "V": 2305.76, + "T": 9.0 }, { - "T": 116.0, - "V": 0.03 + "V": 2640.12, + "T": 10.0 }, { - "T": 121.0, - "V": 0.04 + "V": 2831.54, + "T": 11.0 }, { - "T": 126.0, - "V": 0.15 + "V": 3096.48, + "T": 12.0 }, { - "T": 131.0, - "V": 0.14 - }, + "V": 3141.68, + "T": 13.0 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ { - "T": 136.0, - "V": 0.02 + "V": 0.0, + "T": 1.0 }, { - "T": 141.0, - "V": 0.02 + "V": 1.0, + "T": 2.0 }, { - "T": 146.0, - "V": 0.02 + "V": 10.0, + "T": 3.0 }, { - "T": 151.0, - "V": 0.03 + "V": 6.0, + "T": 4.0 }, { - "T": 156.0, - "V": 0.03 + "V": 11.0, + "T": 5.0 }, { - "T": 161.0, - "V": 0.04 + "V": 9.0, + "T": 6.0 }, { - "T": 166.0, - "V": 0.03 + "V": 9.0, + "T": 7.0 }, { - "T": 171.0, - "V": 0.15 + "V": 31.0, + "T": 8.0 }, { - "T": 176.0, - "V": 0.17 + "V": 116.0, + "T": 9.0 }, { - "T": 181.0, - "V": 0.15 + "V": 128.0, + "T": 10.0 }, { - "T": 186.0, - "V": 0.05 + "V": 135.0, + "T": 11.0 }, { - "T": 191.0, - "V": 0.04 + "V": 143.0, + "T": 12.0 }, { - "T": 196.0, - "V": 0.02 + "V": 150.0, + "T": 13.0 + } + ] + } + }, + { + "ScenarioId": "gcperfsim-mt-throughput-moderate", + "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, moderate compute delay)", + "GcModeId": "server", + "GcModeName": "Server GC", + "DurationSeconds": 9.7786665, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 4712.301229520457, + "TotalAllocatedBytes": 48318405328.0, + "Gen0Collections": 695, + "Gen1Collections": 178, + "Gen2Collections": 9, + "WorkingSetBytes": 1193824256.0, + "PeakWorkingSetBytes": 1193824256.0, + "HeapSizeBytes": 950607584.0, + "TotalCommittedBytes": 1145364480.0, + "GcName": "Server GC", + "TagbUsed": 45.0 + }, + "PauseTimePctStats": { + "Avg": 18.456875, + "P50": 19.996900000000007, + "P90": 24.60770000000001, + "P99": 24.60770000000001, + "Max": 24.60770000000001, + "Min": 10.819, + "Count": 8 + }, + "PauseTimeMsStats": { + "Avg": 184.56875, + "P50": 199.96900000000005, + "P90": 246.0770000000001, + "P99": 246.0770000000001, + "Max": 246.0770000000001, + "Min": 108.19000000000001, + "Count": 8 + }, + "WorkingSetStats": { + "Avg": 1000901290.6666666, + "P50": 1083281408.0, + "P90": 1193824256.0, + "P99": 1193824256.0, + "Max": 1193824256.0, + "Min": 731312128.0, + "Count": 9 + }, + "AllocRateMBStats": { + "Avg": 4944.6399936676025, + "P50": 4874.172454833984, + "P90": 5608.565879821777, + "P99": 5608.565879821777, + "Max": 5608.565879821777, + "Min": 4293.37158203125, + "Count": 8 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ + { + "V": 19.1831, + "T": 1.0 }, { - "T": 201.0, - "V": 0.03 + "V": 21.4091, + "T": 2.0 }, { - "T": 206.0, - "V": 0.03 + "V": 19.9969, + "T": 3.0 }, { - "T": 211.0, - "V": 0.03 + "V": 20.4144, + "T": 4.0 }, { - "T": 216.0, - "V": 0.03 + "V": 20.1283, + "T": 5.0 }, { - "T": 221.0, - "V": 0.03 + "V": 24.6077, + "T": 6.0 }, { - "T": 226.0, - "V": 0.02 + "V": 10.819, + "T": 7.0 }, { - "T": 231.0, - "V": 0.15 - }, + "V": 11.0965, + "T": 8.0 + } + ], + "PauseTimeMs": [ { - "T": 236.0, - "V": 0.15 + "V": 191.831, + "T": 1.0 }, { - "T": 241.0, - "V": 0.04 + "V": 214.091, + "T": 2.0 }, { - "T": 246.0, - "V": 0.02 + "V": 199.969, + "T": 3.0 }, { - "T": 251.0, - "V": 0.03 + "V": 204.144, + "T": 4.0 }, { - "T": 256.0, - "V": 0.03 + "V": 201.283, + "T": 5.0 }, { - "T": 261.0, - "V": 0.02 + "V": 246.077, + "T": 6.0 }, { - "T": 266.0, - "V": 0.16 + "V": 108.19, + "T": 7.0 }, { - "T": 271.0, - "V": 0.15 - }, + "V": 110.965, + "T": 8.0 + } + ], + "WorkingSetMB": [ { - "T": 276.0, - "V": 0.15 + "V": 697.43, + "T": 0.0 }, { - "T": 281.0, - "V": 0.03 + "V": 765.84, + "T": 1.0 }, { - "T": 286.0, - "V": 0.02 + "V": 861.96, + "T": 2.0 }, { - "T": 291.0, - "V": 0.04 + "V": 949.46, + "T": 3.0 }, { - "T": 296.0, - "V": 0.03 + "V": 1033.1, + "T": 4.0 }, { - "T": 301.0, - "V": 0.03 + "V": 1138.52, + "T": 5.0 }, { - "T": 306.0, - "V": 0.03 + "V": 1033.17, + "T": 6.0 }, { - "T": 311.0, - "V": 0.03 + "V": 1054.5, + "T": 7.0 }, { - "T": 316.0, - "V": 0.03 + "V": 1056.81, + "T": 8.0 + } + ], + "AllocRateMB": [ + { + "V": 4293.37, + "T": 1.0 }, { - "T": 321.0, - "V": 0.03 + "V": 4656.21, + "T": 2.0 }, { - "T": 326.0, - "V": 0.03 + "V": 4950.9, + "T": 3.0 }, { - "T": 331.0, - "V": 0.03 + "V": 4874.17, + "T": 4.0 }, { - "T": 336.0, - "V": 0.15 + "V": 4940.3, + "T": 5.0 }, { - "T": 341.0, - "V": 0.02 + "V": 4633.89, + "T": 6.0 }, { - "T": 346.0, - "V": 0.03 + "V": 5599.71, + "T": 7.0 }, { - "T": 351.0, - "V": 0.04 + "V": 5608.57, + "T": 8.0 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ + { + "V": 53.0, + "T": 1.0 }, { - "T": 356.0, - "V": 0.03 + "V": 79.0, + "T": 2.0 }, { - "T": 361.0, - "V": 0.04 + "V": 85.0, + "T": 3.0 }, { - "T": 366.0, - "V": 0.02 + "V": 86.0, + "T": 4.0 }, { - "T": 371.0, - "V": 0.04 + "V": 85.0, + "T": 5.0 }, { - "T": 376.0, - "V": 0.03 + "V": 45.0, + "T": 6.0 }, { - "T": 381.0, - "V": 0.03 + "V": 14.0, + "T": 7.0 }, { - "T": 386.0, - "V": 0.02 + "V": 14.0, + "T": 8.0 + } + ] + } + }, + { + "ScenarioId": "gcperfsim-mt-throughput-moderate", + "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, moderate compute delay)", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 9.7851748, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 4709.166991173271, + "TotalAllocatedBytes": 48318405328.0, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 48710533120.0, + "PeakWorkingSetBytes": 48710533120.0, + "HeapSizeBytes": 51136954368.0, + "TotalCommittedBytes": 49928994816.0, + "GcName": "ZeroGC", + "TagbUsed": 45.0 + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 7 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 7 + }, + "WorkingSetStats": { + "Avg": 31244754944.0, + "P50": 29036789760.0, + "P90": 48710533120.0, + "P99": 48710533120.0, + "Max": 48710533120.0, + "Min": 11669245952.0, + "Count": 8 + }, + "AllocRateMBStats": { + "Avg": 5055.971106392996, + "P50": 5312.0, + "P90": 5632.0, + "P99": 5632.0, + "Max": 5632.0, + "Min": 3199.9190979003906, + "Count": 7 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ + { + "V": 0.0, + "T": 1.0 }, { - "T": 391.0, - "V": 0.04 + "V": 0.0, + "T": 2.0 }, { - "T": 396.0, - "V": 0.03 + "V": 0.0, + "T": 3.0 }, { - "T": 401.0, - "V": 0.16 + "V": 0.0, + "T": 4.0 }, { - "T": 406.0, - "V": 0.02 + "V": 0.0, + "T": 5.0 }, { - "T": 411.0, - "V": 0.04 + "V": 0.0, + "T": 6.0 }, { - "T": 416.0, - "V": 0.04 + "V": 0.0, + "T": 7.0 + } + ], + "PauseTimeMs": [ + { + "V": 0.0, + "T": 1.0 }, { - "T": 421.0, - "V": 0.04 + "V": 0.0, + "T": 2.0 }, { - "T": 426.0, - "V": 0.02 + "V": 0.0, + "T": 3.0 }, { - "T": 431.0, - "V": 0.03 + "V": 0.0, + "T": 4.0 }, { - "T": 436.0, - "V": 0.04 + "V": 0.0, + "T": 5.0 }, { - "T": 441.0, - "V": 0.05 + "V": 0.0, + "T": 6.0 }, { - "T": 446.0, - "V": 0.05 + "V": 0.0, + "T": 7.0 + } + ], + "WorkingSetMB": [ + { + "V": 11128.66, + "T": 0.0 }, { - "T": 451.0, - "V": 0.03 + "V": 16610.55, + "T": 1.0 }, { - "T": 456.0, - "V": 0.02 + "V": 22098.92, + "T": 2.0 }, { - "T": 461.0, - "V": 0.03 + "V": 27691.64, + "T": 3.0 }, { - "T": 466.0, - "V": 0.05 + "V": 32969.65, + "T": 4.0 }, { - "T": 471.0, - "V": 0.03 + "V": 38148.93, + "T": 5.0 }, { - "T": 476.0, - "V": 0.04 + "V": 43276.23, + "T": 6.0 }, { - "T": 481.0, - "V": 0.04 + "V": 46453.98, + "T": 7.0 + } + ], + "AllocRateMB": [ + { + "V": 5440.0, + "T": 1.0 }, { - "T": 486.0, - "V": 0.04 + "V": 5504.0, + "T": 2.0 }, { - "T": 491.0, - "V": 0.04 + "V": 5632.0, + "T": 3.0 }, { - "T": 496.0, - "V": 0.03 + "V": 5184.0, + "T": 4.0 }, { - "T": 501.0, - "V": 0.03 + "V": 5312.0, + "T": 5.0 }, { - "T": 506.0, - "V": 0.04 + "V": 5119.88, + "T": 6.0 }, { - "T": 511.0, - "V": 0.03 + "V": 3199.92, + "T": 7.0 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ + { + "V": 0.0, + "T": 1.0 }, { - "T": 516.0, - "V": 0.02 + "V": 0.0, + "T": 2.0 }, { - "T": 521.0, - "V": 0.02 + "V": 0.0, + "T": 3.0 }, { - "T": 526.0, - "V": 0.02 + "V": 0.0, + "T": 4.0 }, { - "T": 531.0, - "V": 0.16 + "V": 0.0, + "T": 5.0 }, { - "T": 536.0, - "V": 0.15 + "V": 0.0, + "T": 6.0 }, { - "T": 541.0, - "V": 0.02 + "V": 0.0, + "T": 7.0 + } + ] + } + }, + { + "ScenarioId": "console", + "ScenarioName": "Console: mixed alloc-heavy CLI workload", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 600.0013409, + "Summary": { + "OperationsTotal": 9476251, + "OpsPerSecondOverall": 15793.716370342867, + "TotalAllocatedBytes": 2147352632, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 1490653184, + "PeakWorkingSetBytes": 1490653184, + "HeapSizeBytes": 2147483648, + "TotalCommittedBytes": 2147483648, + "GcName": "ZeroGC.dll" + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 597 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 597 + }, + "WorkingSetStats": { + "Avg": 772350486.2608696, + "P50": 771301376.0, + "P90": 1346342912.0, + "P99": 1475862528.0, + "Max": 1487847424.0, + "Min": 54665216.0, + "Count": 598 + }, + "AllocRateMBStats": { + "Avg": 2.46545235076342, + "P50": 0.0, + "P90": 0.0, + "P99": 64.0, + "Max": 64.0, + "Min": 0.0, + "Count": 597 + }, + "OpsPerSecStats": { + "Avg": 15793.896321070235, + "P50": 15750.0, + "P90": 16000.0, + "P99": 16000.0, + "Max": 16250.0, + "Min": 15500.0, + "Count": 598 + }, + "TimeSeries": { + "PauseTimePct": [ + { + "V": 0.0, + "T": 1.0 }, { - "T": 546.0, - "V": 0.02 + "V": 0.0, + "T": 5.0 }, { - "T": 551.0, - "V": 0.02 + "V": 0.0, + "T": 9.0 }, { - "T": 556.0, - "V": 0.02 + "V": 0.0, + "T": 13.0 }, { - "T": 561.0, - "V": 0.04 + "V": 0.0, + "T": 17.0 }, { - "T": 566.0, - "V": 0.03 + "V": 0.0, + "T": 21.0 }, { - "T": 571.0, - "V": 0.02 + "V": 0.0, + "T": 25.0 }, { - "T": 576.0, - "V": 0.15 + "V": 0.0, + "T": 29.0 }, { - "T": 581.0, - "V": 0.02 + "V": 0.0, + "T": 33.0 }, { - "T": 586.0, - "V": 0.04 + "V": 0.0, + "T": 37.0 }, { - "T": 591.0, - "V": 0.04 + "V": 0.0, + "T": 41.0 }, { - "T": 596.0, - "V": 0.02 + "V": 0.0, + "T": 45.0 }, { - "T": 601.0, - "V": 0.03 - } - ], - "OpsPerSec": [ - { - "T": 6.0, - "V": 1.0 + "V": 0.0, + "T": 49.0 }, { - "T": 11.0, - "V": 1.0 + "V": 0.0, + "T": 53.0 }, { - "T": 16.0, - "V": 1.0 + "V": 0.0, + "T": 57.0 }, { - "T": 23.0, - "V": 1.0 + "V": 0.0, + "T": 61.0 }, { - "T": 31.0, - "V": 1.0 + "V": 0.0, + "T": 65.0 }, { - "T": 40.0, - "V": 1.0 + "V": 0.0, + "T": 69.0 }, { - "T": 47.0, - "V": 1.0 + "V": 0.0, + "T": 73.0 }, { - "T": 53.0, - "V": 1.0 + "V": 0.0, + "T": 77.0 }, { - "T": 57.0, - "V": 1.0 + "V": 0.0, + "T": 81.0 }, { - "T": 64.0, - "V": 1.0 + "V": 0.0, + "T": 85.0 }, { - "T": 69.0, - "V": 1.0 + "V": 0.0, + "T": 89.0 }, { - "T": 76.0, - "V": 1.0 + "V": 0.0, + "T": 93.0 }, { - "T": 83.0, - "V": 1.0 + "V": 0.0, + "T": 97.0 }, { - "T": 90.0, - "V": 1.0 + "V": 0.0, + "T": 101.0 }, { - "T": 97.0, - "V": 1.0 + "V": 0.0, + "T": 105.0 }, { - "T": 104.0, - "V": 1.0 + "V": 0.0, + "T": 109.0 }, { - "T": 111.0, - "V": 1.0 + "V": 0.0, + "T": 113.0 }, { - "T": 118.0, - "V": 1.0 + "V": 0.0, + "T": 117.0 }, { - "T": 126.0, - "V": 1.0 + "V": 0.0, + "T": 121.0 }, { - "T": 131.0, - "V": 1.0 + "V": 0.0, + "T": 125.0 }, { - "T": 138.0, - "V": 1.0 + "V": 0.0, + "T": 129.0 }, { - "T": 144.0, - "V": 1.0 + "V": 0.0, + "T": 133.0 }, { - "T": 150.0, - "V": 1.0 + "V": 0.0, + "T": 137.0 }, { - "T": 155.0, - "V": 1.0 + "V": 0.0, + "T": 141.0 }, { - "T": 160.0, - "V": 1.0 + "V": 0.0, + "T": 145.0 }, { - "T": 165.0, - "V": 1.0 + "V": 0.0, + "T": 149.0 }, { - "T": 171.0, - "V": 1.0 + "V": 0.0, + "T": 153.0 }, { - "T": 176.0, - "V": 1.0 + "V": 0.0, + "T": 157.0 }, { - "T": 181.0, - "V": 1.0 + "V": 0.0, + "T": 161.0 }, { - "T": 187.0, - "V": 1.0 + "V": 0.0, + "T": 165.0 }, { - "T": 193.0, - "V": 1.0 + "V": 0.0, + "T": 169.0 }, { - "T": 198.0, - "V": 1.0 + "V": 0.0, + "T": 173.0 }, { - "T": 203.0, - "V": 1.0 + "V": 0.0, + "T": 177.0 }, { - "T": 209.0, - "V": 1.0 + "V": 0.0, + "T": 181.0 }, { - "T": 214.0, - "V": 1.0 + "V": 0.0, + "T": 185.0 }, { - "T": 220.0, - "V": 1.0 + "V": 0.0, + "T": 189.0 }, { - "T": 225.0, - "V": 1.0 + "V": 0.0, + "T": 193.0 }, { - "T": 231.0, - "V": 1.0 + "V": 0.0, + "T": 197.0 }, { - "T": 236.0, - "V": 1.0 + "V": 0.0, + "T": 201.0 }, { - "T": 242.0, - "V": 1.0 + "V": 0.0, + "T": 205.0 }, { - "T": 248.0, - "V": 1.0 + "V": 0.0, + "T": 209.0 }, { - "T": 255.0, - "V": 1.0 + "V": 0.0, + "T": 213.0 }, { - "T": 260.0, - "V": 1.0 + "V": 0.0, + "T": 217.0 }, { - "T": 266.0, - "V": 1.0 + "V": 0.0, + "T": 221.0 }, { - "T": 271.0, - "V": 1.0 + "V": 0.0, + "T": 225.0 }, { - "T": 276.0, - "V": 1.0 + "V": 0.0, + "T": 229.0 }, { - "T": 282.0, - "V": 1.0 + "V": 0.0, + "T": 233.0 }, { - "T": 287.0, - "V": 1.0 + "V": 0.0, + "T": 237.0 }, { - "T": 292.0, - "V": 1.0 + "V": 0.0, + "T": 241.0 }, { - "T": 298.0, - "V": 1.0 + "V": 0.0, + "T": 245.0 }, { - "T": 303.0, - "V": 1.0 + "V": 0.0, + "T": 249.0 }, { - "T": 309.0, - "V": 1.0 + "V": 0.0, + "T": 253.0 }, { - "T": 314.0, - "V": 1.0 + "V": 0.0, + "T": 257.0 }, { - "T": 319.0, - "V": 1.0 + "V": 0.0, + "T": 261.0 }, { - "T": 324.0, - "V": 1.0 + "V": 0.0, + "T": 265.0 }, { - "T": 330.0, - "V": 1.0 + "V": 0.0, + "T": 269.0 }, { - "T": 336.0, - "V": 1.0 + "V": 0.0, + "T": 273.0 }, { - "T": 342.0, - "V": 1.0 + "V": 0.0, + "T": 277.0 }, { - "T": 348.0, - "V": 1.0 + "V": 0.0, + "T": 281.0 }, { - "T": 353.0, - "V": 1.0 + "V": 0.0, + "T": 285.0 }, { - "T": 358.0, - "V": 1.0 + "V": 0.0, + "T": 289.0 }, { - "T": 363.0, - "V": 1.0 + "V": 0.0, + "T": 293.0 }, { - "T": 369.0, - "V": 1.0 + "V": 0.0, + "T": 297.0 }, { - "T": 374.0, - "V": 1.0 + "V": 0.0, + "T": 301.0 }, { - "T": 379.0, - "V": 1.0 + "V": 0.0, + "T": 305.0 }, { - "T": 385.0, - "V": 1.0 + "V": 0.0, + "T": 309.0 }, { - "T": 390.0, - "V": 1.0 + "V": 0.0, + "T": 313.0 }, { - "T": 395.0, - "V": 1.0 + "V": 0.0, + "T": 317.0 }, { - "T": 401.0, - "V": 1.0 + "V": 0.0, + "T": 321.0 }, { - "T": 405.0, - "V": 1.0 + "V": 0.0, + "T": 325.0 }, { - "T": 413.0, - "V": 1.0 + "V": 0.0, + "T": 329.0 }, { - "T": 418.0, - "V": 1.0 + "V": 0.0, + "T": 333.0 }, { - "T": 423.0, - "V": 1.0 + "V": 0.0, + "T": 337.0 }, { - "T": 429.0, - "V": 1.0 + "V": 0.0, + "T": 341.0 }, { - "T": 434.0, - "V": 1.0 + "V": 0.0, + "T": 345.0 }, { - "T": 439.0, - "V": 1.0 + "V": 0.0, + "T": 349.0 }, { - "T": 444.0, - "V": 1.0 + "V": 0.0, + "T": 353.0 }, { - "T": 449.0, - "V": 1.0 + "V": 0.0, + "T": 357.0 }, { - "T": 453.0, - "V": 1.0 + "V": 0.0, + "T": 361.0 }, { - "T": 459.0, - "V": 1.0 + "V": 0.0, + "T": 365.0 }, { - "T": 464.0, - "V": 1.0 + "V": 0.0, + "T": 369.0 }, { - "T": 469.0, - "V": 1.0 + "V": 0.0, + "T": 373.0 }, { - "T": 474.0, - "V": 1.0 + "V": 0.0, + "T": 377.0 }, { - "T": 478.0, - "V": 1.0 + "V": 0.0, + "T": 381.0 }, { - "T": 483.0, - "V": 1.0 + "V": 0.0, + "T": 385.0 }, { - "T": 489.0, - "V": 1.0 + "V": 0.0, + "T": 389.0 }, { - "T": 494.0, - "V": 1.0 + "V": 0.0, + "T": 393.0 }, { - "T": 499.0, - "V": 1.0 + "V": 0.0, + "T": 397.0 }, { - "T": 503.0, - "V": 1.0 + "V": 0.0, + "T": 401.0 }, { - "T": 508.0, - "V": 1.0 + "V": 0.0, + "T": 405.0 }, { - "T": 513.0, - "V": 1.0 + "V": 0.0, + "T": 409.0 }, { - "T": 519.0, - "V": 1.0 + "V": 0.0, + "T": 413.0 }, { - "T": 525.0, - "V": 1.0 + "V": 0.0, + "T": 417.0 }, { - "T": 531.0, - "V": 1.0 + "V": 0.0, + "T": 421.0 }, { - "T": 536.0, - "V": 1.0 + "V": 0.0, + "T": 425.0 }, { - "T": 544.0, - "V": 1.0 + "V": 0.0, + "T": 429.0 }, { - "T": 552.0, - "V": 1.0 + "V": 0.0, + "T": 433.0 }, { - "T": 560.0, - "V": 1.0 + "V": 0.0, + "T": 437.0 }, { - "T": 568.0, - "V": 1.0 + "V": 0.0, + "T": 441.0 }, { - "T": 576.0, - "V": 1.0 + "V": 0.0, + "T": 445.0 }, { - "T": 583.0, - "V": 1.0 + "V": 0.0, + "T": 449.0 }, { - "T": 588.0, - "V": 1.0 + "V": 0.0, + "T": 453.0 }, { - "T": 592.0, - "V": 1.0 + "V": 0.0, + "T": 457.0 }, { - "T": 597.0, - "V": 1.0 + "V": 0.0, + "T": 461.0 }, { - "T": 602.0, - "V": 1.0 - } - ], - "Gen0PerSec": [ - { - "T": 1.0, - "V": 0.0 + "V": 0.0, + "T": 465.0 }, { - "T": 6.0, - "V": 0.0 + "V": 0.0, + "T": 469.0 }, { - "T": 11.0, - "V": 0.0 + "V": 0.0, + "T": 473.0 }, { - "T": 16.0, - "V": 0.0 + "V": 0.0, + "T": 477.0 }, { - "T": 21.0, - "V": 0.0 + "V": 0.0, + "T": 481.0 }, { - "T": 26.0, - "V": 0.0 + "V": 0.0, + "T": 485.0 }, { - "T": 31.0, - "V": 0.0 + "V": 0.0, + "T": 489.0 }, { - "T": 36.0, - "V": 0.0 + "V": 0.0, + "T": 493.0 }, { - "T": 41.0, - "V": 0.0 + "V": 0.0, + "T": 497.0 }, { - "T": 46.0, - "V": 0.0 + "V": 0.0, + "T": 501.0 }, { - "T": 51.0, - "V": 0.0 + "V": 0.0, + "T": 505.0 }, { - "T": 56.0, - "V": 0.0 + "V": 0.0, + "T": 509.0 }, { - "T": 61.0, - "V": 0.0 + "V": 0.0, + "T": 513.0 }, { - "T": 66.0, - "V": 0.0 + "V": 0.0, + "T": 517.0 }, { - "T": 71.0, - "V": 0.0 + "V": 0.0, + "T": 521.0 }, { - "T": 76.0, - "V": 0.0 + "V": 0.0, + "T": 525.0 }, { - "T": 81.0, - "V": 0.0 + "V": 0.0, + "T": 529.0 }, { - "T": 86.0, - "V": 0.0 + "V": 0.0, + "T": 533.0 }, { - "T": 91.0, - "V": 0.0 + "V": 0.0, + "T": 537.0 }, { - "T": 96.0, - "V": 0.0 + "V": 0.0, + "T": 541.0 }, { - "T": 101.0, - "V": 0.0 + "V": 0.0, + "T": 545.0 }, { - "T": 106.0, - "V": 0.0 + "V": 0.0, + "T": 549.0 }, { - "T": 111.0, - "V": 0.0 + "V": 0.0, + "T": 553.0 }, { - "T": 116.0, - "V": 0.0 + "V": 0.0, + "T": 557.0 }, { - "T": 121.0, - "V": 0.0 + "V": 0.0, + "T": 561.0 }, { - "T": 126.0, - "V": 0.0 + "V": 0.0, + "T": 565.0 }, { - "T": 131.0, - "V": 0.0 + "V": 0.0, + "T": 569.0 }, { - "T": 136.0, - "V": 0.0 + "V": 0.0, + "T": 573.0 }, { - "T": 141.0, - "V": 0.0 + "V": 0.0, + "T": 577.0 }, { - "T": 146.0, - "V": 0.0 + "V": 0.0, + "T": 581.0 }, { - "T": 151.0, - "V": 0.0 + "V": 0.0, + "T": 585.0 }, { - "T": 156.0, - "V": 0.0 + "V": 0.0, + "T": 589.0 }, { - "T": 161.0, - "V": 0.0 + "V": 0.0, + "T": 593.0 }, { - "T": 166.0, - "V": 0.0 - }, + "V": 0.0, + "T": 597.0 + } + ], + "PauseTimeMs": [ { - "T": 171.0, - "V": 0.0 + "V": 0.0, + "T": 1.0 }, { - "T": 176.0, - "V": 0.0 + "V": 0.0, + "T": 5.0 }, { - "T": 181.0, - "V": 0.0 + "V": 0.0, + "T": 9.0 }, { - "T": 186.0, - "V": 0.0 + "V": 0.0, + "T": 13.0 }, { - "T": 191.0, - "V": 0.0 + "V": 0.0, + "T": 17.0 }, { - "T": 196.0, - "V": 0.0 + "V": 0.0, + "T": 21.0 }, { - "T": 201.0, - "V": 0.0 + "V": 0.0, + "T": 25.0 }, { - "T": 206.0, - "V": 0.0 + "V": 0.0, + "T": 29.0 }, { - "T": 211.0, - "V": 0.0 + "V": 0.0, + "T": 33.0 }, { - "T": 216.0, - "V": 0.0 + "V": 0.0, + "T": 37.0 }, { - "T": 221.0, - "V": 0.0 + "V": 0.0, + "T": 41.0 }, { - "T": 226.0, - "V": 0.0 + "V": 0.0, + "T": 45.0 }, { - "T": 231.0, - "V": 0.0 + "V": 0.0, + "T": 49.0 }, { - "T": 236.0, - "V": 0.0 + "V": 0.0, + "T": 53.0 }, { - "T": 241.0, - "V": 0.0 + "V": 0.0, + "T": 57.0 }, { - "T": 246.0, - "V": 0.0 + "V": 0.0, + "T": 61.0 }, { - "T": 251.0, - "V": 0.0 + "V": 0.0, + "T": 65.0 }, { - "T": 256.0, - "V": 0.0 + "V": 0.0, + "T": 69.0 }, { - "T": 261.0, - "V": 0.0 + "V": 0.0, + "T": 73.0 }, { - "T": 266.0, - "V": 0.0 + "V": 0.0, + "T": 77.0 }, { - "T": 271.0, - "V": 0.0 + "V": 0.0, + "T": 81.0 }, { - "T": 276.0, - "V": 0.0 + "V": 0.0, + "T": 85.0 }, { - "T": 281.0, - "V": 0.0 + "V": 0.0, + "T": 89.0 }, { - "T": 286.0, - "V": 0.0 + "V": 0.0, + "T": 93.0 }, { - "T": 291.0, - "V": 0.0 + "V": 0.0, + "T": 97.0 }, { - "T": 296.0, - "V": 0.0 + "V": 0.0, + "T": 101.0 }, { - "T": 301.0, - "V": 0.0 + "V": 0.0, + "T": 105.0 }, { - "T": 306.0, - "V": 0.0 + "V": 0.0, + "T": 109.0 }, { - "T": 311.0, - "V": 0.0 + "V": 0.0, + "T": 113.0 }, { - "T": 316.0, - "V": 0.0 + "V": 0.0, + "T": 117.0 }, { - "T": 321.0, - "V": 0.0 + "V": 0.0, + "T": 121.0 }, { - "T": 326.0, - "V": 0.0 + "V": 0.0, + "T": 125.0 }, { - "T": 331.0, - "V": 0.0 + "V": 0.0, + "T": 129.0 }, { - "T": 336.0, - "V": 0.0 + "V": 0.0, + "T": 133.0 }, { - "T": 341.0, - "V": 0.0 + "V": 0.0, + "T": 137.0 }, { - "T": 346.0, - "V": 0.0 + "V": 0.0, + "T": 141.0 }, { - "T": 351.0, - "V": 0.0 + "V": 0.0, + "T": 145.0 }, { - "T": 356.0, - "V": 0.0 + "V": 0.0, + "T": 149.0 }, { - "T": 361.0, - "V": 0.0 + "V": 0.0, + "T": 153.0 }, { - "T": 366.0, - "V": 0.0 + "V": 0.0, + "T": 157.0 }, { - "T": 371.0, - "V": 0.0 + "V": 0.0, + "T": 161.0 }, { - "T": 376.0, - "V": 0.0 + "V": 0.0, + "T": 165.0 }, { - "T": 381.0, - "V": 0.0 + "V": 0.0, + "T": 169.0 }, { - "T": 386.0, - "V": 0.0 + "V": 0.0, + "T": 173.0 }, { - "T": 391.0, - "V": 0.0 + "V": 0.0, + "T": 177.0 }, { - "T": 396.0, - "V": 0.0 + "V": 0.0, + "T": 181.0 }, { - "T": 401.0, - "V": 0.0 + "V": 0.0, + "T": 185.0 }, { - "T": 406.0, - "V": 0.0 + "V": 0.0, + "T": 189.0 }, { - "T": 411.0, - "V": 0.0 + "V": 0.0, + "T": 193.0 }, { - "T": 416.0, - "V": 0.0 + "V": 0.0, + "T": 197.0 }, { - "T": 421.0, - "V": 0.0 + "V": 0.0, + "T": 201.0 }, { - "T": 426.0, - "V": 0.0 + "V": 0.0, + "T": 205.0 }, { - "T": 431.0, - "V": 0.0 + "V": 0.0, + "T": 209.0 }, { - "T": 436.0, - "V": 0.0 + "V": 0.0, + "T": 213.0 }, { - "T": 441.0, - "V": 0.0 + "V": 0.0, + "T": 217.0 }, { - "T": 446.0, - "V": 0.0 + "V": 0.0, + "T": 221.0 }, { - "T": 451.0, - "V": 0.0 + "V": 0.0, + "T": 225.0 }, { - "T": 456.0, - "V": 0.0 + "V": 0.0, + "T": 229.0 }, { - "T": 461.0, - "V": 0.0 + "V": 0.0, + "T": 233.0 }, { - "T": 466.0, - "V": 0.0 + "V": 0.0, + "T": 237.0 }, { - "T": 471.0, - "V": 0.0 + "V": 0.0, + "T": 241.0 }, { - "T": 476.0, - "V": 0.0 + "V": 0.0, + "T": 245.0 }, { - "T": 481.0, - "V": 0.0 + "V": 0.0, + "T": 249.0 }, { - "T": 486.0, - "V": 0.0 + "V": 0.0, + "T": 253.0 }, { - "T": 491.0, - "V": 0.0 + "V": 0.0, + "T": 257.0 }, { - "T": 496.0, - "V": 0.0 + "V": 0.0, + "T": 261.0 }, { - "T": 501.0, - "V": 0.0 + "V": 0.0, + "T": 265.0 }, { - "T": 506.0, - "V": 0.0 + "V": 0.0, + "T": 269.0 }, { - "T": 511.0, - "V": 0.0 + "V": 0.0, + "T": 273.0 }, { - "T": 516.0, - "V": 0.0 + "V": 0.0, + "T": 277.0 }, { - "T": 521.0, - "V": 0.0 + "V": 0.0, + "T": 281.0 }, { - "T": 526.0, - "V": 1.0 + "V": 0.0, + "T": 285.0 }, { - "T": 531.0, - "V": 0.0 + "V": 0.0, + "T": 289.0 }, { - "T": 536.0, - "V": 0.0 + "V": 0.0, + "T": 293.0 }, { - "T": 541.0, - "V": 0.0 + "V": 0.0, + "T": 297.0 }, { - "T": 546.0, - "V": 0.0 + "V": 0.0, + "T": 301.0 }, { - "T": 551.0, - "V": 0.0 + "V": 0.0, + "T": 305.0 }, { - "T": 556.0, - "V": 0.0 + "V": 0.0, + "T": 309.0 }, { - "T": 561.0, - "V": 0.0 + "V": 0.0, + "T": 313.0 }, { - "T": 566.0, - "V": 0.0 + "V": 0.0, + "T": 317.0 }, { - "T": 571.0, - "V": 0.0 + "V": 0.0, + "T": 321.0 }, { - "T": 576.0, - "V": 0.0 + "V": 0.0, + "T": 325.0 }, { - "T": 581.0, - "V": 0.0 + "V": 0.0, + "T": 329.0 }, { - "T": 586.0, - "V": 0.0 + "V": 0.0, + "T": 333.0 }, { - "T": 591.0, - "V": 0.0 + "V": 0.0, + "T": 337.0 }, { - "T": 596.0, - "V": 0.0 + "V": 0.0, + "T": 341.0 }, { - "T": 601.0, - "V": 0.0 - } - ] - } - }, - { - "ScenarioId": "dotllm-serve-1_5b", - "ScenarioName": "dotLLM: 1.5B model (~1GB, Q4_K_M), few-hundred-token context, zero-alloc-inference HTTP server", - "GcModeId": "server", - "GcModeName": "Server GC", - "DurationSeconds": 600, - "Summary": { - "OperationsTotal": 117.0, - "OpsPerSecondOverall": 0.195, - "TotalAllocatedBytes": 36622640.0, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 2456768512.0, - "PeakWorkingSetBytes": 2456768512.0, - "HeapSizeBytes": null, - "TotalCommittedBytes": 105574400.0, - "GcName": "Server GC" - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 604 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 604 - }, - "WorkingSetStats": { - "Avg": 2436090312.9917355, - "P50": 2438266880.0, - "P90": 2453254144.0, - "P99": 2456567808.0, - "Max": 2456768512.0, - "Min": 2408353792.0, - "Count": 605 - }, - "AllocRateMBStats": { - "Avg": 0.05782462113740428, - "P50": 0.03488922119140625, - "P90": 0.1597900390625, - "P99": 0.2243499755859375, - "Max": 0.2586212158203125, - "Min": 0.0134124755859375, - "Count": 604 - }, - "OpsPerSecStats": { - "Avg": 1.0, - "P50": 1.0, - "P90": 1.0, - "P99": 1.0, - "Max": 1.0, - "Min": 1.0, - "Count": 117 - }, - "TimeSeries": { - "PauseTimePct": [ + "V": 0.0, + "T": 345.0 + }, { - "T": 1.0, - "V": 0.0 + "V": 0.0, + "T": 349.0 }, { - "T": 6.0, - "V": 0.0 + "V": 0.0, + "T": 353.0 }, { - "T": 11.0, - "V": 0.0 + "V": 0.0, + "T": 357.0 }, { - "T": 16.0, - "V": 0.0 + "V": 0.0, + "T": 361.0 }, { - "T": 21.0, - "V": 0.0 + "V": 0.0, + "T": 365.0 }, { - "T": 26.0, - "V": 0.0 + "V": 0.0, + "T": 369.0 }, { - "T": 31.0, - "V": 0.0 + "V": 0.0, + "T": 373.0 }, { - "T": 36.0, - "V": 0.0 + "V": 0.0, + "T": 377.0 }, { - "T": 41.0, - "V": 0.0 + "V": 0.0, + "T": 381.0 }, { - "T": 46.0, - "V": 0.0 + "V": 0.0, + "T": 385.0 }, { - "T": 51.0, - "V": 0.0 + "V": 0.0, + "T": 389.0 }, { - "T": 56.0, - "V": 0.0 + "V": 0.0, + "T": 393.0 }, { - "T": 61.0, - "V": 0.0 + "V": 0.0, + "T": 397.0 }, { - "T": 66.0, - "V": 0.0 + "V": 0.0, + "T": 401.0 }, { - "T": 71.0, - "V": 0.0 + "V": 0.0, + "T": 405.0 }, { - "T": 76.0, - "V": 0.0 + "V": 0.0, + "T": 409.0 }, { - "T": 81.0, - "V": 0.0 + "V": 0.0, + "T": 413.0 }, { - "T": 86.0, - "V": 0.0 + "V": 0.0, + "T": 417.0 }, { - "T": 91.0, - "V": 0.0 + "V": 0.0, + "T": 421.0 }, { - "T": 96.0, - "V": 0.0 + "V": 0.0, + "T": 425.0 }, { - "T": 101.0, - "V": 0.0 + "V": 0.0, + "T": 429.0 }, { - "T": 106.0, - "V": 0.0 + "V": 0.0, + "T": 433.0 }, { - "T": 111.0, - "V": 0.0 + "V": 0.0, + "T": 437.0 }, { - "T": 116.0, - "V": 0.0 + "V": 0.0, + "T": 441.0 }, { - "T": 121.0, - "V": 0.0 + "V": 0.0, + "T": 445.0 }, { - "T": 126.0, - "V": 0.0 + "V": 0.0, + "T": 449.0 }, { - "T": 131.0, - "V": 0.0 + "V": 0.0, + "T": 453.0 }, { - "T": 136.0, - "V": 0.0 + "V": 0.0, + "T": 457.0 }, { - "T": 141.0, - "V": 0.0 + "V": 0.0, + "T": 461.0 }, { - "T": 146.0, - "V": 0.0 + "V": 0.0, + "T": 465.0 }, { - "T": 151.0, - "V": 0.0 + "V": 0.0, + "T": 469.0 }, { - "T": 156.0, - "V": 0.0 + "V": 0.0, + "T": 473.0 }, { - "T": 161.0, - "V": 0.0 + "V": 0.0, + "T": 477.0 }, { - "T": 166.0, - "V": 0.0 + "V": 0.0, + "T": 481.0 }, { - "T": 171.0, - "V": 0.0 + "V": 0.0, + "T": 485.0 }, { - "T": 176.0, - "V": 0.0 + "V": 0.0, + "T": 489.0 }, { - "T": 181.0, - "V": 0.0 + "V": 0.0, + "T": 493.0 }, { - "T": 186.0, - "V": 0.0 + "V": 0.0, + "T": 497.0 }, { - "T": 191.0, - "V": 0.0 + "V": 0.0, + "T": 501.0 }, { - "T": 196.0, - "V": 0.0 + "V": 0.0, + "T": 505.0 }, { - "T": 201.0, - "V": 0.0 + "V": 0.0, + "T": 509.0 }, { - "T": 206.0, - "V": 0.0 + "V": 0.0, + "T": 513.0 }, { - "T": 211.0, - "V": 0.0 + "V": 0.0, + "T": 517.0 }, { - "T": 216.0, - "V": 0.0 + "V": 0.0, + "T": 521.0 }, { - "T": 221.0, - "V": 0.0 + "V": 0.0, + "T": 525.0 }, { - "T": 226.0, - "V": 0.0 + "V": 0.0, + "T": 529.0 }, { - "T": 231.0, - "V": 0.0 + "V": 0.0, + "T": 533.0 }, { - "T": 236.0, - "V": 0.0 + "V": 0.0, + "T": 537.0 }, { - "T": 241.0, - "V": 0.0 + "V": 0.0, + "T": 541.0 }, { - "T": 246.0, - "V": 0.0 + "V": 0.0, + "T": 545.0 }, { - "T": 251.0, - "V": 0.0 + "V": 0.0, + "T": 549.0 }, { - "T": 256.0, - "V": 0.0 + "V": 0.0, + "T": 553.0 }, { - "T": 261.0, - "V": 0.0 + "V": 0.0, + "T": 557.0 }, { - "T": 266.0, - "V": 0.0 + "V": 0.0, + "T": 561.0 }, { - "T": 271.0, - "V": 0.0 + "V": 0.0, + "T": 565.0 }, { - "T": 276.0, - "V": 0.0 + "V": 0.0, + "T": 569.0 }, { - "T": 281.0, - "V": 0.0 + "V": 0.0, + "T": 573.0 }, { - "T": 286.0, - "V": 0.0 + "V": 0.0, + "T": 577.0 }, { - "T": 291.0, - "V": 0.0 + "V": 0.0, + "T": 581.0 }, { - "T": 296.0, - "V": 0.0 + "V": 0.0, + "T": 585.0 }, { - "T": 301.0, - "V": 0.0 + "V": 0.0, + "T": 589.0 }, { - "T": 306.0, - "V": 0.0 + "V": 0.0, + "T": 593.0 }, { - "T": 311.0, - "V": 0.0 - }, + "V": 0.0, + "T": 597.0 + } + ], + "WorkingSetMB": [ { - "T": 316.0, - "V": 0.0 + "V": 52.13, + "T": 0.0 }, { - "T": 321.0, - "V": 0.0 + "V": 62.88, + "T": 4.0 }, { - "T": 326.0, - "V": 0.0 + "V": 72.15, + "T": 8.0 }, { - "T": 331.0, - "V": 0.0 + "V": 81.52, + "T": 12.0 }, { - "T": 336.0, - "V": 0.0 + "V": 90.69, + "T": 16.0 }, { - "T": 341.0, - "V": 0.0 + "V": 99.9, + "T": 20.0 }, { - "T": 346.0, - "V": 0.0 + "V": 109.08, + "T": 24.0 }, { - "T": 351.0, - "V": 0.0 + "V": 118.16, + "T": 28.0 }, { - "T": 356.0, - "V": 0.0 + "V": 127.54, + "T": 32.0 }, { - "T": 361.0, - "V": 0.0 + "V": 136.53, + "T": 36.0 }, { - "T": 366.0, - "V": 0.0 + "V": 145.72, + "T": 40.0 }, { - "T": 371.0, - "V": 0.0 + "V": 154.84, + "T": 44.0 }, { - "T": 376.0, - "V": 0.0 + "V": 164.0, + "T": 48.0 }, { - "T": 381.0, - "V": 0.0 + "V": 173.09, + "T": 52.0 }, { - "T": 386.0, - "V": 0.0 + "V": 182.31, + "T": 56.0 }, { - "T": 391.0, - "V": 0.0 + "V": 191.42, + "T": 60.0 }, { - "T": 396.0, - "V": 0.0 + "V": 200.65, + "T": 64.0 }, { - "T": 401.0, - "V": 0.0 + "V": 209.62, + "T": 68.0 }, { - "T": 406.0, - "V": 0.0 + "V": 218.84, + "T": 72.0 }, { - "T": 411.0, - "V": 0.0 + "V": 227.94, + "T": 76.0 }, { - "T": 416.0, - "V": 0.0 + "V": 237.04, + "T": 80.0 }, { - "T": 421.0, - "V": 0.0 + "V": 246.14, + "T": 84.0 }, { - "T": 426.0, - "V": 0.0 + "V": 255.32, + "T": 88.0 }, { - "T": 431.0, - "V": 0.0 + "V": 264.5, + "T": 92.0 }, { - "T": 436.0, - "V": 0.0 + "V": 273.66, + "T": 96.0 }, { - "T": 441.0, - "V": 0.0 + "V": 282.75, + "T": 100.0 }, { - "T": 446.0, - "V": 0.0 + "V": 291.91, + "T": 104.0 }, { - "T": 451.0, - "V": 0.0 + "V": 301.07, + "T": 108.0 }, { - "T": 456.0, - "V": 0.0 + "V": 310.16, + "T": 112.0 }, { - "T": 461.0, - "V": 0.0 + "V": 319.45, + "T": 116.0 }, { - "T": 466.0, - "V": 0.0 + "V": 328.47, + "T": 120.0 }, { - "T": 471.0, - "V": 0.0 + "V": 337.63, + "T": 124.0 }, { - "T": 476.0, - "V": 0.0 + "V": 346.79, + "T": 128.0 }, { - "T": 481.0, - "V": 0.0 + "V": 355.88, + "T": 132.0 }, { - "T": 486.0, - "V": 0.0 + "V": 365.11, + "T": 136.0 }, { - "T": 491.0, - "V": 0.0 + "V": 374.26, + "T": 140.0 }, { - "T": 496.0, - "V": 0.0 + "V": 383.41, + "T": 144.0 }, { - "T": 501.0, - "V": 0.0 + "V": 392.57, + "T": 148.0 }, { - "T": 506.0, - "V": 0.0 + "V": 401.66, + "T": 152.0 }, { - "T": 511.0, - "V": 0.0 + "V": 410.76, + "T": 156.0 }, { - "T": 516.0, - "V": 0.0 + "V": 419.92, + "T": 160.0 }, { - "T": 521.0, - "V": 0.0 + "V": 429.14, + "T": 164.0 }, { - "T": 526.0, - "V": 0.0 + "V": 438.23, + "T": 168.0 }, { - "T": 531.0, - "V": 0.0 + "V": 447.52, + "T": 172.0 }, { - "T": 536.0, - "V": 0.0 + "V": 456.6, + "T": 176.0 }, { - "T": 541.0, - "V": 0.0 + "V": 465.7, + "T": 180.0 }, { - "T": 546.0, - "V": 0.0 + "V": 474.81, + "T": 184.0 }, { - "T": 551.0, - "V": 0.0 + "V": 483.93, + "T": 188.0 }, { - "T": 556.0, - "V": 0.0 + "V": 493.11, + "T": 192.0 }, { - "T": 561.0, - "V": 0.0 + "V": 502.26, + "T": 196.0 }, { - "T": 566.0, - "V": 0.0 + "V": 511.36, + "T": 200.0 }, { - "T": 571.0, - "V": 0.0 + "V": 520.51, + "T": 204.0 }, { - "T": 576.0, - "V": 0.0 + "V": 529.66, + "T": 208.0 }, { - "T": 581.0, - "V": 0.0 + "V": 538.83, + "T": 212.0 }, { - "T": 586.0, - "V": 0.0 + "V": 547.85, + "T": 216.0 }, { - "T": 591.0, - "V": 0.0 + "V": 557.08, + "T": 220.0 }, { - "T": 596.0, - "V": 0.0 + "V": 566.17, + "T": 224.0 }, { - "T": 601.0, - "V": 0.0 - } - ], - "PauseTimeMs": [ + "V": 575.39, + "T": 228.0 + }, { - "T": 1.0, - "V": 0.0 + "V": 584.61, + "T": 232.0 }, { - "T": 6.0, - "V": 0.0 + "V": 593.7, + "T": 236.0 }, { - "T": 11.0, - "V": 0.0 + "V": 602.86, + "T": 240.0 }, { - "T": 16.0, - "V": 0.0 + "V": 612.02, + "T": 244.0 }, { - "T": 21.0, - "V": 0.0 + "V": 621.11, + "T": 248.0 }, { - "T": 26.0, - "V": 0.0 + "V": 630.27, + "T": 252.0 }, { - "T": 31.0, - "V": 0.0 + "V": 639.36, + "T": 256.0 }, { - "T": 36.0, - "V": 0.0 + "V": 648.51, + "T": 260.0 }, { - "T": 41.0, - "V": 0.0 + "V": 657.67, + "T": 264.0 }, { - "T": 46.0, - "V": 0.0 + "V": 666.83, + "T": 268.0 }, { - "T": 51.0, - "V": 0.0 + "V": 675.93, + "T": 272.0 }, { - "T": 56.0, - "V": 0.0 + "V": 685.03, + "T": 276.0 }, { - "T": 61.0, - "V": 0.0 + "V": 694.22, + "T": 280.0 }, { - "T": 66.0, - "V": 0.0 + "V": 703.32, + "T": 284.0 }, { - "T": 71.0, - "V": 0.0 + "V": 712.55, + "T": 288.0 }, { - "T": 76.0, - "V": 0.0 + "V": 721.59, + "T": 292.0 }, { - "T": 81.0, - "V": 0.0 + "V": 730.73, + "T": 296.0 }, { - "T": 86.0, - "V": 0.0 + "V": 740.12, + "T": 300.0 }, { - "T": 91.0, - "V": 0.0 + "V": 749.2, + "T": 304.0 }, { - "T": 96.0, - "V": 0.0 + "V": 758.37, + "T": 308.0 }, { - "T": 101.0, - "V": 0.0 + "V": 767.52, + "T": 312.0 }, { - "T": 106.0, - "V": 0.0 + "V": 776.68, + "T": 316.0 }, { - "T": 111.0, - "V": 0.0 + "V": 785.83, + "T": 320.0 }, { - "T": 116.0, - "V": 0.0 + "V": 794.99, + "T": 324.0 }, { - "T": 121.0, - "V": 0.0 + "V": 804.08, + "T": 328.0 }, { - "T": 126.0, - "V": 0.0 + "V": 813.3, + "T": 332.0 }, { - "T": 131.0, - "V": 0.0 + "V": 822.34, + "T": 336.0 }, { - "T": 136.0, - "V": 0.0 + "V": 831.48, + "T": 340.0 }, { - "T": 141.0, - "V": 0.0 + "V": 840.77, + "T": 344.0 }, { - "T": 146.0, - "V": 0.0 + "V": 849.87, + "T": 348.0 }, { - "T": 151.0, - "V": 0.0 + "V": 858.96, + "T": 352.0 }, { - "T": 156.0, - "V": 0.0 + "V": 868.11, + "T": 356.0 }, { - "T": 161.0, - "V": 0.0 + "V": 877.27, + "T": 360.0 }, { - "T": 166.0, - "V": 0.0 + "V": 886.49, + "T": 364.0 }, { - "T": 171.0, - "V": 0.0 + "V": 895.52, + "T": 368.0 }, { - "T": 176.0, - "V": 0.0 + "V": 904.74, + "T": 372.0 }, { - "T": 181.0, - "V": 0.0 + "V": 913.9, + "T": 376.0 }, { - "T": 186.0, - "V": 0.0 + "V": 922.92, + "T": 380.0 }, { - "T": 191.0, - "V": 0.0 + "V": 932.09, + "T": 384.0 }, { - "T": 196.0, - "V": 0.0 + "V": 941.3, + "T": 388.0 }, { - "T": 201.0, - "V": 0.0 + "V": 950.39, + "T": 392.0 }, { - "T": 206.0, - "V": 0.0 + "V": 959.49, + "T": 396.0 }, { - "T": 211.0, - "V": 0.0 + "V": 968.66, + "T": 400.0 }, { - "T": 216.0, - "V": 0.0 + "V": 977.75, + "T": 404.0 }, { - "T": 221.0, - "V": 0.0 + "V": 986.92, + "T": 408.0 }, { - "T": 226.0, - "V": 0.0 + "V": 996.09, + "T": 412.0 }, { - "T": 231.0, - "V": 0.0 + "V": 1005.21, + "T": 416.0 }, { - "T": 236.0, - "V": 0.0 + "V": 1014.31, + "T": 420.0 }, { - "T": 241.0, - "V": 0.0 + "V": 1023.48, + "T": 424.0 }, { - "T": 246.0, - "V": 0.0 + "V": 1032.63, + "T": 428.0 }, { - "T": 251.0, - "V": 0.0 + "V": 1041.73, + "T": 432.0 }, { - "T": 256.0, - "V": 0.0 + "V": 1050.95, + "T": 436.0 }, { - "T": 261.0, - "V": 0.0 + "V": 1060.05, + "T": 440.0 }, { - "T": 266.0, - "V": 0.0 + "V": 1069.13, + "T": 444.0 }, { - "T": 271.0, - "V": 0.0 + "V": 1078.3, + "T": 448.0 }, { - "T": 276.0, - "V": 0.0 + "V": 1087.45, + "T": 452.0 }, { - "T": 281.0, - "V": 0.0 + "V": 1096.67, + "T": 456.0 }, { - "T": 286.0, - "V": 0.0 + "V": 1105.77, + "T": 460.0 }, { - "T": 291.0, - "V": 0.0 + "V": 1114.98, + "T": 464.0 }, { - "T": 296.0, - "V": 0.0 + "V": 1124.07, + "T": 468.0 }, { - "T": 301.0, - "V": 0.0 + "V": 1133.23, + "T": 472.0 }, { - "T": 306.0, - "V": 0.0 + "V": 1142.39, + "T": 476.0 }, { - "T": 311.0, - "V": 0.0 + "V": 1151.54, + "T": 480.0 }, { - "T": 316.0, - "V": 0.0 + "V": 1160.7, + "T": 484.0 }, { - "T": 321.0, - "V": 0.0 + "V": 1169.8, + "T": 488.0 }, { - "T": 326.0, - "V": 0.0 + "V": 1178.95, + "T": 492.0 }, { - "T": 331.0, - "V": 0.0 + "V": 1188.11, + "T": 496.0 }, { - "T": 336.0, - "V": 0.0 + "V": 1197.2, + "T": 500.0 }, { - "T": 341.0, - "V": 0.0 + "V": 1206.42, + "T": 504.0 }, { - "T": 346.0, - "V": 0.0 + "V": 1215.52, + "T": 508.0 }, { - "T": 351.0, - "V": 0.0 + "V": 1224.67, + "T": 512.0 }, { - "T": 356.0, - "V": 0.0 + "V": 1233.83, + "T": 516.0 }, { - "T": 361.0, - "V": 0.0 + "V": 1242.93, + "T": 520.0 }, { - "T": 366.0, - "V": 0.0 + "V": 1251.95, + "T": 524.0 }, { - "T": 371.0, - "V": 0.0 + "V": 1261.14, + "T": 528.0 }, { - "T": 376.0, - "V": 0.0 + "V": 1270.25, + "T": 532.0 }, { - "T": 381.0, - "V": 0.0 + "V": 1279.43, + "T": 536.0 }, { - "T": 386.0, - "V": 0.0 + "V": 1288.51, + "T": 540.0 }, { - "T": 391.0, - "V": 0.0 + "V": 1297.74, + "T": 544.0 }, { - "T": 396.0, - "V": 0.0 + "V": 1306.95, + "T": 548.0 }, { - "T": 401.0, - "V": 0.0 + "V": 1316.05, + "T": 552.0 }, { - "T": 406.0, - "V": 0.0 + "V": 1325.21, + "T": 556.0 }, { - "T": 411.0, - "V": 0.0 + "V": 1334.43, + "T": 560.0 }, { - "T": 416.0, - "V": 0.0 + "V": 1343.52, + "T": 564.0 }, { - "T": 421.0, - "V": 0.0 + "V": 1352.55, + "T": 568.0 }, { - "T": 426.0, - "V": 0.0 + "V": 1361.77, + "T": 572.0 }, { - "T": 431.0, - "V": 0.0 + "V": 1370.93, + "T": 576.0 }, { - "T": 436.0, - "V": 0.0 + "V": 1380.02, + "T": 580.0 }, { - "T": 441.0, - "V": 0.0 + "V": 1389.17, + "T": 584.0 }, { - "T": 446.0, - "V": 0.0 + "V": 1398.27, + "T": 588.0 }, { - "T": 451.0, - "V": 0.0 + "V": 1407.49, + "T": 592.0 }, { - "T": 456.0, - "V": 0.0 - }, + "V": 1416.59, + "T": 596.0 + } + ], + "AllocRateMB": [ { - "T": 461.0, - "V": 0.0 + "V": 0.0, + "T": 1.0 }, { - "T": 466.0, - "V": 0.0 + "V": 0.0, + "T": 5.0 }, { - "T": 471.0, - "V": 0.0 + "V": 0.0, + "T": 9.0 }, { - "T": 476.0, - "V": 0.0 + "V": 0.0, + "T": 13.0 }, { - "T": 481.0, - "V": 0.0 + "V": 0.0, + "T": 17.0 }, { - "T": 486.0, - "V": 0.0 + "V": 0.0, + "T": 21.0 }, { - "T": 491.0, - "V": 0.0 + "V": 0.0, + "T": 25.0 }, { - "T": 496.0, - "V": 0.0 + "V": 0.0, + "T": 29.0 }, { - "T": 501.0, - "V": 0.0 + "V": 0.0, + "T": 33.0 }, { - "T": 506.0, - "V": 0.0 + "V": 0.0, + "T": 37.0 }, { - "T": 511.0, - "V": 0.0 + "V": 0.0, + "T": 41.0 }, { - "T": 516.0, - "V": 0.0 + "V": 0.0, + "T": 45.0 }, { - "T": 521.0, - "V": 0.0 + "V": 0.0, + "T": 49.0 }, { - "T": 526.0, - "V": 0.0 + "V": 0.0, + "T": 53.0 }, { - "T": 531.0, - "V": 0.0 + "V": 0.0, + "T": 57.0 }, { - "T": 536.0, - "V": 0.0 + "V": 0.0, + "T": 61.0 }, { - "T": 541.0, - "V": 0.0 + "V": 0.0, + "T": 65.0 }, { - "T": 546.0, - "V": 0.0 + "V": 0.0, + "T": 69.0 }, { - "T": 551.0, - "V": 0.0 + "V": 0.0, + "T": 73.0 }, { - "T": 556.0, - "V": 0.0 + "V": 0.0, + "T": 77.0 }, { - "T": 561.0, - "V": 0.0 + "V": 0.0, + "T": 81.0 }, { - "T": 566.0, - "V": 0.0 + "V": 0.0, + "T": 85.0 }, { - "T": 571.0, - "V": 0.0 + "V": 0.0, + "T": 89.0 }, { - "T": 576.0, - "V": 0.0 + "V": 0.0, + "T": 93.0 }, { - "T": 581.0, - "V": 0.0 + "V": 0.0, + "T": 97.0 }, { - "T": 586.0, - "V": 0.0 + "V": 0.0, + "T": 101.0 }, { - "T": 591.0, - "V": 0.0 + "V": 0.0, + "T": 105.0 }, { - "T": 596.0, - "V": 0.0 + "V": 0.0, + "T": 109.0 }, { - "T": 601.0, - "V": 0.0 - } - ], - "WorkingSetMB": [ + "V": 0.0, + "T": 113.0 + }, { - "T": 0.0, - "V": 2296.79 + "V": 0.0, + "T": 117.0 }, { - "T": 5.0, - "V": 2300.78 + "V": 0.0, + "T": 121.0 }, { - "T": 10.0, - "V": 2301.3 + "V": 0.0, + "T": 125.0 }, { - "T": 15.0, - "V": 2300.6 + "V": 0.0, + "T": 129.0 }, { - "T": 20.0, - "V": 2301.01 + "V": 0.0, + "T": 133.0 }, { - "T": 25.0, - "V": 2301.6 + "V": 0.0, + "T": 137.0 }, { - "T": 30.0, - "V": 2301.96 + "V": 0.0, + "T": 141.0 }, { - "T": 35.0, - "V": 2302.43 + "V": 0.0, + "T": 145.0 }, { - "T": 40.0, - "V": 2302.88 + "V": 0.0, + "T": 149.0 }, { - "T": 45.0, - "V": 2303.23 + "V": 0.0, + "T": 153.0 }, { - "T": 50.0, - "V": 2303.54 + "V": 0.0, + "T": 157.0 }, { - "T": 55.0, - "V": 2303.89 + "V": 0.0, + "T": 161.0 }, { - "T": 60.0, - "V": 2304.36 + "V": 0.0, + "T": 165.0 }, { - "T": 65.0, - "V": 2304.84 + "V": 0.0, + "T": 169.0 }, { - "T": 70.0, - "V": 2305.12 + "V": 0.0, + "T": 173.0 }, { - "T": 75.0, - "V": 2307.09 + "V": 0.0, + "T": 177.0 }, { - "T": 80.0, - "V": 2307.34 + "V": 0.0, + "T": 181.0 }, { - "T": 85.0, - "V": 2307.69 + "V": 0.0, + "T": 185.0 }, { - "T": 90.0, - "V": 2308.02 + "V": 0.0, + "T": 189.0 }, { - "T": 95.0, - "V": 2308.34 + "V": 0.0, + "T": 193.0 }, { - "T": 100.0, - "V": 2308.59 + "V": 0.0, + "T": 197.0 }, { - "T": 105.0, - "V": 2308.71 + "V": 64.0, + "T": 201.0 }, { - "T": 110.0, - "V": 2309.13 + "V": 0.0, + "T": 205.0 }, { - "T": 115.0, - "V": 2309.45 + "V": 0.0, + "T": 209.0 }, { - "T": 120.0, - "V": 2309.72 + "V": 0.0, + "T": 213.0 }, { - "T": 125.0, - "V": 2310.07 + "V": 0.0, + "T": 217.0 }, { - "T": 130.0, - "V": 2310.42 + "V": 0.0, + "T": 221.0 }, { - "T": 135.0, - "V": 2310.95 + "V": 0.0, + "T": 225.0 }, { - "T": 140.0, - "V": 2311.02 + "V": 64.0, + "T": 229.0 }, { - "T": 145.0, - "V": 2313.05 + "V": 0.0, + "T": 233.0 }, { - "T": 150.0, - "V": 2313.57 + "V": 0.0, + "T": 237.0 }, { - "T": 155.0, - "V": 2313.89 + "V": 0.0, + "T": 241.0 }, { - "T": 160.0, - "V": 2314.29 + "V": 0.0, + "T": 245.0 }, { - "T": 165.0, - "V": 2314.57 + "V": 0.0, + "T": 249.0 }, { - "T": 170.0, - "V": 2314.89 + "V": 0.0, + "T": 253.0 }, { - "T": 175.0, - "V": 2315.14 + "V": 64.0, + "T": 257.0 }, { - "T": 180.0, - "V": 2315.43 + "V": 0.0, + "T": 261.0 }, { - "T": 185.0, - "V": 2315.73 + "V": 0.0, + "T": 265.0 }, { - "T": 190.0, - "V": 2315.96 + "V": 0.0, + "T": 269.0 }, { - "T": 195.0, - "V": 2316.13 + "V": 0.0, + "T": 273.0 }, { - "T": 200.0, - "V": 2316.42 + "V": 0.0, + "T": 277.0 }, { - "T": 205.0, - "V": 2316.68 + "V": 0.0, + "T": 281.0 }, { - "T": 210.0, - "V": 2316.96 + "V": 0.0, + "T": 285.0 }, { - "T": 215.0, - "V": 2317.27 + "V": 0.0, + "T": 289.0 }, { - "T": 220.0, - "V": 2317.64 + "V": 0.0, + "T": 293.0 }, { - "T": 225.0, - "V": 2317.89 + "V": 0.0, + "T": 297.0 }, { - "T": 230.0, - "V": 2318.17 + "V": 0.0, + "T": 301.0 }, { - "T": 235.0, - "V": 2318.46 + "V": 0.0, + "T": 305.0 }, { - "T": 240.0, - "V": 2318.79 + "V": 0.0, + "T": 309.0 }, { - "T": 245.0, - "V": 2319.07 + "V": 0.0, + "T": 313.0 }, { - "T": 250.0, - "V": 2319.34 + "V": 0.0, + "T": 317.0 }, { - "T": 255.0, - "V": 2319.64 + "V": 0.0, + "T": 321.0 }, { - "T": 260.0, - "V": 2319.98 + "V": 0.0, + "T": 325.0 }, { - "T": 265.0, - "V": 2320.41 + "V": 0.0, + "T": 329.0 }, { - "T": 270.0, - "V": 2320.69 + "V": 0.0, + "T": 333.0 }, { - "T": 275.0, - "V": 2320.95 + "V": 0.0, + "T": 337.0 }, { - "T": 280.0, - "V": 2321.25 + "V": 0.0, + "T": 341.0 }, { - "T": 285.0, - "V": 2323.86 + "V": 0.0, + "T": 345.0 }, { - "T": 290.0, - "V": 2324.26 + "V": 0.0, + "T": 349.0 }, { - "T": 295.0, - "V": 2324.54 + "V": 0.0, + "T": 353.0 }, { - "T": 300.0, - "V": 2325.29 + "V": 0.0, + "T": 357.0 }, { - "T": 305.0, - "V": 2325.6 + "V": 0.0, + "T": 361.0 }, { - "T": 310.0, - "V": 2325.91 + "V": 0.0, + "T": 365.0 }, { - "T": 315.0, - "V": 2326.29 + "V": 0.0, + "T": 369.0 }, { - "T": 320.0, - "V": 2326.52 + "V": 0.0, + "T": 373.0 }, { - "T": 325.0, - "V": 2326.66 + "V": 0.0, + "T": 377.0 }, { - "T": 330.0, - "V": 2327.16 + "V": 0.0, + "T": 381.0 }, { - "T": 335.0, - "V": 2327.39 + "V": 0.0, + "T": 385.0 }, { - "T": 340.0, - "V": 2327.67 + "V": 0.0, + "T": 389.0 }, { - "T": 345.0, - "V": 2328.03 + "V": 0.0, + "T": 393.0 }, { - "T": 350.0, - "V": 2328.26 + "V": 0.0, + "T": 397.0 }, { - "T": 355.0, - "V": 2328.54 + "V": 0.0, + "T": 401.0 }, { - "T": 360.0, - "V": 2328.89 + "V": 0.0, + "T": 405.0 }, { - "T": 365.0, - "V": 2329.21 + "V": 0.0, + "T": 409.0 }, { - "T": 370.0, - "V": 2329.41 + "V": 0.0, + "T": 413.0 }, { - "T": 375.0, - "V": 2329.55 + "V": 0.0, + "T": 417.0 }, { - "T": 380.0, - "V": 2329.82 + "V": 0.0, + "T": 421.0 }, { - "T": 385.0, - "V": 2330.16 + "V": 0.0, + "T": 425.0 }, { - "T": 390.0, - "V": 2330.42 + "V": 0.0, + "T": 429.0 }, { - "T": 395.0, - "V": 2330.75 + "V": 0.0, + "T": 433.0 }, { - "T": 400.0, - "V": 2331.0 + "V": 0.0, + "T": 437.0 }, { - "T": 405.0, - "V": 2331.3 + "V": 0.0, + "T": 441.0 }, { - "T": 410.0, - "V": 2331.57 + "V": 0.0, + "T": 445.0 }, { - "T": 415.0, - "V": 2331.88 + "V": 0.0, + "T": 449.0 }, { - "T": 420.0, - "V": 2332.2 + "V": 0.0, + "T": 453.0 }, { - "T": 425.0, - "V": 2332.52 + "V": 0.0, + "T": 457.0 }, { - "T": 430.0, - "V": 2332.8 + "V": 0.0, + "T": 461.0 }, { - "T": 435.0, - "V": 2333.09 + "V": 0.0, + "T": 465.0 }, { - "T": 440.0, - "V": 2333.28 + "V": 0.0, + "T": 469.0 }, { - "T": 445.0, - "V": 2333.59 + "V": 0.0, + "T": 473.0 }, { - "T": 450.0, - "V": 2333.87 + "V": 0.0, + "T": 477.0 }, { - "T": 455.0, - "V": 2334.2 + "V": 0.0, + "T": 481.0 }, { - "T": 460.0, - "V": 2334.49 + "V": 0.0, + "T": 485.0 }, { - "T": 465.0, - "V": 2334.81 + "V": 0.0, + "T": 489.0 }, { - "T": 470.0, - "V": 2335.07 + "V": 0.0, + "T": 493.0 }, { - "T": 475.0, - "V": 2335.35 + "V": 0.0, + "T": 497.0 }, { - "T": 480.0, - "V": 2335.68 + "V": 0.0, + "T": 501.0 }, { - "T": 485.0, - "V": 2336.0 + "V": 0.0, + "T": 505.0 }, { - "T": 490.0, - "V": 2336.3 + "V": 0.0, + "T": 509.0 }, { - "T": 495.0, - "V": 2336.65 + "V": 0.0, + "T": 513.0 }, { - "T": 500.0, - "V": 2336.9 + "V": 0.0, + "T": 517.0 }, { - "T": 505.0, - "V": 2337.19 + "V": 0.0, + "T": 521.0 }, { - "T": 510.0, - "V": 2337.61 + "V": 0.0, + "T": 525.0 }, { - "T": 515.0, - "V": 2337.74 + "V": 0.0, + "T": 529.0 }, { - "T": 520.0, - "V": 2338.08 + "V": 0.0, + "T": 533.0 }, { - "T": 525.0, - "V": 2338.45 + "V": 0.0, + "T": 537.0 }, { - "T": 530.0, - "V": 2338.76 + "V": 64.0, + "T": 541.0 }, { - "T": 535.0, - "V": 2339.04 + "V": 0.0, + "T": 545.0 }, { - "T": 540.0, - "V": 2339.34 + "V": 0.0, + "T": 549.0 }, { - "T": 545.0, - "V": 2339.64 + "V": 0.0, + "T": 553.0 }, { - "T": 550.0, - "V": 2339.94 + "V": 0.0, + "T": 557.0 }, { - "T": 555.0, - "V": 2340.21 + "V": 0.0, + "T": 561.0 }, { - "T": 560.0, - "V": 2340.5 + "V": 0.0, + "T": 565.0 }, { - "T": 565.0, - "V": 2340.96 + "V": 64.0, + "T": 569.0 }, { - "T": 570.0, - "V": 2341.27 + "V": 0.0, + "T": 573.0 }, { - "T": 575.0, - "V": 2341.55 + "V": 0.0, + "T": 577.0 }, { - "T": 580.0, - "V": 2341.93 + "V": 0.0, + "T": 581.0 }, { - "T": 585.0, - "V": 2342.18 + "V": 0.0, + "T": 585.0 }, { - "T": 590.0, - "V": 2342.41 + "V": 0.0, + "T": 589.0 }, { - "T": 595.0, - "V": 2342.68 + "V": 0.0, + "T": 593.0 }, { - "T": 600.0, - "V": 2342.88 + "V": 64.0, + "T": 597.0 } ], - "AllocRateMB": [ + "OpsPerSec": [ { - "T": 1.0, - "V": 0.04 + "V": 16250.0, + "T": 0.0 }, { - "T": 6.0, - "V": 0.03 + "V": 15750.0, + "T": 4.0 }, { - "T": 11.0, - "V": 0.05 + "V": 15750.0, + "T": 8.0 }, { - "T": 16.0, - "V": 0.03 + "V": 15750.0, + "T": 12.0 }, { - "T": 21.0, - "V": 0.05 + "V": 15750.0, + "T": 16.0 }, { - "T": 26.0, - "V": 0.04 + "V": 15750.0, + "T": 20.0 }, { - "T": 31.0, - "V": 0.03 + "V": 16000.0, + "T": 24.0 }, { - "T": 36.0, - "V": 0.02 + "V": 15750.0, + "T": 28.0 }, { - "T": 41.0, - "V": 0.04 + "V": 15750.0, + "T": 32.0 }, { - "T": 46.0, - "V": 0.04 + "V": 15750.0, + "T": 36.0 }, { - "T": 51.0, - "V": 0.03 + "V": 15750.0, + "T": 40.0 }, { - "T": 56.0, - "V": 0.04 + "V": 16000.0, + "T": 44.0 }, { - "T": 61.0, - "V": 0.04 + "V": 15750.0, + "T": 48.0 }, { - "T": 66.0, - "V": 0.03 + "V": 15750.0, + "T": 52.0 }, { - "T": 71.0, - "V": 0.03 + "V": 16000.0, + "T": 56.0 }, { - "T": 76.0, - "V": 0.02 + "V": 15750.0, + "T": 60.0 }, { - "T": 81.0, - "V": 0.04 + "V": 16000.0, + "T": 64.0 }, { - "T": 86.0, - "V": 0.04 + "V": 15750.0, + "T": 68.0 }, { - "T": 91.0, - "V": 0.04 + "V": 15750.0, + "T": 72.0 }, { - "T": 96.0, - "V": 0.03 + "V": 16000.0, + "T": 76.0 }, { - "T": 101.0, - "V": 0.02 + "V": 15750.0, + "T": 80.0 }, { - "T": 106.0, - "V": 0.25 + "V": 15750.0, + "T": 84.0 }, { - "T": 111.0, - "V": 0.03 + "V": 16000.0, + "T": 88.0 }, { - "T": 116.0, - "V": 0.03 + "V": 15750.0, + "T": 92.0 }, { - "T": 121.0, - "V": 0.04 + "V": 15750.0, + "T": 96.0 }, { - "T": 126.0, - "V": 0.02 - }, - { - "T": 131.0, - "V": 0.04 + "V": 15750.0, + "T": 100.0 }, { - "T": 136.0, - "V": 0.02 + "V": 15750.0, + "T": 104.0 }, { - "T": 141.0, - "V": 0.04 + "V": 15750.0, + "T": 108.0 }, { - "T": 146.0, - "V": 0.04 + "V": 15750.0, + "T": 112.0 }, { - "T": 151.0, - "V": 0.04 + "V": 15750.0, + "T": 116.0 }, { - "T": 156.0, - "V": 0.03 + "V": 15750.0, + "T": 120.0 }, { - "T": 161.0, - "V": 0.03 + "V": 15750.0, + "T": 124.0 }, { - "T": 166.0, - "V": 0.04 + "V": 15750.0, + "T": 128.0 }, { - "T": 171.0, - "V": 0.04 + "V": 15750.0, + "T": 132.0 }, { - "T": 176.0, - "V": 0.02 + "V": 15750.0, + "T": 136.0 }, { - "T": 181.0, - "V": 0.02 + "V": 16000.0, + "T": 140.0 }, { - "T": 186.0, - "V": 0.05 + "V": 15750.0, + "T": 144.0 }, { - "T": 191.0, - "V": 0.04 + "V": 15750.0, + "T": 148.0 }, { - "T": 196.0, - "V": 0.15 + "V": 15750.0, + "T": 152.0 }, { - "T": 201.0, - "V": 0.15 + "V": 16250.0, + "T": 156.0 }, { - "T": 206.0, - "V": 0.17 + "V": 15750.0, + "T": 160.0 }, { - "T": 211.0, - "V": 0.16 + "V": 15750.0, + "T": 164.0 }, { - "T": 216.0, - "V": 0.25 + "V": 15750.0, + "T": 168.0 }, { - "T": 221.0, - "V": 0.17 + "V": 16000.0, + "T": 172.0 }, { - "T": 226.0, - "V": 0.15 + "V": 15750.0, + "T": 176.0 }, { - "T": 231.0, - "V": 0.16 + "V": 15750.0, + "T": 180.0 }, { - "T": 236.0, - "V": 0.15 + "V": 16000.0, + "T": 184.0 }, { - "T": 241.0, - "V": 0.16 + "V": 15750.0, + "T": 188.0 }, { - "T": 246.0, - "V": 0.15 + "V": 15750.0, + "T": 192.0 }, { - "T": 251.0, - "V": 0.17 + "V": 15750.0, + "T": 196.0 }, { - "T": 256.0, - "V": 0.17 + "V": 15750.0, + "T": 200.0 }, { - "T": 261.0, - "V": 0.14 + "V": 15750.0, + "T": 204.0 }, { - "T": 266.0, - "V": 0.15 + "V": 15750.0, + "T": 208.0 }, { - "T": 271.0, - "V": 0.16 + "V": 15750.0, + "T": 212.0 }, { - "T": 276.0, - "V": 0.17 + "V": 15750.0, + "T": 216.0 }, { - "T": 281.0, - "V": 0.16 + "V": 15750.0, + "T": 220.0 }, { - "T": 286.0, - "V": 0.16 + "V": 15750.0, + "T": 224.0 }, { - "T": 291.0, - "V": 0.14 + "V": 15750.0, + "T": 228.0 }, { - "T": 296.0, - "V": 0.03 + "V": 15750.0, + "T": 232.0 }, { - "T": 301.0, - "V": 0.03 + "V": 15750.0, + "T": 236.0 }, { - "T": 306.0, - "V": 0.03 + "V": 15750.0, + "T": 240.0 }, { - "T": 311.0, - "V": 0.03 + "V": 15750.0, + "T": 244.0 }, { - "T": 316.0, - "V": 0.04 + "V": 15750.0, + "T": 248.0 }, { - "T": 321.0, - "V": 0.04 + "V": 15750.0, + "T": 252.0 }, { - "T": 326.0, - "V": 0.17 + "V": 15750.0, + "T": 256.0 }, { - "T": 331.0, - "V": 0.02 + "V": 15750.0, + "T": 260.0 }, { - "T": 336.0, - "V": 0.02 + "V": 15750.0, + "T": 264.0 }, { - "T": 341.0, - "V": 0.04 + "V": 15750.0, + "T": 268.0 }, { - "T": 346.0, - "V": 0.04 + "V": 16000.0, + "T": 272.0 }, { - "T": 351.0, - "V": 0.03 + "V": 15750.0, + "T": 276.0 }, { - "T": 356.0, - "V": 0.02 + "V": 15750.0, + "T": 280.0 }, { - "T": 361.0, - "V": 0.03 + "V": 15750.0, + "T": 284.0 }, { - "T": 366.0, - "V": 0.04 + "V": 15750.0, + "T": 288.0 }, { - "T": 371.0, - "V": 0.03 + "V": 15750.0, + "T": 292.0 }, { - "T": 376.0, - "V": 0.16 + "V": 15750.0, + "T": 296.0 }, { - "T": 381.0, - "V": 0.03 + "V": 15750.0, + "T": 300.0 }, { - "T": 386.0, - "V": 0.04 + "V": 15750.0, + "T": 304.0 }, { - "T": 391.0, - "V": 0.04 + "V": 15750.0, + "T": 308.0 }, { - "T": 396.0, - "V": 0.16 + "V": 15750.0, + "T": 312.0 }, { - "T": 401.0, - "V": 0.15 + "V": 16000.0, + "T": 316.0 }, { - "T": 406.0, - "V": 0.16 + "V": 15750.0, + "T": 320.0 }, { - "T": 411.0, - "V": 0.16 + "V": 15750.0, + "T": 324.0 }, { - "T": 416.0, - "V": 0.16 + "V": 15750.0, + "T": 328.0 }, { - "T": 421.0, - "V": 0.15 + "V": 15750.0, + "T": 332.0 }, { - "T": 426.0, - "V": 0.16 + "V": 15750.0, + "T": 336.0 }, { - "T": 431.0, - "V": 0.15 + "V": 15750.0, + "T": 340.0 }, { - "T": 436.0, - "V": 0.16 + "V": 15750.0, + "T": 344.0 }, { - "T": 441.0, - "V": 0.16 + "V": 15750.0, + "T": 348.0 }, { - "T": 446.0, - "V": 0.16 + "V": 15750.0, + "T": 352.0 }, { - "T": 451.0, - "V": 0.16 + "V": 15750.0, + "T": 356.0 }, { - "T": 456.0, - "V": 0.17 + "V": 15750.0, + "T": 360.0 }, { - "T": 461.0, - "V": 0.15 + "V": 15750.0, + "T": 364.0 }, { - "T": 466.0, - "V": 0.14 + "V": 15750.0, + "T": 368.0 }, { - "T": 471.0, - "V": 0.16 + "V": 15750.0, + "T": 372.0 }, { - "T": 476.0, - "V": 0.24 + "V": 16000.0, + "T": 376.0 }, { - "T": 481.0, - "V": 0.18 + "V": 15750.0, + "T": 380.0 }, { - "T": 486.0, - "V": 0.22 + "V": 15750.0, + "T": 384.0 }, { - "T": 491.0, - "V": 0.17 + "V": 15750.0, + "T": 388.0 }, { - "T": 496.0, - "V": 0.15 + "V": 15750.0, + "T": 392.0 }, { - "T": 501.0, - "V": 0.16 + "V": 15750.0, + "T": 396.0 }, { - "T": 506.0, - "V": 0.14 + "V": 15750.0, + "T": 400.0 }, { - "T": 511.0, - "V": 0.03 + "V": 15750.0, + "T": 404.0 }, { - "T": 516.0, - "V": 0.15 + "V": 15750.0, + "T": 408.0 }, { - "T": 521.0, - "V": 0.16 + "V": 15750.0, + "T": 412.0 }, { - "T": 526.0, - "V": 0.03 + "V": 16000.0, + "T": 416.0 }, { - "T": 531.0, - "V": 0.02 + "V": 15750.0, + "T": 420.0 }, { - "T": 536.0, - "V": 0.04 + "V": 15750.0, + "T": 424.0 }, { - "T": 541.0, - "V": 0.03 + "V": 15750.0, + "T": 428.0 }, { - "T": 546.0, - "V": 0.03 + "V": 15750.0, + "T": 432.0 }, { - "T": 551.0, - "V": 0.03 + "V": 16000.0, + "T": 436.0 }, { - "T": 556.0, - "V": 0.03 + "V": 16000.0, + "T": 440.0 }, { - "T": 561.0, - "V": 0.03 + "V": 15750.0, + "T": 444.0 }, { - "T": 566.0, - "V": 0.04 + "V": 15750.0, + "T": 448.0 }, { - "T": 571.0, - "V": 0.03 + "V": 15750.0, + "T": 452.0 }, { - "T": 576.0, - "V": 0.03 + "V": 16000.0, + "T": 456.0 }, { - "T": 581.0, - "V": 0.03 + "V": 15750.0, + "T": 460.0 }, { - "T": 586.0, - "V": 0.03 + "V": 16000.0, + "T": 464.0 }, { - "T": 591.0, - "V": 0.04 + "V": 15750.0, + "T": 468.0 }, { - "T": 596.0, - "V": 0.02 + "V": 15750.0, + "T": 472.0 }, { - "T": 601.0, - "V": 0.03 - } - ], - "OpsPerSec": [ - { - "T": 5.0, - "V": 1.0 + "V": 15750.0, + "T": 476.0 }, { - "T": 10.0, - "V": 1.0 + "V": 15750.0, + "T": 480.0 }, { - "T": 14.0, - "V": 1.0 + "V": 15750.0, + "T": 484.0 }, { - "T": 19.0, - "V": 1.0 + "V": 15750.0, + "T": 488.0 }, { - "T": 24.0, - "V": 1.0 + "V": 15750.0, + "T": 492.0 }, { - "T": 28.0, - "V": 1.0 + "V": 15750.0, + "T": 496.0 }, { - "T": 33.0, - "V": 1.0 + "V": 15750.0, + "T": 500.0 }, { - "T": 38.0, - "V": 1.0 + "V": 15750.0, + "T": 504.0 }, { - "T": 43.0, - "V": 1.0 + "V": 15750.0, + "T": 508.0 }, { - "T": 48.0, - "V": 1.0 + "V": 15750.0, + "T": 512.0 }, { - "T": 53.0, - "V": 1.0 + "V": 15750.0, + "T": 516.0 }, { - "T": 58.0, - "V": 1.0 + "V": 15750.0, + "T": 520.0 }, { - "T": 63.0, - "V": 1.0 + "V": 15750.0, + "T": 524.0 }, { - "T": 68.0, - "V": 1.0 + "V": 15750.0, + "T": 528.0 }, { - "T": 73.0, - "V": 1.0 + "V": 15750.0, + "T": 532.0 }, { - "T": 78.0, - "V": 1.0 + "V": 16000.0, + "T": 536.0 }, { - "T": 84.0, - "V": 1.0 + "V": 15750.0, + "T": 540.0 }, { - "T": 89.0, - "V": 1.0 + "V": 16000.0, + "T": 544.0 }, { - "T": 95.0, - "V": 1.0 + "V": 15750.0, + "T": 548.0 }, { - "T": 100.0, - "V": 1.0 + "V": 15750.0, + "T": 552.0 }, { - "T": 106.0, - "V": 1.0 + "V": 15750.0, + "T": 556.0 }, { - "T": 112.0, - "V": 1.0 + "V": 15750.0, + "T": 560.0 }, { - "T": 118.0, - "V": 1.0 + "V": 16000.0, + "T": 564.0 }, { - "T": 123.0, - "V": 1.0 + "V": 15750.0, + "T": 568.0 }, { - "T": 129.0, - "V": 1.0 + "V": 15750.0, + "T": 572.0 }, { - "T": 135.0, - "V": 1.0 + "V": 16000.0, + "T": 576.0 }, { - "T": 142.0, - "V": 1.0 + "V": 15750.0, + "T": 580.0 }, { - "T": 148.0, - "V": 1.0 + "V": 15750.0, + "T": 584.0 }, { - "T": 153.0, - "V": 1.0 + "V": 15750.0, + "T": 588.0 }, { - "T": 158.0, - "V": 1.0 + "V": 15750.0, + "T": 592.0 }, { - "T": 164.0, - "V": 1.0 - }, + "V": 16000.0, + "T": 596.0 + } + ], + "Gen0PerSec": [ { - "T": 169.0, - "V": 1.0 + "V": 0.0, + "T": 1.0 }, { - "T": 174.0, - "V": 1.0 + "V": 0.0, + "T": 5.0 }, { - "T": 179.0, - "V": 1.0 + "V": 0.0, + "T": 9.0 }, { - "T": 185.0, - "V": 1.0 + "V": 0.0, + "T": 13.0 }, { - "T": 190.0, - "V": 1.0 + "V": 0.0, + "T": 17.0 }, { - "T": 196.0, - "V": 1.0 + "V": 0.0, + "T": 21.0 }, { - "T": 201.0, - "V": 1.0 + "V": 0.0, + "T": 25.0 }, { - "T": 206.0, - "V": 1.0 + "V": 0.0, + "T": 29.0 }, { - "T": 211.0, - "V": 1.0 + "V": 0.0, + "T": 33.0 }, { - "T": 216.0, - "V": 1.0 + "V": 0.0, + "T": 37.0 }, { - "T": 221.0, - "V": 1.0 + "V": 0.0, + "T": 41.0 }, { - "T": 226.0, - "V": 1.0 + "V": 0.0, + "T": 45.0 }, { - "T": 231.0, - "V": 1.0 + "V": 0.0, + "T": 49.0 }, { - "T": 236.0, - "V": 1.0 + "V": 0.0, + "T": 53.0 }, { - "T": 241.0, - "V": 1.0 + "V": 0.0, + "T": 57.0 }, { - "T": 246.0, - "V": 1.0 + "V": 0.0, + "T": 61.0 }, { - "T": 251.0, - "V": 1.0 + "V": 0.0, + "T": 65.0 }, { - "T": 256.0, - "V": 1.0 + "V": 0.0, + "T": 69.0 }, { - "T": 261.0, - "V": 1.0 + "V": 0.0, + "T": 73.0 }, { - "T": 266.0, - "V": 1.0 + "V": 0.0, + "T": 77.0 }, { - "T": 271.0, - "V": 1.0 + "V": 0.0, + "T": 81.0 }, { - "T": 276.0, - "V": 1.0 + "V": 0.0, + "T": 85.0 }, { - "T": 281.0, - "V": 1.0 + "V": 0.0, + "T": 89.0 }, { - "T": 286.0, - "V": 1.0 + "V": 0.0, + "T": 93.0 }, { - "T": 291.0, - "V": 1.0 + "V": 0.0, + "T": 97.0 }, { - "T": 298.0, - "V": 1.0 + "V": 0.0, + "T": 101.0 }, { - "T": 304.0, - "V": 1.0 + "V": 0.0, + "T": 105.0 }, { - "T": 309.0, - "V": 1.0 + "V": 0.0, + "T": 109.0 }, { - "T": 315.0, - "V": 1.0 + "V": 0.0, + "T": 113.0 }, { - "T": 320.0, - "V": 1.0 + "V": 0.0, + "T": 117.0 }, { - "T": 326.0, - "V": 1.0 + "V": 0.0, + "T": 121.0 }, { - "T": 330.0, - "V": 1.0 + "V": 0.0, + "T": 125.0 }, { - "T": 335.0, - "V": 1.0 + "V": 0.0, + "T": 129.0 }, { - "T": 340.0, - "V": 1.0 + "V": 0.0, + "T": 133.0 }, { - "T": 345.0, - "V": 1.0 + "V": 0.0, + "T": 137.0 }, { - "T": 350.0, - "V": 1.0 + "V": 0.0, + "T": 141.0 }, { - "T": 355.0, - "V": 1.0 + "V": 0.0, + "T": 145.0 }, { - "T": 360.0, - "V": 1.0 + "V": 0.0, + "T": 149.0 }, { - "T": 365.0, - "V": 1.0 + "V": 0.0, + "T": 153.0 }, { - "T": 370.0, - "V": 1.0 + "V": 0.0, + "T": 157.0 }, { - "T": 376.0, - "V": 1.0 + "V": 0.0, + "T": 161.0 }, { - "T": 382.0, - "V": 1.0 + "V": 0.0, + "T": 165.0 }, { - "T": 387.0, - "V": 1.0 + "V": 0.0, + "T": 169.0 }, { - "T": 392.0, - "V": 1.0 + "V": 0.0, + "T": 173.0 }, { - "T": 396.0, - "V": 1.0 + "V": 0.0, + "T": 177.0 }, { - "T": 401.0, - "V": 1.0 + "V": 0.0, + "T": 181.0 }, { - "T": 406.0, - "V": 1.0 + "V": 0.0, + "T": 185.0 }, { - "T": 411.0, - "V": 1.0 + "V": 0.0, + "T": 189.0 }, { - "T": 416.0, - "V": 1.0 + "V": 0.0, + "T": 193.0 }, { - "T": 421.0, - "V": 1.0 + "V": 0.0, + "T": 197.0 }, { - "T": 426.0, - "V": 1.0 + "V": 0.0, + "T": 201.0 }, { - "T": 431.0, - "V": 1.0 + "V": 0.0, + "T": 205.0 }, { - "T": 436.0, - "V": 1.0 + "V": 0.0, + "T": 209.0 }, { - "T": 441.0, - "V": 1.0 + "V": 0.0, + "T": 213.0 }, { - "T": 446.0, - "V": 1.0 + "V": 0.0, + "T": 217.0 }, { - "T": 451.0, - "V": 1.0 + "V": 0.0, + "T": 221.0 }, { - "T": 456.0, - "V": 1.0 + "V": 0.0, + "T": 225.0 }, { - "T": 461.0, - "V": 1.0 + "V": 0.0, + "T": 229.0 }, { - "T": 466.0, - "V": 1.0 + "V": 0.0, + "T": 233.0 }, { - "T": 471.0, - "V": 1.0 + "V": 0.0, + "T": 237.0 }, { - "T": 476.0, - "V": 1.0 + "V": 0.0, + "T": 241.0 }, { - "T": 481.0, - "V": 1.0 + "V": 0.0, + "T": 245.0 }, { - "T": 486.0, - "V": 1.0 + "V": 0.0, + "T": 249.0 }, { - "T": 491.0, - "V": 1.0 + "V": 0.0, + "T": 253.0 }, { - "T": 496.0, - "V": 1.0 + "V": 0.0, + "T": 257.0 }, { - "T": 501.0, - "V": 1.0 + "V": 0.0, + "T": 261.0 }, { - "T": 506.0, - "V": 1.0 + "V": 0.0, + "T": 265.0 }, { - "T": 510.0, - "V": 1.0 + "V": 0.0, + "T": 269.0 }, { - "T": 516.0, - "V": 1.0 + "V": 0.0, + "T": 273.0 }, { - "T": 520.0, - "V": 1.0 + "V": 0.0, + "T": 277.0 }, { - "T": 525.0, - "V": 1.0 + "V": 0.0, + "T": 281.0 }, { - "T": 530.0, - "V": 1.0 + "V": 0.0, + "T": 285.0 }, { - "T": 535.0, - "V": 1.0 + "V": 0.0, + "T": 289.0 }, { - "T": 540.0, - "V": 1.0 + "V": 0.0, + "T": 293.0 }, { - "T": 544.0, - "V": 1.0 + "V": 0.0, + "T": 297.0 }, { - "T": 549.0, - "V": 1.0 + "V": 0.0, + "T": 301.0 }, { - "T": 554.0, - "V": 1.0 + "V": 0.0, + "T": 305.0 }, { - "T": 559.0, - "V": 1.0 + "V": 0.0, + "T": 309.0 }, { - "T": 564.0, - "V": 1.0 + "V": 0.0, + "T": 313.0 }, { - "T": 569.0, - "V": 1.0 + "V": 0.0, + "T": 317.0 }, { - "T": 574.0, - "V": 1.0 + "V": 0.0, + "T": 321.0 }, { - "T": 578.0, - "V": 1.0 + "V": 0.0, + "T": 325.0 }, { - "T": 584.0, - "V": 1.0 + "V": 0.0, + "T": 329.0 }, { - "T": 589.0, - "V": 1.0 + "V": 0.0, + "T": 333.0 }, { - "T": 594.0, - "V": 1.0 + "V": 0.0, + "T": 337.0 }, { - "T": 600.0, - "V": 1.0 - } - ], - "Gen0PerSec": [ + "V": 0.0, + "T": 341.0 + }, { - "T": 1.0, - "V": 0.0 + "V": 0.0, + "T": 345.0 }, { - "T": 6.0, - "V": 0.0 + "V": 0.0, + "T": 349.0 }, { - "T": 11.0, - "V": 0.0 + "V": 0.0, + "T": 353.0 }, { - "T": 16.0, - "V": 0.0 + "V": 0.0, + "T": 357.0 }, { - "T": 21.0, - "V": 0.0 + "V": 0.0, + "T": 361.0 }, { - "T": 26.0, - "V": 0.0 + "V": 0.0, + "T": 365.0 }, { - "T": 31.0, - "V": 0.0 + "V": 0.0, + "T": 369.0 }, { - "T": 36.0, - "V": 0.0 + "V": 0.0, + "T": 373.0 }, { - "T": 41.0, - "V": 0.0 + "V": 0.0, + "T": 377.0 }, { - "T": 46.0, - "V": 0.0 + "V": 0.0, + "T": 381.0 }, { - "T": 51.0, - "V": 0.0 + "V": 0.0, + "T": 385.0 }, { - "T": 56.0, - "V": 0.0 + "V": 0.0, + "T": 389.0 }, { - "T": 61.0, - "V": 0.0 + "V": 0.0, + "T": 393.0 }, { - "T": 66.0, - "V": 0.0 + "V": 0.0, + "T": 397.0 }, { - "T": 71.0, - "V": 0.0 + "V": 0.0, + "T": 401.0 }, { - "T": 76.0, - "V": 0.0 + "V": 0.0, + "T": 405.0 }, { - "T": 81.0, - "V": 0.0 + "V": 0.0, + "T": 409.0 }, { - "T": 86.0, - "V": 0.0 + "V": 0.0, + "T": 413.0 }, { - "T": 91.0, - "V": 0.0 + "V": 0.0, + "T": 417.0 }, { - "T": 96.0, - "V": 0.0 + "V": 0.0, + "T": 421.0 }, { - "T": 101.0, - "V": 0.0 + "V": 0.0, + "T": 425.0 }, { - "T": 106.0, - "V": 0.0 + "V": 0.0, + "T": 429.0 }, { - "T": 111.0, - "V": 0.0 + "V": 0.0, + "T": 433.0 }, { - "T": 116.0, - "V": 0.0 + "V": 0.0, + "T": 437.0 }, { - "T": 121.0, - "V": 0.0 + "V": 0.0, + "T": 441.0 }, { - "T": 126.0, - "V": 0.0 + "V": 0.0, + "T": 445.0 }, { - "T": 131.0, - "V": 0.0 + "V": 0.0, + "T": 449.0 }, { - "T": 136.0, - "V": 0.0 + "V": 0.0, + "T": 453.0 }, { - "T": 141.0, - "V": 0.0 + "V": 0.0, + "T": 457.0 }, { - "T": 146.0, - "V": 0.0 + "V": 0.0, + "T": 461.0 }, { - "T": 151.0, - "V": 0.0 + "V": 0.0, + "T": 465.0 }, { - "T": 156.0, - "V": 0.0 + "V": 0.0, + "T": 469.0 }, { - "T": 161.0, - "V": 0.0 + "V": 0.0, + "T": 473.0 }, { - "T": 166.0, - "V": 0.0 + "V": 0.0, + "T": 477.0 }, { - "T": 171.0, - "V": 0.0 + "V": 0.0, + "T": 481.0 }, { - "T": 176.0, - "V": 0.0 + "V": 0.0, + "T": 485.0 }, { - "T": 181.0, - "V": 0.0 + "V": 0.0, + "T": 489.0 }, { - "T": 186.0, - "V": 0.0 + "V": 0.0, + "T": 493.0 }, { - "T": 191.0, - "V": 0.0 + "V": 0.0, + "T": 497.0 }, { - "T": 196.0, - "V": 0.0 + "V": 0.0, + "T": 501.0 }, { - "T": 201.0, - "V": 0.0 + "V": 0.0, + "T": 505.0 }, { - "T": 206.0, - "V": 0.0 + "V": 0.0, + "T": 509.0 }, { - "T": 211.0, - "V": 0.0 + "V": 0.0, + "T": 513.0 }, { - "T": 216.0, - "V": 0.0 + "V": 0.0, + "T": 517.0 }, { - "T": 221.0, - "V": 0.0 + "V": 0.0, + "T": 521.0 }, { - "T": 226.0, - "V": 0.0 + "V": 0.0, + "T": 525.0 }, { - "T": 231.0, - "V": 0.0 + "V": 0.0, + "T": 529.0 }, { - "T": 236.0, - "V": 0.0 + "V": 0.0, + "T": 533.0 }, { - "T": 241.0, - "V": 0.0 + "V": 0.0, + "T": 537.0 }, { - "T": 246.0, - "V": 0.0 + "V": 0.0, + "T": 541.0 }, { - "T": 251.0, - "V": 0.0 + "V": 0.0, + "T": 545.0 }, { - "T": 256.0, - "V": 0.0 + "V": 0.0, + "T": 549.0 }, { - "T": 261.0, - "V": 0.0 + "V": 0.0, + "T": 553.0 }, { - "T": 266.0, - "V": 0.0 + "V": 0.0, + "T": 557.0 }, { - "T": 271.0, - "V": 0.0 + "V": 0.0, + "T": 561.0 }, { - "T": 276.0, - "V": 0.0 + "V": 0.0, + "T": 565.0 }, { - "T": 281.0, - "V": 0.0 + "V": 0.0, + "T": 569.0 }, { - "T": 286.0, - "V": 0.0 + "V": 0.0, + "T": 573.0 }, { - "T": 291.0, - "V": 0.0 + "V": 0.0, + "T": 577.0 }, { - "T": 296.0, - "V": 0.0 + "V": 0.0, + "T": 581.0 }, { - "T": 301.0, - "V": 0.0 + "V": 0.0, + "T": 585.0 }, { - "T": 306.0, - "V": 0.0 + "V": 0.0, + "T": 589.0 }, { - "T": 311.0, - "V": 0.0 + "V": 0.0, + "T": 593.0 }, { - "T": 316.0, - "V": 0.0 - }, + "V": 0.0, + "T": 597.0 + } + ] + } + }, + { + "ScenarioId": "webapi", + "ScenarioName": "ASP.NET Core (Kestrel) minimal API", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 600.010589, + "Summary": { + "OperationsTotal": 304497, + "OpsPerSecondOverall": 507.4860437171385, + "TotalAllocatedBytes": 6106235336, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 2893762560, + "PeakWorkingSetBytes": 2893762560, + "HeapSizeBytes": 6106906624, + "TotalCommittedBytes": 6106906624, + "GcName": "ZeroGC.dll", + "Errors": 0 + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 596 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 596 + }, + "WorkingSetStats": { + "Avg": 1516776868.234506, + "P50": 1518071808.0, + "P90": 2618839040.0, + "P99": 2867691520.0, + "Max": 2890887168.0, + "Min": 144519168.0, + "Count": 597 + }, + "AllocRateMBStats": { + "Avg": 5.153288271603168, + "P50": 0.0, + "P90": 0.0, + "P99": 64.0, + "Max": 128.0, + "Min": 0.0, + "Count": 596 + }, + "OpsPerSecStats": { + "Avg": 507.5209380234506, + "P50": 505.0, + "P90": 516.0, + "P99": 529.0, + "Max": 545.0, + "Min": 496.0, + "Count": 597 + }, + "TimeSeries": { + "PauseTimePct": [ { - "T": 321.0, - "V": 0.0 + "V": 0.0, + "T": 1.0 }, { - "T": 326.0, - "V": 0.0 + "V": 0.0, + "T": 5.0 }, { - "T": 331.0, - "V": 0.0 + "V": 0.0, + "T": 9.0 }, { - "T": 336.0, - "V": 0.0 + "V": 0.0, + "T": 13.0 }, { - "T": 341.0, - "V": 0.0 + "V": 0.0, + "T": 17.0 }, { - "T": 346.0, - "V": 0.0 + "V": 0.0, + "T": 21.0 }, { - "T": 351.0, - "V": 0.0 + "V": 0.0, + "T": 25.0 }, { - "T": 356.0, - "V": 0.0 + "V": 0.0, + "T": 29.0 }, { - "T": 361.0, - "V": 0.0 + "V": 0.0, + "T": 33.0 }, { - "T": 366.0, - "V": 0.0 + "V": 0.0, + "T": 37.0 }, { - "T": 371.0, - "V": 0.0 + "V": 0.0, + "T": 41.0 }, { - "T": 376.0, - "V": 0.0 + "V": 0.0, + "T": 45.0 }, { - "T": 381.0, - "V": 0.0 + "V": 0.0, + "T": 49.0 }, { - "T": 386.0, - "V": 0.0 + "V": 0.0, + "T": 53.0 }, { - "T": 391.0, - "V": 0.0 + "V": 0.0, + "T": 57.0 }, { - "T": 396.0, - "V": 0.0 + "V": 0.0, + "T": 61.0 }, { - "T": 401.0, - "V": 0.0 + "V": 0.0, + "T": 65.0 }, { - "T": 406.0, - "V": 0.0 + "V": 0.0, + "T": 69.0 }, { - "T": 411.0, - "V": 0.0 + "V": 0.0, + "T": 73.0 }, { - "T": 416.0, - "V": 0.0 + "V": 0.0, + "T": 77.0 }, { - "T": 421.0, - "V": 0.0 + "V": 0.0, + "T": 81.0 }, { - "T": 426.0, - "V": 0.0 + "V": 0.0, + "T": 85.0 }, { - "T": 431.0, - "V": 0.0 + "V": 0.0, + "T": 89.0 }, { - "T": 436.0, - "V": 0.0 + "V": 0.0, + "T": 93.0 }, { - "T": 441.0, - "V": 0.0 + "V": 0.0, + "T": 97.0 }, { - "T": 446.0, - "V": 0.0 + "V": 0.0, + "T": 101.0 }, { - "T": 451.0, - "V": 0.0 + "V": 0.0, + "T": 105.0 }, { - "T": 456.0, - "V": 0.0 + "V": 0.0, + "T": 109.0 }, { - "T": 461.0, - "V": 0.0 + "V": 0.0, + "T": 113.0 }, { - "T": 466.0, - "V": 0.0 + "V": 0.0, + "T": 117.0 }, { - "T": 471.0, - "V": 0.0 + "V": 0.0, + "T": 121.0 }, { - "T": 476.0, - "V": 0.0 + "V": 0.0, + "T": 125.0 }, { - "T": 481.0, - "V": 0.0 + "V": 0.0, + "T": 129.0 }, { - "T": 486.0, - "V": 0.0 + "V": 0.0, + "T": 133.0 }, { - "T": 491.0, - "V": 0.0 + "V": 0.0, + "T": 137.0 }, { - "T": 496.0, - "V": 0.0 + "V": 0.0, + "T": 141.0 }, { - "T": 501.0, - "V": 0.0 + "V": 0.0, + "T": 145.0 }, { - "T": 506.0, - "V": 0.0 + "V": 0.0, + "T": 149.0 }, { - "T": 511.0, - "V": 0.0 + "V": 0.0, + "T": 153.0 }, { - "T": 516.0, - "V": 0.0 + "V": 0.0, + "T": 157.0 }, { - "T": 521.0, - "V": 0.0 + "V": 0.0, + "T": 161.0 }, { - "T": 526.0, - "V": 0.0 + "V": 0.0, + "T": 165.0 }, { - "T": 531.0, - "V": 0.0 + "V": 0.0, + "T": 169.0 }, { - "T": 536.0, - "V": 0.0 + "V": 0.0, + "T": 173.0 }, { - "T": 541.0, - "V": 0.0 + "V": 0.0, + "T": 177.0 }, { - "T": 546.0, - "V": 0.0 + "V": 0.0, + "T": 181.0 }, { - "T": 551.0, - "V": 0.0 + "V": 0.0, + "T": 185.0 }, { - "T": 556.0, - "V": 0.0 + "V": 0.0, + "T": 189.0 }, { - "T": 561.0, - "V": 0.0 + "V": 0.0, + "T": 193.0 }, { - "T": 566.0, - "V": 0.0 + "V": 0.0, + "T": 197.0 }, { - "T": 571.0, - "V": 0.0 + "V": 0.0, + "T": 201.0 }, { - "T": 576.0, - "V": 0.0 + "V": 0.0, + "T": 205.0 }, { - "T": 581.0, - "V": 0.0 + "V": 0.0, + "T": 209.0 }, { - "T": 586.0, - "V": 0.0 + "V": 0.0, + "T": 213.0 }, { - "T": 591.0, - "V": 0.0 + "V": 0.0, + "T": 217.0 }, { - "T": 596.0, - "V": 0.0 + "V": 0.0, + "T": 221.0 }, { - "T": 601.0, - "V": 0.0 - } - ] - } - }, - { - "ScenarioId": "gcperfsim-mt-throughput", - "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, no compute delay)", - "GcModeId": "workstation", - "GcModeName": "Workstation GC", - "DurationSeconds": 13.120092, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 3512.170521838638, - "TotalAllocatedBytes": 48318382464.0, - "Gen0Collections": 3216, - "Gen1Collections": 2412, - "Gen2Collections": 12, - "WorkingSetBytes": 1124925440.0, - "PeakWorkingSetBytes": 1124925440.0, - "HeapSizeBytes": 775405664.0, - "TotalCommittedBytes": 1079812096.0, - "GcName": "Workstation GC", - "TagbUsed": 45.0 - }, - "PauseTimePctStats": { - "Avg": 51.43022727272728, - "P50": 41.885200000000026, - "P90": 67.1637, - "P99": 72.59059999999997, - "Max": 72.59059999999997, - "Min": 38.1297, - "Count": 11 - }, - "PauseTimeMsStats": { - "Avg": 514.3022727272728, - "P50": 418.8520000000002, - "P90": 671.6370000000001, - "P99": 725.9059999999997, - "Max": 725.9059999999997, - "Min": 381.297, - "Count": 11 - }, - "WorkingSetStats": { - "Avg": 945202176.0, - "P50": 1040986112.0, - "P90": 1102811136.0, - "P99": 1124925440.0, - "Max": 1124925440.0, - "Min": 528900096.0, - "Count": 12 - }, - "AllocRateMBStats": { - "Avg": 3528.214861089533, - "P50": 3703.0615844726562, - "P90": 4264.538063049316, - "P99": 4916.221420288086, - "Max": 4916.221420288086, - "Min": 2209.1163330078125, - "Count": 11 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ - { - "V": 40.0356, - "T": 1.0 + "V": 0.0, + "T": 225.0 }, { - "V": 38.1297, - "T": 2.0 + "V": 0.0, + "T": 229.0 }, { - "V": 40.3889, - "T": 3.0 + "V": 0.0, + "T": 233.0 }, { - "V": 41.8852, - "T": 4.0 + "V": 0.0, + "T": 237.0 }, { - "V": 39.8996, - "T": 5.0 + "V": 0.0, + "T": 241.0 }, { - "V": 38.5545, - "T": 6.0 + "V": 0.0, + "T": 245.0 }, { - "V": 67.1637, - "T": 7.0 + "V": 0.0, + "T": 249.0 }, { - "V": 72.5906, - "T": 8.0 + "V": 0.0, + "T": 253.0 }, { - "V": 66.5869, - "T": 9.0 + "V": 0.0, + "T": 257.0 }, { - "V": 62.9506, - "T": 10.0 + "V": 0.0, + "T": 261.0 }, { - "V": 57.5472, - "T": 11.0 - } - ], - "PauseTimeMs": [ - { - "V": 400.356, - "T": 1.0 + "V": 0.0, + "T": 265.0 }, { - "V": 381.297, - "T": 2.0 + "V": 0.0, + "T": 269.0 }, { - "V": 403.889, - "T": 3.0 + "V": 0.0, + "T": 273.0 }, { - "V": 418.852, - "T": 4.0 + "V": 0.0, + "T": 277.0 }, { - "V": 398.996, - "T": 5.0 + "V": 0.0, + "T": 281.0 }, { - "V": 385.545, - "T": 6.0 + "V": 0.0, + "T": 285.0 }, { - "V": 671.637, - "T": 7.0 + "V": 0.0, + "T": 289.0 }, { - "V": 725.906, - "T": 8.0 + "V": 0.0, + "T": 293.0 }, { - "V": 665.869, - "T": 9.0 + "V": 0.0, + "T": 297.0 }, { - "V": 629.506, - "T": 10.0 + "V": 0.0, + "T": 301.0 }, { - "V": 575.472, - "T": 11.0 - } - ], - "WorkingSetMB": [ - { - "V": 504.4, - "T": 0.0 + "V": 0.0, + "T": 305.0 }, { - "V": 626.16, - "T": 1.0 + "V": 0.0, + "T": 309.0 }, { - "V": 722.8, - "T": 2.0 + "V": 0.0, + "T": 313.0 }, { - "V": 807.18, - "T": 3.0 + "V": 0.0, + "T": 317.0 }, { - "V": 894.6, - "T": 4.0 + "V": 0.0, + "T": 321.0 }, { - "V": 992.76, - "T": 5.0 + "V": 0.0, + "T": 325.0 }, { - "V": 1072.81, - "T": 6.0 + "V": 0.0, + "T": 329.0 }, { - "V": 1051.72, - "T": 7.0 + "V": 0.0, + "T": 333.0 }, { - "V": 1036.36, - "T": 8.0 + "V": 0.0, + "T": 337.0 }, { - "V": 1037.44, - "T": 9.0 + "V": 0.0, + "T": 341.0 }, { - "V": 1037.45, - "T": 10.0 + "V": 0.0, + "T": 345.0 }, { - "V": 1033.29, - "T": 11.0 - } - ], - "AllocRateMB": [ - { - "V": 4916.22, - "T": 1.0 + "V": 0.0, + "T": 349.0 }, { - "V": 4264.54, - "T": 2.0 + "V": 0.0, + "T": 353.0 }, { - "V": 3703.06, - "T": 3.0 + "V": 0.0, + "T": 357.0 }, { - "V": 4042.24, - "T": 4.0 + "V": 0.0, + "T": 361.0 }, { - "V": 3935.76, - "T": 5.0 + "V": 0.0, + "T": 365.0 }, { - "V": 3446.68, - "T": 6.0 + "V": 0.0, + "T": 369.0 }, { - "V": 2838.47, - "T": 7.0 + "V": 0.0, + "T": 373.0 }, { - "V": 2209.12, - "T": 8.0 + "V": 0.0, + "T": 377.0 }, { - "V": 2637.4, - "T": 9.0 + "V": 0.0, + "T": 381.0 }, { - "V": 3007.62, - "T": 10.0 + "V": 0.0, + "T": 385.0 }, { - "V": 3809.26, - "T": 11.0 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ + "V": 0.0, + "T": 389.0 + }, { "V": 0.0, - "T": 1.0 + "T": 393.0 }, { - "V": 3.0, - "T": 2.0 + "V": 0.0, + "T": 397.0 }, { - "V": 3.0, - "T": 3.0 + "V": 0.0, + "T": 401.0 }, { - "V": 6.0, - "T": 4.0 + "V": 0.0, + "T": 405.0 }, { - "V": 13.0, - "T": 5.0 + "V": 0.0, + "T": 409.0 }, { - "V": 12.0, - "T": 6.0 + "V": 0.0, + "T": 413.0 }, { - "V": 54.0, - "T": 7.0 + "V": 0.0, + "T": 417.0 }, { - "V": 116.0, - "T": 8.0 + "V": 0.0, + "T": 421.0 }, { - "V": 128.0, - "T": 9.0 + "V": 0.0, + "T": 425.0 }, { - "V": 145.0, - "T": 10.0 + "V": 0.0, + "T": 429.0 }, { - "V": 183.0, - "T": 11.0 - } - ] - } - }, - { - "ScenarioId": "gcperfsim-mt-throughput", - "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, no compute delay)", - "GcModeId": "server", - "GcModeName": "Server GC", - "DurationSeconds": 4.3643795, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 10558.202000126465, - "TotalAllocatedBytes": 48318382464.0, - "Gen0Collections": 1025, - "Gen1Collections": 259, - "Gen2Collections": 9, - "WorkingSetBytes": 1235128320.0, - "PeakWorkingSetBytes": 1235128320.0, - "HeapSizeBytes": 880396248.0, - "TotalCommittedBytes": 1187405824.0, - "GcName": "Server GC", - "TagbUsed": 45.0 - }, - "PauseTimePctStats": { - "Avg": 56.96005000000001, - "P50": 56.584999999999994, - "P90": 57.33510000000002, - "P99": 57.33510000000002, - "Max": 57.33510000000002, - "Min": 56.584999999999994, - "Count": 2 - }, - "PauseTimeMsStats": { - "Avg": 569.6005, - "P50": 565.8499999999999, - "P90": 573.3510000000001, - "P99": 573.3510000000001, - "Max": 573.3510000000001, - "Min": 565.8499999999999, - "Count": 2 - }, - "WorkingSetStats": { - "Avg": 975738197.3333334, - "P50": 947568640.0, - "P90": 1235128320.0, - "P99": 1235128320.0, - "Max": 1235128320.0, - "Min": 744517632.0, - "Count": 3 - }, - "AllocRateMBStats": { - "Avg": 12249.52598953247, - "P50": 11084.256813049316, - "P90": 13414.795166015625, - "P99": 13414.795166015625, - "Max": 13414.795166015625, - "Min": 11084.256813049316, - "Count": 2 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ + "V": 0.0, + "T": 433.0 + }, { - "V": 56.585, - "T": 1.0 + "V": 0.0, + "T": 437.0 }, { - "V": 57.3351, - "T": 2.0 - } - ], - "PauseTimeMs": [ + "V": 0.0, + "T": 441.0 + }, { - "V": 565.85, - "T": 1.0 + "V": 0.0, + "T": 445.0 }, { - "V": 573.351, - "T": 2.0 - } - ], - "WorkingSetMB": [ + "V": 0.0, + "T": 449.0 + }, { - "V": 710.03, - "T": 0.0 + "V": 0.0, + "T": 453.0 }, { - "V": 903.67, - "T": 1.0 + "V": 0.0, + "T": 457.0 }, { - "V": 1177.91, - "T": 2.0 - } - ], - "AllocRateMB": [ + "V": 0.0, + "T": 461.0 + }, { - "V": 11084.26, - "T": 1.0 + "V": 0.0, + "T": 465.0 }, { - "V": 13414.8, - "T": 2.0 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ + "V": 0.0, + "T": 469.0 + }, { - "V": 195.0, - "T": 1.0 + "V": 0.0, + "T": 473.0 }, { - "V": 238.0, - "T": 2.0 - } - ] - } - }, - { - "ScenarioId": "gcperfsim-mt-throughput", - "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, no compute delay)", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 1.979561, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 23277.888565298537, - "TotalAllocatedBytes": 48318382464.0, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 49489113088.0, - "PeakWorkingSetBytes": 49489113088.0, - "HeapSizeBytes": 51136954368.0, - "TotalCommittedBytes": 50600083456.0, - "GcName": "ZeroGC", - "TagbUsed": 45.0 - }, - "PauseTimePctStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "PauseTimeMsStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "WorkingSetStats": { - "Avg": 49489113088.0, - "P50": 49489113088.0, - "P90": 49489113088.0, - "P99": 49489113088.0, - "Max": 49489113088.0, - "Min": 49489113088.0, - "Count": 1 - }, - "AllocRateMBStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": null, - "PauseTimeMs": null, - "WorkingSetMB": { - "V": 47196.5, - "T": 0.0 - }, - "AllocRateMB": null, - "OpsPerSec": null, - "Gen0PerSec": null - } - }, - { - "ScenarioId": "gcperfsim-mt-throughput-moderate", - "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, moderate compute delay)", - "GcModeId": "workstation", - "GcModeName": "Workstation GC", - "DurationSeconds": 14.7838004, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 3116.9266984300266, - "TotalAllocatedBytes": 48318405328.0, - "Gen0Collections": 3216, - "Gen1Collections": 2399, - "Gen2Collections": 12, - "WorkingSetBytes": 1134526464.0, - "PeakWorkingSetBytes": 1134526464.0, - "HeapSizeBytes": 844100880.0, - "TotalCommittedBytes": 1089703936.0, - "GcName": "Workstation GC", - "TagbUsed": 45.0 - }, - "PauseTimePctStats": { - "Avg": 39.85953846153846, - "P50": 31.433500000000002, - "P90": 56.52589999999997, - "P99": 59.28550000000001, - "Max": 59.28550000000001, - "Min": 28.541099999999986, - "Count": 13 - }, - "PauseTimeMsStats": { - "Avg": 398.59538461538455, - "P50": 314.33500000000004, - "P90": 565.2589999999998, - "P99": 592.8550000000001, - "Max": 592.8550000000001, - "Min": 285.41099999999983, - "Count": 13 - }, - "WorkingSetStats": { - "Avg": 907629714.2857143, - "P50": 971452416.0, - "P90": 1113243648.0, - "P99": 1134526464.0, - "Max": 1134526464.0, - "Min": 491274240.0, - "Count": 14 - }, - "AllocRateMBStats": { - "Avg": 3201.973497244028, - "P50": 3245.5746002197266, - "P90": 3685.68009185791, - "P99": 3760.6579208374023, - "Max": 3760.6579208374023, - "Min": 2305.756004333496, - "Count": 13 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ + "V": 0.0, + "T": 477.0 + }, { - "V": 29.0903, - "T": 1.0 + "V": 0.0, + "T": 481.0 }, { - "V": 31.0533, - "T": 2.0 + "V": 0.0, + "T": 485.0 }, { - "V": 29.7605, - "T": 3.0 + "V": 0.0, + "T": 489.0 }, { - "V": 30.9455, - "T": 4.0 + "V": 0.0, + "T": 493.0 }, { - "V": 30.1837, - "T": 5.0 + "V": 0.0, + "T": 497.0 }, { - "V": 31.4335, - "T": 6.0 + "V": 0.0, + "T": 501.0 }, { - "V": 28.5411, - "T": 7.0 + "V": 0.0, + "T": 505.0 }, { - "V": 54.453, - "T": 8.0 + "V": 0.0, + "T": 509.0 }, { - "V": 59.2855, - "T": 9.0 + "V": 0.0, + "T": 513.0 }, { - "V": 56.5259, - "T": 10.0 + "V": 0.0, + "T": 517.0 }, { - "V": 52.0576, - "T": 11.0 + "V": 0.0, + "T": 521.0 }, { - "V": 47.1403, - "T": 12.0 + "V": 0.0, + "T": 525.0 }, { - "V": 37.7038, - "T": 13.0 + "V": 0.0, + "T": 529.0 + }, + { + "V": 0.0, + "T": 533.0 + }, + { + "V": 0.0, + "T": 537.0 + }, + { + "V": 0.0, + "T": 541.0 + }, + { + "V": 0.0, + "T": 545.0 + }, + { + "V": 0.0, + "T": 549.0 + }, + { + "V": 0.0, + "T": 553.0 + }, + { + "V": 0.0, + "T": 557.0 + }, + { + "V": 0.0, + "T": 561.0 + }, + { + "V": 0.0, + "T": 565.0 + }, + { + "V": 0.0, + "T": 569.0 + }, + { + "V": 0.0, + "T": 573.0 + }, + { + "V": 0.0, + "T": 577.0 + }, + { + "V": 0.0, + "T": 581.0 + }, + { + "V": 0.0, + "T": 585.0 + }, + { + "V": 0.0, + "T": 589.0 + }, + { + "V": 0.0, + "T": 593.0 } ], "PauseTimeMs": [ { - "V": 290.903, + "V": 0.0, "T": 1.0 }, { - "V": 310.533, - "T": 2.0 + "V": 0.0, + "T": 5.0 }, { - "V": 297.605, - "T": 3.0 + "V": 0.0, + "T": 9.0 }, { - "V": 309.455, - "T": 4.0 + "V": 0.0, + "T": 13.0 }, { - "V": 301.837, - "T": 5.0 + "V": 0.0, + "T": 17.0 }, { - "V": 314.335, - "T": 6.0 + "V": 0.0, + "T": 21.0 }, { - "V": 285.411, - "T": 7.0 + "V": 0.0, + "T": 25.0 }, { - "V": 544.53, - "T": 8.0 + "V": 0.0, + "T": 29.0 }, { - "V": 592.855, - "T": 9.0 + "V": 0.0, + "T": 33.0 + }, + { + "V": 0.0, + "T": 37.0 + }, + { + "V": 0.0, + "T": 41.0 + }, + { + "V": 0.0, + "T": 45.0 + }, + { + "V": 0.0, + "T": 49.0 + }, + { + "V": 0.0, + "T": 53.0 + }, + { + "V": 0.0, + "T": 57.0 + }, + { + "V": 0.0, + "T": 61.0 + }, + { + "V": 0.0, + "T": 65.0 + }, + { + "V": 0.0, + "T": 69.0 + }, + { + "V": 0.0, + "T": 73.0 + }, + { + "V": 0.0, + "T": 77.0 + }, + { + "V": 0.0, + "T": 81.0 + }, + { + "V": 0.0, + "T": 85.0 + }, + { + "V": 0.0, + "T": 89.0 + }, + { + "V": 0.0, + "T": 93.0 + }, + { + "V": 0.0, + "T": 97.0 + }, + { + "V": 0.0, + "T": 101.0 + }, + { + "V": 0.0, + "T": 105.0 + }, + { + "V": 0.0, + "T": 109.0 + }, + { + "V": 0.0, + "T": 113.0 + }, + { + "V": 0.0, + "T": 117.0 + }, + { + "V": 0.0, + "T": 121.0 + }, + { + "V": 0.0, + "T": 125.0 + }, + { + "V": 0.0, + "T": 129.0 + }, + { + "V": 0.0, + "T": 133.0 + }, + { + "V": 0.0, + "T": 137.0 + }, + { + "V": 0.0, + "T": 141.0 + }, + { + "V": 0.0, + "T": 145.0 + }, + { + "V": 0.0, + "T": 149.0 + }, + { + "V": 0.0, + "T": 153.0 + }, + { + "V": 0.0, + "T": 157.0 + }, + { + "V": 0.0, + "T": 161.0 + }, + { + "V": 0.0, + "T": 165.0 + }, + { + "V": 0.0, + "T": 169.0 + }, + { + "V": 0.0, + "T": 173.0 + }, + { + "V": 0.0, + "T": 177.0 + }, + { + "V": 0.0, + "T": 181.0 + }, + { + "V": 0.0, + "T": 185.0 + }, + { + "V": 0.0, + "T": 189.0 + }, + { + "V": 0.0, + "T": 193.0 + }, + { + "V": 0.0, + "T": 197.0 + }, + { + "V": 0.0, + "T": 201.0 + }, + { + "V": 0.0, + "T": 205.0 + }, + { + "V": 0.0, + "T": 209.0 + }, + { + "V": 0.0, + "T": 213.0 + }, + { + "V": 0.0, + "T": 217.0 + }, + { + "V": 0.0, + "T": 221.0 + }, + { + "V": 0.0, + "T": 225.0 + }, + { + "V": 0.0, + "T": 229.0 + }, + { + "V": 0.0, + "T": 233.0 + }, + { + "V": 0.0, + "T": 237.0 + }, + { + "V": 0.0, + "T": 241.0 + }, + { + "V": 0.0, + "T": 245.0 + }, + { + "V": 0.0, + "T": 249.0 + }, + { + "V": 0.0, + "T": 253.0 + }, + { + "V": 0.0, + "T": 257.0 + }, + { + "V": 0.0, + "T": 261.0 + }, + { + "V": 0.0, + "T": 265.0 + }, + { + "V": 0.0, + "T": 269.0 + }, + { + "V": 0.0, + "T": 273.0 + }, + { + "V": 0.0, + "T": 277.0 + }, + { + "V": 0.0, + "T": 281.0 + }, + { + "V": 0.0, + "T": 285.0 + }, + { + "V": 0.0, + "T": 289.0 + }, + { + "V": 0.0, + "T": 293.0 + }, + { + "V": 0.0, + "T": 297.0 + }, + { + "V": 0.0, + "T": 301.0 + }, + { + "V": 0.0, + "T": 305.0 + }, + { + "V": 0.0, + "T": 309.0 + }, + { + "V": 0.0, + "T": 313.0 + }, + { + "V": 0.0, + "T": 317.0 + }, + { + "V": 0.0, + "T": 321.0 + }, + { + "V": 0.0, + "T": 325.0 + }, + { + "V": 0.0, + "T": 329.0 + }, + { + "V": 0.0, + "T": 333.0 + }, + { + "V": 0.0, + "T": 337.0 + }, + { + "V": 0.0, + "T": 341.0 + }, + { + "V": 0.0, + "T": 345.0 + }, + { + "V": 0.0, + "T": 349.0 + }, + { + "V": 0.0, + "T": 353.0 + }, + { + "V": 0.0, + "T": 357.0 + }, + { + "V": 0.0, + "T": 361.0 + }, + { + "V": 0.0, + "T": 365.0 + }, + { + "V": 0.0, + "T": 369.0 + }, + { + "V": 0.0, + "T": 373.0 + }, + { + "V": 0.0, + "T": 377.0 + }, + { + "V": 0.0, + "T": 381.0 + }, + { + "V": 0.0, + "T": 385.0 + }, + { + "V": 0.0, + "T": 389.0 + }, + { + "V": 0.0, + "T": 393.0 + }, + { + "V": 0.0, + "T": 397.0 + }, + { + "V": 0.0, + "T": 401.0 + }, + { + "V": 0.0, + "T": 405.0 + }, + { + "V": 0.0, + "T": 409.0 + }, + { + "V": 0.0, + "T": 413.0 + }, + { + "V": 0.0, + "T": 417.0 + }, + { + "V": 0.0, + "T": 421.0 + }, + { + "V": 0.0, + "T": 425.0 + }, + { + "V": 0.0, + "T": 429.0 + }, + { + "V": 0.0, + "T": 433.0 + }, + { + "V": 0.0, + "T": 437.0 + }, + { + "V": 0.0, + "T": 441.0 + }, + { + "V": 0.0, + "T": 445.0 + }, + { + "V": 0.0, + "T": 449.0 + }, + { + "V": 0.0, + "T": 453.0 + }, + { + "V": 0.0, + "T": 457.0 + }, + { + "V": 0.0, + "T": 461.0 + }, + { + "V": 0.0, + "T": 465.0 + }, + { + "V": 0.0, + "T": 469.0 + }, + { + "V": 0.0, + "T": 473.0 + }, + { + "V": 0.0, + "T": 477.0 + }, + { + "V": 0.0, + "T": 481.0 + }, + { + "V": 0.0, + "T": 485.0 + }, + { + "V": 0.0, + "T": 489.0 + }, + { + "V": 0.0, + "T": 493.0 + }, + { + "V": 0.0, + "T": 497.0 + }, + { + "V": 0.0, + "T": 501.0 + }, + { + "V": 0.0, + "T": 505.0 + }, + { + "V": 0.0, + "T": 509.0 + }, + { + "V": 0.0, + "T": 513.0 + }, + { + "V": 0.0, + "T": 517.0 + }, + { + "V": 0.0, + "T": 521.0 + }, + { + "V": 0.0, + "T": 525.0 + }, + { + "V": 0.0, + "T": 529.0 + }, + { + "V": 0.0, + "T": 533.0 + }, + { + "V": 0.0, + "T": 537.0 + }, + { + "V": 0.0, + "T": 541.0 + }, + { + "V": 0.0, + "T": 545.0 + }, + { + "V": 0.0, + "T": 549.0 + }, + { + "V": 0.0, + "T": 553.0 + }, + { + "V": 0.0, + "T": 557.0 + }, + { + "V": 0.0, + "T": 561.0 + }, + { + "V": 0.0, + "T": 565.0 + }, + { + "V": 0.0, + "T": 569.0 + }, + { + "V": 0.0, + "T": 573.0 + }, + { + "V": 0.0, + "T": 577.0 + }, + { + "V": 0.0, + "T": 581.0 + }, + { + "V": 0.0, + "T": 585.0 + }, + { + "V": 0.0, + "T": 589.0 + }, + { + "V": 0.0, + "T": 593.0 + } + ], + "WorkingSetMB": [ + { + "V": 137.82, + "T": 0.0 + }, + { + "V": 157.69, + "T": 4.0 + }, + { + "V": 174.47, + "T": 8.0 + }, + { + "V": 188.25, + "T": 12.0 + }, + { + "V": 204.31, + "T": 16.0 + }, + { + "V": 222.64, + "T": 20.0 + }, + { + "V": 239.93, + "T": 24.0 + }, + { + "V": 257.94, + "T": 28.0 + }, + { + "V": 275.7, + "T": 32.0 + }, + { + "V": 292.6, + "T": 36.0 + }, + { + "V": 309.57, + "T": 40.0 + }, + { + "V": 327.5, + "T": 44.0 + }, + { + "V": 345.8, + "T": 48.0 + }, + { + "V": 363.73, + "T": 52.0 + }, + { + "V": 380.33, + "T": 56.0 + }, + { + "V": 399.07, + "T": 60.0 + }, + { + "V": 416.64, + "T": 64.0 + }, + { + "V": 434.32, + "T": 68.0 + }, + { + "V": 452.37, + "T": 72.0 + }, + { + "V": 469.79, + "T": 76.0 + }, + { + "V": 487.39, + "T": 80.0 + }, + { + "V": 504.71, + "T": 84.0 + }, + { + "V": 522.72, + "T": 88.0 + }, + { + "V": 540.5, + "T": 92.0 + }, + { + "V": 558.05, + "T": 96.0 + }, + { + "V": 576.07, + "T": 100.0 + }, + { + "V": 593.98, + "T": 104.0 + }, + { + "V": 611.34, + "T": 108.0 + }, + { + "V": 629.11, + "T": 112.0 + }, + { + "V": 646.3, + "T": 116.0 + }, + { + "V": 664.17, + "T": 120.0 + }, + { + "V": 681.82, + "T": 124.0 + }, + { + "V": 699.24, + "T": 128.0 + }, + { + "V": 717.34, + "T": 132.0 + }, + { + "V": 734.77, + "T": 136.0 + }, + { + "V": 752.31, + "T": 140.0 + }, + { + "V": 769.96, + "T": 144.0 + }, + { + "V": 787.33, + "T": 148.0 + }, + { + "V": 804.76, + "T": 152.0 + }, + { + "V": 822.3, + "T": 156.0 + }, + { + "V": 839.78, + "T": 160.0 + }, + { + "V": 857.71, + "T": 164.0 + }, + { + "V": 874.96, + "T": 168.0 + }, + { + "V": 892.78, + "T": 172.0 + }, + { + "V": 910.32, + "T": 176.0 + }, + { + "V": 927.97, + "T": 180.0 + }, + { + "V": 945.62, + "T": 184.0 + }, + { + "V": 963.04, + "T": 188.0 + }, + { + "V": 980.72, + "T": 192.0 + }, + { + "V": 998.13, + "T": 196.0 + }, + { + "V": 1015.56, + "T": 200.0 + }, + { + "V": 1033.03, + "T": 204.0 + }, + { + "V": 1051.05, + "T": 208.0 + }, + { + "V": 1068.34, + "T": 212.0 + }, + { + "V": 1086.0, + "T": 216.0 + }, + { + "V": 1103.69, + "T": 220.0 + }, + { + "V": 1121.33, + "T": 224.0 + }, + { + "V": 1138.93, + "T": 228.0 + }, + { + "V": 1156.58, + "T": 232.0 + }, + { + "V": 1174.07, + "T": 236.0 + }, + { + "V": 1192.29, + "T": 240.0 + }, + { + "V": 1209.85, + "T": 244.0 + }, + { + "V": 1227.27, + "T": 248.0 + }, + { + "V": 1244.96, + "T": 252.0 + }, + { + "V": 1262.37, + "T": 256.0 + }, + { + "V": 1279.97, + "T": 260.0 + }, + { + "V": 1297.53, + "T": 264.0 + }, + { + "V": 1315.07, + "T": 268.0 + }, + { + "V": 1332.57, + "T": 272.0 + }, + { + "V": 1350.62, + "T": 276.0 + }, + { + "V": 1368.11, + "T": 280.0 + }, + { + "V": 1385.82, + "T": 284.0 + }, + { + "V": 1403.49, + "T": 288.0 + }, + { + "V": 1421.29, + "T": 292.0 + }, + { + "V": 1439.04, + "T": 296.0 + }, + { + "V": 1456.56, + "T": 300.0 + }, + { + "V": 1474.2, + "T": 304.0 + }, + { + "V": 1491.58, + "T": 308.0 + }, + { + "V": 1509.13, + "T": 312.0 + }, + { + "V": 1527.0, + "T": 316.0 + }, + { + "V": 1544.34, + "T": 320.0 + }, + { + "V": 1562.0, + "T": 324.0 + }, + { + "V": 1579.61, + "T": 328.0 + }, + { + "V": 1597.07, + "T": 332.0 + }, + { + "V": 1613.12, + "T": 336.0 + }, + { + "V": 1630.98, + "T": 340.0 + }, + { + "V": 1648.66, + "T": 344.0 + }, + { + "V": 1666.07, + "T": 348.0 + }, + { + "V": 1683.75, + "T": 352.0 + }, + { + "V": 1701.36, + "T": 356.0 + }, + { + "V": 1718.83, + "T": 360.0 + }, + { + "V": 1736.47, + "T": 364.0 + }, + { + "V": 1754.06, + "T": 368.0 + }, + { + "V": 1772.6, + "T": 372.0 + }, + { + "V": 1790.18, + "T": 376.0 + }, + { + "V": 1806.96, + "T": 380.0 + }, + { + "V": 1824.48, + "T": 384.0 + }, + { + "V": 1842.02, + "T": 388.0 + }, + { + "V": 1859.61, + "T": 392.0 + }, + { + "V": 1877.27, + "T": 396.0 + }, + { + "V": 1895.04, + "T": 400.0 + }, + { + "V": 1912.48, + "T": 404.0 + }, + { + "V": 1929.76, + "T": 408.0 + }, + { + "V": 1947.34, + "T": 412.0 + }, + { + "V": 1964.98, + "T": 416.0 + }, + { + "V": 1982.65, + "T": 420.0 + }, + { + "V": 2000.34, + "T": 424.0 + }, + { + "V": 2017.78, + "T": 428.0 + }, + { + "V": 2035.52, + "T": 432.0 + }, + { + "V": 2053.16, + "T": 436.0 + }, + { + "V": 2070.64, + "T": 440.0 + }, + { + "V": 2087.96, + "T": 444.0 + }, + { + "V": 2105.41, + "T": 448.0 + }, + { + "V": 2123.22, + "T": 452.0 + }, + { + "V": 2140.75, + "T": 456.0 + }, + { + "V": 2158.45, + "T": 460.0 + }, + { + "V": 2176.09, + "T": 464.0 + }, + { + "V": 2193.54, + "T": 468.0 + }, + { + "V": 2210.98, + "T": 472.0 + }, + { + "V": 2228.78, + "T": 476.0 + }, + { + "V": 2247.07, + "T": 480.0 + }, + { + "V": 2264.19, + "T": 484.0 + }, + { + "V": 2281.77, + "T": 488.0 + }, + { + "V": 2299.34, + "T": 492.0 + }, + { + "V": 2317.11, + "T": 496.0 + }, + { + "V": 2334.75, + "T": 500.0 + }, + { + "V": 2352.38, + "T": 504.0 + }, + { + "V": 2369.92, + "T": 508.0 + }, + { + "V": 2387.23, + "T": 512.0 + }, + { + "V": 2405.26, + "T": 516.0 + }, + { + "V": 2422.73, + "T": 520.0 + }, + { + "V": 2440.62, + "T": 524.0 + }, + { + "V": 2458.21, + "T": 528.0 + }, + { + "V": 2475.63, + "T": 532.0 + }, + { + "V": 2493.02, + "T": 536.0 + }, + { + "V": 2510.62, + "T": 540.0 + }, + { + "V": 2528.03, + "T": 544.0 + }, + { + "V": 2545.31, + "T": 548.0 + }, + { + "V": 2562.97, + "T": 552.0 + }, + { + "V": 2580.63, + "T": 556.0 + }, + { + "V": 2598.2, + "T": 560.0 + }, + { + "V": 2616.0, + "T": 564.0 + }, + { + "V": 2633.54, + "T": 568.0 + }, + { + "V": 2651.07, + "T": 572.0 + }, + { + "V": 2668.65, + "T": 576.0 + }, + { + "V": 2686.5, + "T": 580.0 + }, + { + "V": 2704.16, + "T": 584.0 + }, + { + "V": 2721.64, + "T": 588.0 + }, + { + "V": 2739.05, + "T": 592.0 + }, + { + "V": 2756.96, + "T": 596.0 + } + ], + "AllocRateMB": [ + { + "V": 0.0, + "T": 1.0 + }, + { + "V": 0.0, + "T": 5.0 + }, + { + "V": 0.0, + "T": 9.0 + }, + { + "V": 0.0, + "T": 13.0 }, { - "V": 565.259, - "T": 10.0 + "V": 0.0, + "T": 17.0 }, { - "V": 520.576, - "T": 11.0 + "V": 0.0, + "T": 21.0 }, { - "V": 471.403, - "T": 12.0 + "V": 0.0, + "T": 25.0 }, { - "V": 377.038, - "T": 13.0 - } - ], - "WorkingSetMB": [ - { - "V": 468.52, - "T": 0.0 + "V": 0.0, + "T": 29.0 }, { - "V": 565.8, - "T": 1.0 + "V": 0.0, + "T": 33.0 }, { - "V": 653.81, - "T": 2.0 + "V": 0.0, + "T": 37.0 }, { - "V": 746.31, - "T": 3.0 + "V": 0.0, + "T": 41.0 }, { - "V": 831.27, - "T": 4.0 + "V": 0.0, + "T": 45.0 }, { - "V": 915.63, - "T": 5.0 + "V": 0.0, + "T": 49.0 }, { - "V": 999.99, - "T": 6.0 + "V": 0.0, + "T": 53.0 }, { - "V": 1081.97, - "T": 7.0 + "V": 0.0, + "T": 57.0 }, { - "V": 1061.67, - "T": 8.0 + "V": 0.0, + "T": 61.0 }, { - "V": 987.81, - "T": 9.0 + "V": 0.0, + "T": 65.0 }, { - "V": 971.73, - "T": 10.0 + "V": 0.0, + "T": 69.0 }, { - "V": 955.36, - "T": 11.0 + "V": 0.0, + "T": 73.0 }, { - "V": 951.84, - "T": 12.0 + "V": 0.0, + "T": 77.0 }, { - "V": 926.45, - "T": 13.0 - } - ], - "AllocRateMB": [ + "V": 0.0, + "T": 81.0 + }, { - "V": 3760.66, - "T": 1.0 + "V": 0.0, + "T": 85.0 }, { - "V": 3685.68, - "T": 2.0 + "V": 0.0, + "T": 89.0 }, { - "V": 3536.85, - "T": 3.0 + "V": 0.0, + "T": 93.0 }, { - "V": 3592.65, - "T": 4.0 + "V": 0.0, + "T": 97.0 }, { - "V": 3501.68, - "T": 5.0 + "V": 0.0, + "T": 101.0 }, { - "V": 3569.18, - "T": 6.0 + "V": 0.0, + "T": 105.0 }, { - "V": 3245.57, - "T": 7.0 + "V": 0.0, + "T": 109.0 }, { - "V": 2717.81, - "T": 8.0 + "V": 0.0, + "T": 113.0 }, { - "V": 2305.76, - "T": 9.0 + "V": 0.0, + "T": 117.0 }, { - "V": 2640.12, - "T": 10.0 + "V": 0.0, + "T": 121.0 }, { - "V": 2831.54, - "T": 11.0 + "V": 0.0, + "T": 125.0 }, { - "V": 3096.48, - "T": 12.0 + "V": 0.0, + "T": 129.0 }, { - "V": 3141.68, - "T": 13.0 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ + "V": 0.0, + "T": 133.0 + }, { "V": 0.0, - "T": 1.0 + "T": 137.0 }, { - "V": 1.0, - "T": 2.0 + "V": 0.0, + "T": 141.0 }, { - "V": 10.0, - "T": 3.0 + "V": 0.0, + "T": 145.0 }, { - "V": 6.0, - "T": 4.0 + "V": 0.0, + "T": 149.0 }, { - "V": 11.0, - "T": 5.0 + "V": 0.0, + "T": 153.0 }, { - "V": 9.0, - "T": 6.0 + "V": 0.0, + "T": 157.0 }, { - "V": 9.0, - "T": 7.0 + "V": 0.0, + "T": 161.0 }, { - "V": 31.0, - "T": 8.0 + "V": 0.0, + "T": 165.0 }, { - "V": 116.0, - "T": 9.0 + "V": 64.0, + "T": 169.0 }, { - "V": 128.0, - "T": 10.0 + "V": 0.0, + "T": 173.0 }, { - "V": 135.0, - "T": 11.0 + "V": 0.0, + "T": 177.0 }, { - "V": 143.0, - "T": 12.0 + "V": 0.0, + "T": 181.0 }, { - "V": 150.0, - "T": 13.0 - } - ] - } - }, - { - "ScenarioId": "gcperfsim-mt-throughput-moderate", - "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, moderate compute delay)", - "GcModeId": "server", - "GcModeName": "Server GC", - "DurationSeconds": 9.7786665, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 4712.301229520457, - "TotalAllocatedBytes": 48318405328.0, - "Gen0Collections": 695, - "Gen1Collections": 178, - "Gen2Collections": 9, - "WorkingSetBytes": 1193824256.0, - "PeakWorkingSetBytes": 1193824256.0, - "HeapSizeBytes": 950607584.0, - "TotalCommittedBytes": 1145364480.0, - "GcName": "Server GC", - "TagbUsed": 45.0 - }, - "PauseTimePctStats": { - "Avg": 18.456875, - "P50": 19.996900000000007, - "P90": 24.60770000000001, - "P99": 24.60770000000001, - "Max": 24.60770000000001, - "Min": 10.819, - "Count": 8 - }, - "PauseTimeMsStats": { - "Avg": 184.56875, - "P50": 199.96900000000005, - "P90": 246.0770000000001, - "P99": 246.0770000000001, - "Max": 246.0770000000001, - "Min": 108.19000000000001, - "Count": 8 - }, - "WorkingSetStats": { - "Avg": 1000901290.6666666, - "P50": 1083281408.0, - "P90": 1193824256.0, - "P99": 1193824256.0, - "Max": 1193824256.0, - "Min": 731312128.0, - "Count": 9 - }, - "AllocRateMBStats": { - "Avg": 4944.6399936676025, - "P50": 4874.172454833984, - "P90": 5608.565879821777, - "P99": 5608.565879821777, - "Max": 5608.565879821777, - "Min": 4293.37158203125, - "Count": 8 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ + "V": 0.0, + "T": 185.0 + }, { - "V": 19.1831, - "T": 1.0 + "V": 0.0, + "T": 189.0 }, { - "V": 21.4091, - "T": 2.0 + "V": 0.0, + "T": 193.0 }, { - "V": 19.9969, - "T": 3.0 + "V": 0.0, + "T": 197.0 }, { - "V": 20.4144, - "T": 4.0 + "V": 0.0, + "T": 201.0 }, { - "V": 20.1283, - "T": 5.0 + "V": 0.0, + "T": 205.0 }, { - "V": 24.6077, - "T": 6.0 + "V": 0.0, + "T": 209.0 }, { - "V": 10.819, - "T": 7.0 + "V": 0.0, + "T": 213.0 }, { - "V": 11.0965, - "T": 8.0 - } - ], - "PauseTimeMs": [ + "V": 0.0, + "T": 217.0 + }, { - "V": 191.831, - "T": 1.0 + "V": 0.0, + "T": 221.0 }, { - "V": 214.091, - "T": 2.0 + "V": 0.0, + "T": 225.0 }, { - "V": 199.969, - "T": 3.0 + "V": 63.9, + "T": 229.0 }, { - "V": 204.144, - "T": 4.0 + "V": 0.0, + "T": 233.0 }, { - "V": 201.283, - "T": 5.0 + "V": 0.0, + "T": 237.0 }, { - "V": 246.077, - "T": 6.0 + "V": 0.0, + "T": 241.0 }, { - "V": 108.19, - "T": 7.0 + "V": 0.0, + "T": 245.0 }, { - "V": 110.965, - "T": 8.0 - } - ], - "WorkingSetMB": [ + "V": 0.0, + "T": 249.0 + }, { - "V": 697.43, - "T": 0.0 + "V": 0.0, + "T": 253.0 }, { - "V": 765.84, - "T": 1.0 + "V": 0.0, + "T": 257.0 }, { - "V": 861.96, - "T": 2.0 + "V": 0.0, + "T": 261.0 }, { - "V": 949.46, - "T": 3.0 + "V": 0.0, + "T": 265.0 }, { - "V": 1033.1, - "T": 4.0 + "V": 0.0, + "T": 269.0 }, { - "V": 1138.52, - "T": 5.0 + "V": 0.0, + "T": 273.0 }, { - "V": 1033.17, - "T": 6.0 + "V": 0.0, + "T": 277.0 }, { - "V": 1054.5, - "T": 7.0 + "V": 0.0, + "T": 281.0 }, { - "V": 1056.81, - "T": 8.0 - } - ], - "AllocRateMB": [ + "V": 0.0, + "T": 285.0 + }, { - "V": 4293.37, - "T": 1.0 + "V": 0.0, + "T": 289.0 }, { - "V": 4656.21, - "T": 2.0 + "V": 0.0, + "T": 293.0 }, { - "V": 4950.9, - "T": 3.0 + "V": 0.0, + "T": 297.0 }, { - "V": 4874.17, - "T": 4.0 + "V": 0.0, + "T": 301.0 }, { - "V": 4940.3, - "T": 5.0 + "V": 0.0, + "T": 305.0 }, { - "V": 4633.89, - "T": 6.0 + "V": 0.0, + "T": 309.0 }, { - "V": 5599.71, - "T": 7.0 + "V": 0.0, + "T": 313.0 }, { - "V": 5608.57, - "T": 8.0 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ + "V": 0.0, + "T": 317.0 + }, { - "V": 53.0, - "T": 1.0 + "V": 0.0, + "T": 321.0 }, { - "V": 79.0, - "T": 2.0 + "V": 0.0, + "T": 325.0 }, { - "V": 85.0, - "T": 3.0 + "V": 0.0, + "T": 329.0 }, { - "V": 86.0, - "T": 4.0 + "V": 63.88, + "T": 333.0 }, { - "V": 85.0, - "T": 5.0 + "V": 0.0, + "T": 337.0 }, { - "V": 45.0, - "T": 6.0 + "V": 0.0, + "T": 341.0 }, { - "V": 14.0, - "T": 7.0 + "V": 0.0, + "T": 345.0 }, { - "V": 14.0, - "T": 8.0 - } - ] - } - }, - { - "ScenarioId": "gcperfsim-mt-throughput-moderate", - "ScenarioName": "GCPerfSim: 16-thread concurrent allocation throughput burst (GC-bound, moderate compute delay)", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 9.7851748, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 4709.166991173271, - "TotalAllocatedBytes": 48318405328.0, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 48710533120.0, - "PeakWorkingSetBytes": 48710533120.0, - "HeapSizeBytes": 51136954368.0, - "TotalCommittedBytes": 49928994816.0, - "GcName": "ZeroGC", - "TagbUsed": 45.0 - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 7 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 7 - }, - "WorkingSetStats": { - "Avg": 31244754944.0, - "P50": 29036789760.0, - "P90": 48710533120.0, - "P99": 48710533120.0, - "Max": 48710533120.0, - "Min": 11669245952.0, - "Count": 8 - }, - "AllocRateMBStats": { - "Avg": 5055.971106392996, - "P50": 5312.0, - "P90": 5632.0, - "P99": 5632.0, - "Max": 5632.0, - "Min": 3199.9190979003906, - "Count": 7 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ + "V": 0.0, + "T": 349.0 + }, { "V": 0.0, - "T": 1.0 + "T": 353.0 }, { "V": 0.0, - "T": 2.0 + "T": 357.0 }, { "V": 0.0, - "T": 3.0 + "T": 361.0 }, { "V": 0.0, - "T": 4.0 + "T": 365.0 }, { "V": 0.0, - "T": 5.0 + "T": 369.0 }, { "V": 0.0, - "T": 6.0 + "T": 373.0 }, { "V": 0.0, - "T": 7.0 - } - ], - "PauseTimeMs": [ + "T": 377.0 + }, { "V": 0.0, - "T": 1.0 + "T": 381.0 }, { - "V": 0.0, - "T": 2.0 + "V": 64.0, + "T": 385.0 }, { "V": 0.0, - "T": 3.0 + "T": 389.0 }, { "V": 0.0, - "T": 4.0 + "T": 393.0 }, { "V": 0.0, - "T": 5.0 + "T": 397.0 }, { "V": 0.0, - "T": 6.0 + "T": 401.0 }, { "V": 0.0, - "T": 7.0 - } - ], - "WorkingSetMB": [ - { - "V": 11128.66, - "T": 0.0 + "T": 405.0 }, { - "V": 16610.55, - "T": 1.0 + "V": 64.0, + "T": 409.0 }, { - "V": 22098.92, - "T": 2.0 + "V": 0.0, + "T": 413.0 }, { - "V": 27691.64, - "T": 3.0 + "V": 0.0, + "T": 417.0 }, { - "V": 32969.65, - "T": 4.0 + "V": 0.0, + "T": 421.0 }, { - "V": 38148.93, - "T": 5.0 + "V": 64.0, + "T": 425.0 }, { - "V": 43276.23, - "T": 6.0 + "V": 0.0, + "T": 429.0 }, { - "V": 46453.98, - "T": 7.0 - } - ], - "AllocRateMB": [ - { - "V": 5440.0, - "T": 1.0 + "V": 0.0, + "T": 433.0 }, { - "V": 5504.0, - "T": 2.0 + "V": 0.0, + "T": 437.0 }, { - "V": 5632.0, - "T": 3.0 + "V": 0.0, + "T": 441.0 }, { - "V": 5184.0, - "T": 4.0 + "V": 0.0, + "T": 445.0 }, { - "V": 5312.0, - "T": 5.0 + "V": 0.0, + "T": 449.0 }, { - "V": 5119.88, - "T": 6.0 + "V": 0.0, + "T": 453.0 }, - { - "V": 3199.92, - "T": 7.0 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ { "V": 0.0, - "T": 1.0 + "T": 457.0 }, { "V": 0.0, - "T": 2.0 + "T": 461.0 }, { "V": 0.0, - "T": 3.0 + "T": 465.0 }, { "V": 0.0, - "T": 4.0 + "T": 469.0 }, { "V": 0.0, - "T": 5.0 + "T": 473.0 }, { "V": 0.0, - "T": 6.0 + "T": 477.0 }, { "V": 0.0, - "T": 7.0 - } - ] - } - }, - { - "ScenarioId": "console", - "ScenarioName": "Console: mixed alloc-heavy CLI workload", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 600.0013409, - "Summary": { - "OperationsTotal": 9476251, - "OpsPerSecondOverall": 15793.716370342867, - "TotalAllocatedBytes": 2147352632, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 1490653184, - "PeakWorkingSetBytes": 1490653184, - "HeapSizeBytes": 2147483648, - "TotalCommittedBytes": 2147483648, - "GcName": "ZeroGC.dll" - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 597 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 597 - }, - "WorkingSetStats": { - "Avg": 772350486.2608696, - "P50": 771301376.0, - "P90": 1346342912.0, - "P99": 1475862528.0, - "Max": 1487847424.0, - "Min": 54665216.0, - "Count": 598 - }, - "AllocRateMBStats": { - "Avg": 2.46545235076342, - "P50": 0.0, - "P90": 0.0, - "P99": 64.0, - "Max": 64.0, - "Min": 0.0, - "Count": 597 - }, - "OpsPerSecStats": { - "Avg": 15793.896321070235, - "P50": 15750.0, - "P90": 16000.0, - "P99": 16000.0, - "Max": 16250.0, - "Min": 15500.0, - "Count": 598 - }, - "TimeSeries": { - "PauseTimePct": [ + "T": 481.0 + }, { "V": 0.0, - "T": 1.0 + "T": 485.0 }, { "V": 0.0, - "T": 5.0 + "T": 489.0 }, { "V": 0.0, - "T": 9.0 + "T": 493.0 }, { "V": 0.0, - "T": 13.0 + "T": 497.0 }, { "V": 0.0, - "T": 17.0 + "T": 501.0 }, { "V": 0.0, - "T": 21.0 + "T": 505.0 }, { "V": 0.0, - "T": 25.0 + "T": 509.0 }, { "V": 0.0, - "T": 29.0 + "T": 513.0 }, { - "V": 0.0, - "T": 33.0 + "V": 63.88, + "T": 517.0 }, { "V": 0.0, - "T": 37.0 + "T": 521.0 }, { "V": 0.0, - "T": 41.0 + "T": 525.0 }, { "V": 0.0, - "T": 45.0 + "T": 529.0 }, { "V": 0.0, - "T": 49.0 + "T": 533.0 }, { "V": 0.0, - "T": 53.0 + "T": 537.0 }, { "V": 0.0, - "T": 57.0 + "T": 541.0 }, { "V": 0.0, - "T": 61.0 + "T": 545.0 }, { "V": 0.0, - "T": 65.0 + "T": 549.0 }, { "V": 0.0, - "T": 69.0 + "T": 553.0 }, { "V": 0.0, - "T": 73.0 + "T": 557.0 }, { "V": 0.0, - "T": 77.0 + "T": 561.0 }, { - "V": 0.0, - "T": 81.0 + "V": 64.0, + "T": 565.0 }, { "V": 0.0, - "T": 85.0 + "T": 569.0 }, { "V": 0.0, - "T": 89.0 + "T": 573.0 }, { "V": 0.0, - "T": 93.0 + "T": 577.0 }, { "V": 0.0, - "T": 97.0 + "T": 581.0 }, { "V": 0.0, - "T": 101.0 + "T": 585.0 }, { "V": 0.0, - "T": 105.0 + "T": 589.0 }, { "V": 0.0, - "T": 109.0 + "T": 593.0 + } + ], + "OpsPerSec": [ + { + "V": 512.0, + "T": 0.0 }, { - "V": 0.0, - "T": 113.0 + "V": 506.0, + "T": 4.0 }, { - "V": 0.0, - "T": 117.0 + "V": 509.0, + "T": 8.0 }, { - "V": 0.0, - "T": 121.0 + "V": 524.0, + "T": 12.0 }, { - "V": 0.0, - "T": 125.0 + "V": 505.0, + "T": 16.0 }, { - "V": 0.0, - "T": 129.0 + "V": 504.0, + "T": 20.0 }, { - "V": 0.0, - "T": 133.0 + "V": 503.0, + "T": 24.0 }, { - "V": 0.0, - "T": 137.0 + "V": 508.0, + "T": 28.0 }, { - "V": 0.0, - "T": 141.0 + "V": 504.0, + "T": 32.0 }, { - "V": 0.0, - "T": 145.0 + "V": 504.0, + "T": 36.0 }, { - "V": 0.0, - "T": 149.0 + "V": 504.0, + "T": 40.0 }, { - "V": 0.0, - "T": 153.0 + "V": 506.0, + "T": 44.0 }, { - "V": 0.0, - "T": 157.0 + "V": 512.0, + "T": 48.0 }, { - "V": 0.0, - "T": 161.0 + "V": 501.0, + "T": 52.0 }, { - "V": 0.0, - "T": 165.0 + "V": 511.0, + "T": 56.0 }, { - "V": 0.0, - "T": 169.0 + "V": 511.0, + "T": 60.0 }, { - "V": 0.0, - "T": 173.0 + "V": 510.0, + "T": 64.0 }, { - "V": 0.0, - "T": 177.0 + "V": 504.0, + "T": 68.0 }, { - "V": 0.0, - "T": 181.0 + "V": 504.0, + "T": 72.0 }, { - "V": 0.0, - "T": 185.0 + "V": 512.0, + "T": 76.0 }, { - "V": 0.0, - "T": 189.0 + "V": 504.0, + "T": 80.0 }, { - "V": 0.0, - "T": 193.0 + "V": 519.0, + "T": 84.0 }, { - "V": 0.0, - "T": 197.0 + "V": 504.0, + "T": 88.0 }, { - "V": 0.0, - "T": 201.0 + "V": 504.0, + "T": 92.0 }, { - "V": 0.0, - "T": 205.0 + "V": 508.0, + "T": 96.0 }, { - "V": 0.0, - "T": 209.0 + "V": 518.0, + "T": 100.0 }, { - "V": 0.0, - "T": 213.0 + "V": 524.0, + "T": 104.0 }, { - "V": 0.0, - "T": 217.0 + "V": 505.0, + "T": 108.0 }, { - "V": 0.0, - "T": 221.0 + "V": 512.0, + "T": 112.0 }, { - "V": 0.0, - "T": 225.0 + "V": 526.0, + "T": 116.0 }, { - "V": 0.0, - "T": 229.0 + "V": 505.0, + "T": 120.0 }, { - "V": 0.0, - "T": 233.0 + "V": 519.0, + "T": 124.0 }, { - "V": 0.0, - "T": 237.0 + "V": 509.0, + "T": 128.0 }, { - "V": 0.0, - "T": 241.0 + "V": 507.0, + "T": 132.0 }, { - "V": 0.0, - "T": 245.0 + "V": 504.0, + "T": 136.0 }, { - "V": 0.0, - "T": 249.0 + "V": 509.0, + "T": 140.0 }, { - "V": 0.0, - "T": 253.0 + "V": 525.0, + "T": 144.0 }, { - "V": 0.0, - "T": 257.0 + "V": 504.0, + "T": 148.0 }, { - "V": 0.0, - "T": 261.0 + "V": 504.0, + "T": 152.0 }, { - "V": 0.0, - "T": 265.0 + "V": 516.0, + "T": 156.0 + }, + { + "V": 504.0, + "T": 160.0 + }, + { + "V": 512.0, + "T": 164.0 + }, + { + "V": 502.0, + "T": 168.0 + }, + { + "V": 504.0, + "T": 172.0 + }, + { + "V": 504.0, + "T": 176.0 + }, + { + "V": 498.0, + "T": 180.0 + }, + { + "V": 526.0, + "T": 184.0 + }, + { + "V": 503.0, + "T": 188.0 + }, + { + "V": 504.0, + "T": 192.0 + }, + { + "V": 501.0, + "T": 196.0 + }, + { + "V": 504.0, + "T": 200.0 + }, + { + "V": 520.0, + "T": 204.0 + }, + { + "V": 511.0, + "T": 208.0 + }, + { + "V": 504.0, + "T": 212.0 + }, + { + "V": 512.0, + "T": 216.0 + }, + { + "V": 517.0, + "T": 220.0 + }, + { + "V": 515.0, + "T": 224.0 + }, + { + "V": 504.0, + "T": 228.0 + }, + { + "V": 499.0, + "T": 232.0 + }, + { + "V": 509.0, + "T": 236.0 + }, + { + "V": 511.0, + "T": 240.0 + }, + { + "V": 508.0, + "T": 244.0 + }, + { + "V": 512.0, + "T": 248.0 + }, + { + "V": 513.0, + "T": 252.0 + }, + { + "V": 505.0, + "T": 256.0 + }, + { + "V": 504.0, + "T": 260.0 + }, + { + "V": 503.0, + "T": 264.0 }, { - "V": 0.0, - "T": 269.0 + "V": 504.0, + "T": 268.0 }, { - "V": 0.0, - "T": 273.0 + "V": 504.0, + "T": 272.0 }, { - "V": 0.0, - "T": 277.0 + "V": 520.0, + "T": 276.0 }, { - "V": 0.0, - "T": 281.0 + "V": 505.0, + "T": 280.0 }, { - "V": 0.0, - "T": 285.0 + "V": 545.0, + "T": 284.0 }, { - "V": 0.0, - "T": 289.0 + "V": 501.0, + "T": 288.0 }, { - "V": 0.0, - "T": 293.0 + "V": 504.0, + "T": 292.0 }, { - "V": 0.0, - "T": 297.0 + "V": 507.0, + "T": 296.0 }, { - "V": 0.0, - "T": 301.0 + "V": 501.0, + "T": 300.0 }, { - "V": 0.0, - "T": 305.0 + "V": 509.0, + "T": 304.0 }, { - "V": 0.0, - "T": 309.0 + "V": 512.0, + "T": 308.0 }, { - "V": 0.0, - "T": 313.0 + "V": 511.0, + "T": 312.0 }, { - "V": 0.0, - "T": 317.0 + "V": 504.0, + "T": 316.0 }, { - "V": 0.0, - "T": 321.0 + "V": 497.0, + "T": 320.0 }, { - "V": 0.0, - "T": 325.0 + "V": 505.0, + "T": 324.0 }, { - "V": 0.0, - "T": 329.0 + "V": 506.0, + "T": 328.0 }, { - "V": 0.0, - "T": 333.0 + "V": 502.0, + "T": 332.0 }, { - "V": 0.0, - "T": 337.0 + "V": 504.0, + "T": 336.0 }, { - "V": 0.0, - "T": 341.0 + "V": 504.0, + "T": 340.0 }, { - "V": 0.0, - "T": 345.0 + "V": 512.0, + "T": 344.0 }, { - "V": 0.0, - "T": 349.0 + "V": 504.0, + "T": 348.0 }, { - "V": 0.0, - "T": 353.0 + "V": 504.0, + "T": 352.0 }, { - "V": 0.0, - "T": 357.0 + "V": 505.0, + "T": 356.0 }, { - "V": 0.0, - "T": 361.0 + "V": 503.0, + "T": 360.0 }, { - "V": 0.0, - "T": 365.0 + "V": 518.0, + "T": 364.0 }, { - "V": 0.0, - "T": 369.0 + "V": 504.0, + "T": 368.0 }, { - "V": 0.0, - "T": 373.0 + "V": 503.0, + "T": 372.0 }, { - "V": 0.0, - "T": 377.0 + "V": 509.0, + "T": 376.0 }, { - "V": 0.0, - "T": 381.0 + "V": 507.0, + "T": 380.0 }, { - "V": 0.0, - "T": 385.0 + "V": 506.0, + "T": 384.0 }, { - "V": 0.0, - "T": 389.0 + "V": 504.0, + "T": 388.0 }, { - "V": 0.0, - "T": 393.0 + "V": 502.0, + "T": 392.0 }, { - "V": 0.0, - "T": 397.0 + "V": 504.0, + "T": 396.0 }, { - "V": 0.0, - "T": 401.0 + "V": 504.0, + "T": 400.0 }, { - "V": 0.0, - "T": 405.0 + "V": 508.0, + "T": 404.0 }, { - "V": 0.0, - "T": 409.0 + "V": 504.0, + "T": 408.0 }, { - "V": 0.0, - "T": 413.0 + "V": 500.0, + "T": 412.0 }, { - "V": 0.0, - "T": 417.0 + "V": 507.0, + "T": 416.0 }, { - "V": 0.0, - "T": 421.0 + "V": 512.0, + "T": 420.0 }, { - "V": 0.0, - "T": 425.0 + "V": 513.0, + "T": 424.0 }, { - "V": 0.0, - "T": 429.0 + "V": 512.0, + "T": 428.0 }, { - "V": 0.0, - "T": 433.0 + "V": 508.0, + "T": 432.0 }, { - "V": 0.0, - "T": 437.0 + "V": 498.0, + "T": 436.0 }, { - "V": 0.0, - "T": 441.0 + "V": 497.0, + "T": 440.0 }, { - "V": 0.0, - "T": 445.0 + "V": 515.0, + "T": 444.0 }, { - "V": 0.0, - "T": 449.0 + "V": 512.0, + "T": 448.0 }, { - "V": 0.0, - "T": 453.0 + "V": 504.0, + "T": 452.0 }, { - "V": 0.0, - "T": 457.0 + "V": 505.0, + "T": 456.0 }, { - "V": 0.0, - "T": 461.0 + "V": 504.0, + "T": 460.0 }, { - "V": 0.0, - "T": 465.0 + "V": 505.0, + "T": 464.0 }, { - "V": 0.0, - "T": 469.0 + "V": 505.0, + "T": 468.0 }, { - "V": 0.0, - "T": 473.0 + "V": 504.0, + "T": 472.0 }, { - "V": 0.0, - "T": 477.0 + "V": 504.0, + "T": 476.0 }, { - "V": 0.0, - "T": 481.0 + "V": 505.0, + "T": 480.0 }, { - "V": 0.0, - "T": 485.0 + "V": 529.0, + "T": 484.0 }, { - "V": 0.0, - "T": 489.0 + "V": 496.0, + "T": 488.0 }, { - "V": 0.0, - "T": 493.0 + "V": 496.0, + "T": 492.0 }, { - "V": 0.0, - "T": 497.0 + "V": 503.0, + "T": 496.0 }, { - "V": 0.0, - "T": 501.0 + "V": 505.0, + "T": 500.0 }, { - "V": 0.0, - "T": 505.0 + "V": 513.0, + "T": 504.0 }, { - "V": 0.0, - "T": 509.0 + "V": 502.0, + "T": 508.0 }, { - "V": 0.0, - "T": 513.0 + "V": 504.0, + "T": 512.0 }, { - "V": 0.0, - "T": 517.0 + "V": 504.0, + "T": 516.0 }, { - "V": 0.0, - "T": 521.0 + "V": 505.0, + "T": 520.0 }, { - "V": 0.0, - "T": 525.0 + "V": 514.0, + "T": 524.0 }, { - "V": 0.0, - "T": 529.0 + "V": 502.0, + "T": 528.0 }, { - "V": 0.0, - "T": 533.0 + "V": 503.0, + "T": 532.0 }, { - "V": 0.0, - "T": 537.0 + "V": 497.0, + "T": 536.0 }, { - "V": 0.0, - "T": 541.0 + "V": 512.0, + "T": 540.0 }, { - "V": 0.0, - "T": 545.0 + "V": 514.0, + "T": 544.0 }, { - "V": 0.0, - "T": 549.0 + "V": 504.0, + "T": 548.0 }, { - "V": 0.0, - "T": 553.0 + "V": 504.0, + "T": 552.0 }, { - "V": 0.0, - "T": 557.0 + "V": 500.0, + "T": 556.0 }, { - "V": 0.0, - "T": 561.0 + "V": 511.0, + "T": 560.0 }, { - "V": 0.0, - "T": 565.0 + "V": 507.0, + "T": 564.0 }, { - "V": 0.0, - "T": 569.0 + "V": 520.0, + "T": 568.0 }, { - "V": 0.0, - "T": 573.0 + "V": 504.0, + "T": 572.0 }, { - "V": 0.0, - "T": 577.0 + "V": 503.0, + "T": 576.0 }, { - "V": 0.0, - "T": 581.0 + "V": 499.0, + "T": 580.0 }, { - "V": 0.0, - "T": 585.0 + "V": 523.0, + "T": 584.0 }, { - "V": 0.0, - "T": 589.0 + "V": 510.0, + "T": 588.0 }, { - "V": 0.0, - "T": 593.0 + "V": 504.0, + "T": 592.0 }, { - "V": 0.0, - "T": 597.0 + "V": 511.0, + "T": 596.0 } ], - "PauseTimeMs": [ + "Gen0PerSec": [ { "V": 0.0, "T": 1.0 @@ -55128,615 +56280,679 @@ { "V": 0.0, "T": 593.0 - }, - { - "V": 0.0, - "T": 597.0 } - ], - "WorkingSetMB": [ + ] + } + }, + { + "ScenarioId": "zeroalloc", + "ScenarioName": "Console: near-zero-allocation numeric compute (matrix multiply)", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 600.0000076, + "Summary": { + "OperationsTotal": 693268, + "OpsPerSecondOverall": 1155.446652031009, + "TotalAllocatedBytes": 670957624, + "BytesAllocatedThisThreadDuringRun": 24688, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 70885376, + "PeakWorkingSetBytes": 70885376, + "HeapSizeBytes": 671088640, + "TotalCommittedBytes": 671088640, + "GcName": "ZeroGC.dll" + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 597 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 597 + }, + "WorkingSetStats": { + "Avg": 59970131.90635452, + "P50": 60129280.0, + "P90": 67358720.0, + "P99": 69025792.0, + "Max": 69140480.0, + "Min": 44462080.0, + "Count": 598 + }, + "AllocRateMBStats": { + "Avg": 0.10699338928938311, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 63.87505340576172, + "Min": 0.0, + "Count": 597 + }, + "OpsPerSecStats": { + "Avg": 1154.61872909699, + "P50": 1153.0, + "P90": 1164.0, + "P99": 1178.0, + "Max": 1537.0, + "Min": 1071.0, + "Count": 598 + }, + "TimeSeries": { + "PauseTimePct": [ { - "V": 52.13, - "T": 0.0 + "V": 0.0, + "T": 1.0 }, { - "V": 62.88, - "T": 4.0 + "V": 0.0, + "T": 5.0 }, { - "V": 72.15, - "T": 8.0 + "V": 0.0, + "T": 9.0 }, { - "V": 81.52, - "T": 12.0 + "V": 0.0, + "T": 13.0 }, { - "V": 90.69, - "T": 16.0 + "V": 0.0, + "T": 17.0 }, { - "V": 99.9, - "T": 20.0 + "V": 0.0, + "T": 21.0 }, { - "V": 109.08, - "T": 24.0 + "V": 0.0, + "T": 25.0 }, { - "V": 118.16, - "T": 28.0 + "V": 0.0, + "T": 29.0 }, { - "V": 127.54, - "T": 32.0 + "V": 0.0, + "T": 33.0 }, { - "V": 136.53, - "T": 36.0 + "V": 0.0, + "T": 37.0 }, { - "V": 145.72, - "T": 40.0 + "V": 0.0, + "T": 41.0 }, { - "V": 154.84, - "T": 44.0 + "V": 0.0, + "T": 45.0 }, { - "V": 164.0, - "T": 48.0 + "V": 0.0, + "T": 49.0 }, { - "V": 173.09, - "T": 52.0 + "V": 0.0, + "T": 53.0 }, { - "V": 182.31, - "T": 56.0 + "V": 0.0, + "T": 57.0 }, { - "V": 191.42, - "T": 60.0 + "V": 0.0, + "T": 61.0 }, { - "V": 200.65, - "T": 64.0 + "V": 0.0, + "T": 65.0 }, { - "V": 209.62, - "T": 68.0 + "V": 0.0, + "T": 69.0 }, { - "V": 218.84, - "T": 72.0 + "V": 0.0, + "T": 73.0 }, { - "V": 227.94, - "T": 76.0 + "V": 0.0, + "T": 77.0 }, { - "V": 237.04, - "T": 80.0 + "V": 0.0, + "T": 81.0 }, { - "V": 246.14, - "T": 84.0 + "V": 0.0, + "T": 85.0 }, { - "V": 255.32, - "T": 88.0 + "V": 0.0, + "T": 89.0 }, { - "V": 264.5, - "T": 92.0 + "V": 0.0, + "T": 93.0 }, { - "V": 273.66, - "T": 96.0 + "V": 0.0, + "T": 97.0 }, { - "V": 282.75, - "T": 100.0 + "V": 0.0, + "T": 101.0 }, { - "V": 291.91, - "T": 104.0 + "V": 0.0, + "T": 105.0 }, { - "V": 301.07, - "T": 108.0 + "V": 0.0, + "T": 109.0 }, { - "V": 310.16, - "T": 112.0 + "V": 0.0, + "T": 113.0 }, { - "V": 319.45, - "T": 116.0 + "V": 0.0, + "T": 117.0 }, { - "V": 328.47, - "T": 120.0 + "V": 0.0, + "T": 121.0 }, { - "V": 337.63, - "T": 124.0 + "V": 0.0, + "T": 125.0 }, { - "V": 346.79, - "T": 128.0 + "V": 0.0, + "T": 129.0 }, { - "V": 355.88, - "T": 132.0 + "V": 0.0, + "T": 133.0 }, { - "V": 365.11, - "T": 136.0 + "V": 0.0, + "T": 137.0 }, { - "V": 374.26, - "T": 140.0 + "V": 0.0, + "T": 141.0 }, { - "V": 383.41, - "T": 144.0 + "V": 0.0, + "T": 145.0 }, { - "V": 392.57, - "T": 148.0 + "V": 0.0, + "T": 149.0 }, { - "V": 401.66, - "T": 152.0 + "V": 0.0, + "T": 153.0 }, { - "V": 410.76, - "T": 156.0 + "V": 0.0, + "T": 157.0 }, { - "V": 419.92, - "T": 160.0 + "V": 0.0, + "T": 161.0 }, { - "V": 429.14, - "T": 164.0 + "V": 0.0, + "T": 165.0 }, { - "V": 438.23, - "T": 168.0 + "V": 0.0, + "T": 169.0 }, { - "V": 447.52, - "T": 172.0 + "V": 0.0, + "T": 173.0 }, { - "V": 456.6, - "T": 176.0 + "V": 0.0, + "T": 177.0 }, { - "V": 465.7, - "T": 180.0 + "V": 0.0, + "T": 181.0 }, { - "V": 474.81, - "T": 184.0 + "V": 0.0, + "T": 185.0 }, { - "V": 483.93, - "T": 188.0 + "V": 0.0, + "T": 189.0 }, { - "V": 493.11, - "T": 192.0 + "V": 0.0, + "T": 193.0 }, { - "V": 502.26, - "T": 196.0 + "V": 0.0, + "T": 197.0 }, { - "V": 511.36, - "T": 200.0 + "V": 0.0, + "T": 201.0 }, { - "V": 520.51, - "T": 204.0 + "V": 0.0, + "T": 205.0 }, { - "V": 529.66, - "T": 208.0 + "V": 0.0, + "T": 209.0 }, { - "V": 538.83, - "T": 212.0 + "V": 0.0, + "T": 213.0 }, { - "V": 547.85, - "T": 216.0 + "V": 0.0, + "T": 217.0 }, { - "V": 557.08, - "T": 220.0 + "V": 0.0, + "T": 221.0 }, { - "V": 566.17, - "T": 224.0 + "V": 0.0, + "T": 225.0 }, { - "V": 575.39, - "T": 228.0 + "V": 0.0, + "T": 229.0 }, { - "V": 584.61, - "T": 232.0 + "V": 0.0, + "T": 233.0 }, { - "V": 593.7, - "T": 236.0 + "V": 0.0, + "T": 237.0 }, { - "V": 602.86, - "T": 240.0 + "V": 0.0, + "T": 241.0 }, { - "V": 612.02, - "T": 244.0 + "V": 0.0, + "T": 245.0 }, { - "V": 621.11, - "T": 248.0 + "V": 0.0, + "T": 249.0 }, { - "V": 630.27, - "T": 252.0 + "V": 0.0, + "T": 253.0 }, { - "V": 639.36, - "T": 256.0 + "V": 0.0, + "T": 257.0 }, { - "V": 648.51, - "T": 260.0 + "V": 0.0, + "T": 261.0 }, { - "V": 657.67, - "T": 264.0 + "V": 0.0, + "T": 265.0 }, { - "V": 666.83, - "T": 268.0 + "V": 0.0, + "T": 269.0 }, { - "V": 675.93, - "T": 272.0 + "V": 0.0, + "T": 273.0 }, { - "V": 685.03, - "T": 276.0 + "V": 0.0, + "T": 277.0 }, { - "V": 694.22, - "T": 280.0 + "V": 0.0, + "T": 281.0 }, { - "V": 703.32, - "T": 284.0 + "V": 0.0, + "T": 285.0 }, { - "V": 712.55, - "T": 288.0 + "V": 0.0, + "T": 289.0 }, { - "V": 721.59, - "T": 292.0 + "V": 0.0, + "T": 293.0 }, { - "V": 730.73, - "T": 296.0 + "V": 0.0, + "T": 297.0 }, { - "V": 740.12, - "T": 300.0 + "V": 0.0, + "T": 301.0 }, { - "V": 749.2, - "T": 304.0 + "V": 0.0, + "T": 305.0 }, { - "V": 758.37, - "T": 308.0 + "V": 0.0, + "T": 309.0 }, { - "V": 767.52, - "T": 312.0 + "V": 0.0, + "T": 313.0 }, { - "V": 776.68, - "T": 316.0 + "V": 0.0, + "T": 317.0 }, { - "V": 785.83, - "T": 320.0 + "V": 0.0, + "T": 321.0 }, { - "V": 794.99, - "T": 324.0 + "V": 0.0, + "T": 325.0 }, { - "V": 804.08, - "T": 328.0 + "V": 0.0, + "T": 329.0 }, { - "V": 813.3, - "T": 332.0 + "V": 0.0, + "T": 333.0 }, { - "V": 822.34, - "T": 336.0 + "V": 0.0, + "T": 337.0 }, { - "V": 831.48, - "T": 340.0 + "V": 0.0, + "T": 341.0 }, { - "V": 840.77, - "T": 344.0 + "V": 0.0, + "T": 345.0 }, { - "V": 849.87, - "T": 348.0 + "V": 0.0, + "T": 349.0 }, { - "V": 858.96, - "T": 352.0 + "V": 0.0, + "T": 353.0 }, { - "V": 868.11, - "T": 356.0 + "V": 0.0, + "T": 357.0 }, { - "V": 877.27, - "T": 360.0 + "V": 0.0, + "T": 361.0 }, { - "V": 886.49, - "T": 364.0 + "V": 0.0, + "T": 365.0 }, { - "V": 895.52, - "T": 368.0 + "V": 0.0, + "T": 369.0 }, { - "V": 904.74, - "T": 372.0 + "V": 0.0, + "T": 373.0 }, { - "V": 913.9, - "T": 376.0 + "V": 0.0, + "T": 377.0 }, { - "V": 922.92, - "T": 380.0 + "V": 0.0, + "T": 381.0 }, { - "V": 932.09, - "T": 384.0 + "V": 0.0, + "T": 385.0 }, { - "V": 941.3, - "T": 388.0 + "V": 0.0, + "T": 389.0 }, { - "V": 950.39, - "T": 392.0 + "V": 0.0, + "T": 393.0 }, { - "V": 959.49, - "T": 396.0 + "V": 0.0, + "T": 397.0 }, { - "V": 968.66, - "T": 400.0 + "V": 0.0, + "T": 401.0 }, { - "V": 977.75, - "T": 404.0 + "V": 0.0, + "T": 405.0 }, { - "V": 986.92, - "T": 408.0 + "V": 0.0, + "T": 409.0 }, { - "V": 996.09, - "T": 412.0 + "V": 0.0, + "T": 413.0 }, { - "V": 1005.21, - "T": 416.0 + "V": 0.0, + "T": 417.0 }, { - "V": 1014.31, - "T": 420.0 + "V": 0.0, + "T": 421.0 }, { - "V": 1023.48, - "T": 424.0 + "V": 0.0, + "T": 425.0 }, { - "V": 1032.63, - "T": 428.0 + "V": 0.0, + "T": 429.0 }, { - "V": 1041.73, - "T": 432.0 + "V": 0.0, + "T": 433.0 }, { - "V": 1050.95, - "T": 436.0 + "V": 0.0, + "T": 437.0 }, { - "V": 1060.05, - "T": 440.0 + "V": 0.0, + "T": 441.0 }, { - "V": 1069.13, - "T": 444.0 + "V": 0.0, + "T": 445.0 }, { - "V": 1078.3, - "T": 448.0 + "V": 0.0, + "T": 449.0 }, { - "V": 1087.45, - "T": 452.0 + "V": 0.0, + "T": 453.0 }, { - "V": 1096.67, - "T": 456.0 + "V": 0.0, + "T": 457.0 }, { - "V": 1105.77, - "T": 460.0 + "V": 0.0, + "T": 461.0 }, { - "V": 1114.98, - "T": 464.0 + "V": 0.0, + "T": 465.0 }, { - "V": 1124.07, - "T": 468.0 + "V": 0.0, + "T": 469.0 }, { - "V": 1133.23, - "T": 472.0 + "V": 0.0, + "T": 473.0 }, { - "V": 1142.39, - "T": 476.0 + "V": 0.0, + "T": 477.0 }, { - "V": 1151.54, - "T": 480.0 + "V": 0.0, + "T": 481.0 }, { - "V": 1160.7, - "T": 484.0 + "V": 0.0, + "T": 485.0 }, { - "V": 1169.8, - "T": 488.0 + "V": 0.0, + "T": 489.0 }, { - "V": 1178.95, - "T": 492.0 + "V": 0.0, + "T": 493.0 }, { - "V": 1188.11, - "T": 496.0 + "V": 0.0, + "T": 497.0 }, { - "V": 1197.2, - "T": 500.0 + "V": 0.0, + "T": 501.0 }, { - "V": 1206.42, - "T": 504.0 + "V": 0.0, + "T": 505.0 }, { - "V": 1215.52, - "T": 508.0 + "V": 0.0, + "T": 509.0 }, { - "V": 1224.67, - "T": 512.0 + "V": 0.0, + "T": 513.0 }, { - "V": 1233.83, - "T": 516.0 + "V": 0.0, + "T": 517.0 }, { - "V": 1242.93, - "T": 520.0 + "V": 0.0, + "T": 521.0 }, { - "V": 1251.95, - "T": 524.0 + "V": 0.0, + "T": 525.0 }, { - "V": 1261.14, - "T": 528.0 + "V": 0.0, + "T": 529.0 }, { - "V": 1270.25, - "T": 532.0 + "V": 0.0, + "T": 533.0 }, { - "V": 1279.43, - "T": 536.0 + "V": 0.0, + "T": 537.0 }, { - "V": 1288.51, - "T": 540.0 + "V": 0.0, + "T": 541.0 }, { - "V": 1297.74, - "T": 544.0 + "V": 0.0, + "T": 545.0 }, { - "V": 1306.95, - "T": 548.0 + "V": 0.0, + "T": 549.0 }, { - "V": 1316.05, - "T": 552.0 + "V": 0.0, + "T": 553.0 }, { - "V": 1325.21, - "T": 556.0 + "V": 0.0, + "T": 557.0 }, { - "V": 1334.43, - "T": 560.0 + "V": 0.0, + "T": 561.0 }, { - "V": 1343.52, - "T": 564.0 + "V": 0.0, + "T": 565.0 }, { - "V": 1352.55, - "T": 568.0 + "V": 0.0, + "T": 569.0 }, { - "V": 1361.77, - "T": 572.0 + "V": 0.0, + "T": 573.0 }, { - "V": 1370.93, - "T": 576.0 + "V": 0.0, + "T": 577.0 }, { - "V": 1380.02, - "T": 580.0 + "V": 0.0, + "T": 581.0 }, { - "V": 1389.17, - "T": 584.0 + "V": 0.0, + "T": 585.0 }, { - "V": 1398.27, - "T": 588.0 + "V": 0.0, + "T": 589.0 }, { - "V": 1407.49, - "T": 592.0 + "V": 0.0, + "T": 593.0 }, { - "V": 1416.59, - "T": 596.0 + "V": 0.0, + "T": 597.0 } ], - "AllocRateMB": [ + "PauseTimeMs": [ { "V": 0.0, "T": 1.0 @@ -55938,7 +57154,7 @@ "T": 197.0 }, { - "V": 64.0, + "V": 0.0, "T": 201.0 }, { @@ -55966,7 +57182,7 @@ "T": 225.0 }, { - "V": 64.0, + "V": 0.0, "T": 229.0 }, { @@ -55994,7 +57210,7 @@ "T": 253.0 }, { - "V": 64.0, + "V": 0.0, "T": 257.0 }, { @@ -56278,7 +57494,7 @@ "T": 537.0 }, { - "V": 64.0, + "V": 0.0, "T": 541.0 }, { @@ -56306,7 +57522,7 @@ "T": 565.0 }, { - "V": 64.0, + "V": 0.0, "T": 569.0 }, { @@ -56334,613 +57550,613 @@ "T": 593.0 }, { - "V": 64.0, + "V": 0.0, "T": 597.0 } ], - "OpsPerSec": [ + "WorkingSetMB": [ { - "V": 16250.0, + "V": 42.4, "T": 0.0 }, { - "V": 15750.0, + "V": 45.79, "T": 4.0 }, { - "V": 15750.0, + "V": 48.34, "T": 8.0 }, { - "V": 15750.0, + "V": 48.6, "T": 12.0 }, { - "V": 15750.0, + "V": 48.75, "T": 16.0 }, { - "V": 15750.0, + "V": 48.89, "T": 20.0 }, { - "V": 16000.0, + "V": 49.09, "T": 24.0 }, { - "V": 15750.0, + "V": 49.17, "T": 28.0 }, { - "V": 15750.0, + "V": 49.51, "T": 32.0 }, { - "V": 15750.0, + "V": 49.62, "T": 36.0 }, { - "V": 15750.0, + "V": 49.72, "T": 40.0 }, { - "V": 16000.0, + "V": 49.81, "T": 44.0 }, { - "V": 15750.0, + "V": 49.91, "T": 48.0 }, { - "V": 15750.0, + "V": 50.04, "T": 52.0 }, { - "V": 16000.0, + "V": 50.14, "T": 56.0 }, { - "V": 15750.0, + "V": 50.25, "T": 60.0 }, { - "V": 16000.0, + "V": 50.41, "T": 64.0 }, { - "V": 15750.0, + "V": 50.52, "T": 68.0 }, { - "V": 15750.0, + "V": 50.62, "T": 72.0 }, { - "V": 16000.0, + "V": 50.7, "T": 76.0 }, { - "V": 15750.0, + "V": 50.87, "T": 80.0 }, { - "V": 15750.0, + "V": 50.96, "T": 84.0 }, { - "V": 16000.0, + "V": 51.05, "T": 88.0 }, { - "V": 15750.0, + "V": 51.21, "T": 92.0 }, { - "V": 15750.0, + "V": 51.31, "T": 96.0 }, { - "V": 15750.0, + "V": 51.41, "T": 100.0 }, { - "V": 15750.0, + "V": 51.55, "T": 104.0 }, { - "V": 15750.0, + "V": 51.66, "T": 108.0 }, { - "V": 15750.0, + "V": 51.75, "T": 112.0 }, { - "V": 15750.0, + "V": 51.91, "T": 116.0 }, { - "V": 15750.0, + "V": 52.0, "T": 120.0 }, { - "V": 15750.0, + "V": 52.1, "T": 124.0 }, { - "V": 15750.0, + "V": 52.25, "T": 128.0 }, { - "V": 15750.0, + "V": 52.34, "T": 132.0 }, { - "V": 15750.0, + "V": 52.5, "T": 136.0 }, { - "V": 16000.0, + "V": 52.59, "T": 140.0 }, { - "V": 15750.0, + "V": 52.69, "T": 144.0 }, { - "V": 15750.0, + "V": 52.78, "T": 148.0 }, { - "V": 15750.0, + "V": 52.91, "T": 152.0 }, { - "V": 16250.0, + "V": 53.02, "T": 156.0 }, { - "V": 15750.0, + "V": 53.14, "T": 160.0 }, { - "V": 15750.0, + "V": 53.26, "T": 164.0 }, { - "V": 15750.0, + "V": 53.38, "T": 168.0 }, { - "V": 16000.0, + "V": 53.54, "T": 172.0 }, { - "V": 15750.0, + "V": 53.62, "T": 176.0 }, { - "V": 15750.0, + "V": 53.73, "T": 180.0 }, { - "V": 16000.0, + "V": 53.88, "T": 184.0 }, { - "V": 15750.0, + "V": 53.98, "T": 188.0 }, { - "V": 15750.0, + "V": 54.07, "T": 192.0 }, { - "V": 15750.0, + "V": 54.22, "T": 196.0 }, { - "V": 15750.0, + "V": 54.32, "T": 200.0 }, { - "V": 15750.0, + "V": 54.41, "T": 204.0 }, { - "V": 15750.0, + "V": 54.57, "T": 208.0 }, { - "V": 15750.0, + "V": 54.66, "T": 212.0 }, { - "V": 15750.0, + "V": 54.82, "T": 216.0 }, { - "V": 15750.0, + "V": 54.91, "T": 220.0 }, { - "V": 15750.0, + "V": 55.0, "T": 224.0 }, { - "V": 15750.0, + "V": 55.17, "T": 228.0 }, { - "V": 15750.0, + "V": 55.26, "T": 232.0 }, { - "V": 15750.0, + "V": 55.36, "T": 236.0 }, { - "V": 15750.0, + "V": 55.51, "T": 240.0 }, { - "V": 15750.0, + "V": 55.6, "T": 244.0 }, { - "V": 15750.0, + "V": 55.7, "T": 248.0 }, { - "V": 15750.0, + "V": 55.79, "T": 252.0 }, { - "V": 15750.0, + "V": 55.92, "T": 256.0 }, { - "V": 15750.0, + "V": 56.03, "T": 260.0 }, { - "V": 15750.0, + "V": 56.2, "T": 264.0 }, { - "V": 15750.0, + "V": 56.29, "T": 268.0 }, { - "V": 16000.0, + "V": 56.38, "T": 272.0 }, { - "V": 15750.0, + "V": 56.54, "T": 276.0 }, { - "V": 15750.0, + "V": 56.63, "T": 280.0 }, { - "V": 15750.0, + "V": 56.79, "T": 284.0 }, { - "V": 15750.0, + "V": 56.88, "T": 288.0 }, { - "V": 15750.0, + "V": 56.98, "T": 292.0 }, { - "V": 15750.0, + "V": 57.07, "T": 296.0 }, { - "V": 15750.0, + "V": 57.39, "T": 300.0 }, { - "V": 15750.0, + "V": 57.48, "T": 304.0 }, { - "V": 15750.0, + "V": 57.64, "T": 308.0 }, { - "V": 15750.0, + "V": 57.73, "T": 312.0 }, { - "V": 16000.0, + "V": 57.83, "T": 316.0 }, { - "V": 15750.0, + "V": 57.98, "T": 320.0 }, { - "V": 15750.0, + "V": 58.08, "T": 324.0 }, { - "V": 15750.0, + "V": 58.17, "T": 328.0 }, { - "V": 15750.0, + "V": 58.32, "T": 332.0 }, { - "V": 15750.0, + "V": 58.42, "T": 336.0 }, { - "V": 15750.0, + "V": 58.51, "T": 340.0 }, { - "V": 15750.0, + "V": 58.67, "T": 344.0 }, { - "V": 15750.0, + "V": 58.77, "T": 348.0 }, { - "V": 15750.0, + "V": 58.86, "T": 352.0 }, { - "V": 15750.0, + "V": 59.02, "T": 356.0 }, { - "V": 15750.0, + "V": 59.1, "T": 360.0 }, { - "V": 15750.0, + "V": 59.27, "T": 364.0 }, { - "V": 15750.0, + "V": 59.35, "T": 368.0 }, { - "V": 15750.0, + "V": 59.45, "T": 372.0 }, { - "V": 16000.0, + "V": 59.54, "T": 376.0 }, { - "V": 15750.0, + "V": 59.7, "T": 380.0 }, { - "V": 15750.0, + "V": 59.79, "T": 384.0 }, { - "V": 15750.0, + "V": 59.95, "T": 388.0 }, { - "V": 15750.0, + "V": 60.04, "T": 392.0 }, { - "V": 15750.0, + "V": 60.14, "T": 396.0 }, { - "V": 15750.0, + "V": 60.25, "T": 400.0 }, { - "V": 15750.0, + "V": 60.35, "T": 404.0 }, { - "V": 15750.0, + "V": 60.43, "T": 408.0 }, { - "V": 15750.0, + "V": 60.55, "T": 412.0 }, { - "V": 16000.0, + "V": 60.67, "T": 416.0 }, { - "V": 15750.0, + "V": 60.79, "T": 420.0 }, { - "V": 15750.0, + "V": 60.94, "T": 424.0 }, { - "V": 15750.0, + "V": 61.04, "T": 428.0 }, { - "V": 15750.0, + "V": 61.12, "T": 432.0 }, { - "V": 16000.0, + "V": 61.29, "T": 436.0 }, { - "V": 16000.0, + "V": 61.38, "T": 440.0 }, { - "V": 15750.0, + "V": 61.48, "T": 444.0 }, { - "V": 15750.0, + "V": 61.6, "T": 448.0 }, { - "V": 15750.0, + "V": 61.7, "T": 452.0 }, { - "V": 16000.0, + "V": 61.88, "T": 456.0 }, { - "V": 15750.0, + "V": 61.98, "T": 460.0 }, { - "V": 16000.0, + "V": 62.06, "T": 464.0 }, { - "V": 15750.0, + "V": 62.23, "T": 468.0 }, { - "V": 15750.0, + "V": 62.32, "T": 472.0 }, { - "V": 15750.0, + "V": 62.41, "T": 476.0 }, { - "V": 15750.0, + "V": 62.57, "T": 480.0 }, { - "V": 15750.0, + "V": 62.66, "T": 484.0 }, { - "V": 15750.0, + "V": 62.76, "T": 488.0 }, { - "V": 15750.0, + "V": 62.91, "T": 492.0 }, { - "V": 15750.0, + "V": 63.01, "T": 496.0 }, { - "V": 15750.0, + "V": 63.1, "T": 500.0 }, { - "V": 15750.0, + "V": 63.26, "T": 504.0 }, { - "V": 15750.0, + "V": 63.36, "T": 508.0 }, { - "V": 15750.0, + "V": 63.45, "T": 512.0 }, { - "V": 15750.0, + "V": 63.6, "T": 516.0 }, { - "V": 15750.0, + "V": 63.7, "T": 520.0 }, { - "V": 15750.0, + "V": 63.79, "T": 524.0 }, { - "V": 15750.0, + "V": 63.95, "T": 528.0 }, { - "V": 15750.0, + "V": 64.04, "T": 532.0 }, { - "V": 16000.0, + "V": 64.2, "T": 536.0 }, { - "V": 15750.0, + "V": 64.29, "T": 540.0 }, { - "V": 16000.0, + "V": 64.39, "T": 544.0 }, { - "V": 15750.0, + "V": 64.5, "T": 548.0 }, { - "V": 15750.0, + "V": 64.6, "T": 552.0 }, { - "V": 15750.0, + "V": 64.73, "T": 556.0 }, { - "V": 15750.0, + "V": 64.88, "T": 560.0 }, { - "V": 16000.0, + "V": 64.98, "T": 564.0 }, { - "V": 15750.0, + "V": 65.07, "T": 568.0 }, { - "V": 15750.0, + "V": 65.23, "T": 572.0 }, { - "V": 16000.0, + "V": 65.32, "T": 576.0 }, { - "V": 15750.0, + "V": 65.42, "T": 580.0 }, { - "V": 15750.0, + "V": 65.58, "T": 584.0 }, { - "V": 15750.0, + "V": 65.67, "T": 588.0 }, { - "V": 15750.0, + "V": 65.83, "T": 592.0 }, { - "V": 16000.0, + "V": 65.92, "T": 596.0 } ], - "Gen0PerSec": [ + "AllocRateMB": [ { "V": 0.0, "T": 1.0 @@ -57541,674 +58757,610 @@ "V": 0.0, "T": 597.0 } - ] - } - }, - { - "ScenarioId": "webapi", - "ScenarioName": "ASP.NET Core (Kestrel) minimal API", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 600.010589, - "Summary": { - "OperationsTotal": 304497, - "OpsPerSecondOverall": 507.4860437171385, - "TotalAllocatedBytes": 6106235336, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 2893762560, - "PeakWorkingSetBytes": 2893762560, - "HeapSizeBytes": 6106906624, - "TotalCommittedBytes": 6106906624, - "GcName": "ZeroGC.dll", - "Errors": 0 - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 596 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 596 - }, - "WorkingSetStats": { - "Avg": 1516776868.234506, - "P50": 1518071808.0, - "P90": 2618839040.0, - "P99": 2867691520.0, - "Max": 2890887168.0, - "Min": 144519168.0, - "Count": 597 - }, - "AllocRateMBStats": { - "Avg": 5.153288271603168, - "P50": 0.0, - "P90": 0.0, - "P99": 64.0, - "Max": 128.0, - "Min": 0.0, - "Count": 596 - }, - "OpsPerSecStats": { - "Avg": 507.5209380234506, - "P50": 505.0, - "P90": 516.0, - "P99": 529.0, - "Max": 545.0, - "Min": 496.0, - "Count": 597 - }, - "TimeSeries": { - "PauseTimePct": [ + ], + "OpsPerSec": [ { - "V": 0.0, - "T": 1.0 + "V": 1537.0, + "T": 0.0 }, { - "V": 0.0, - "T": 5.0 + "V": 1384.0, + "T": 4.0 }, { - "V": 0.0, - "T": 9.0 + "V": 1143.0, + "T": 8.0 }, { - "V": 0.0, - "T": 13.0 + "V": 1134.0, + "T": 12.0 }, { - "V": 0.0, - "T": 17.0 + "V": 1154.0, + "T": 16.0 }, { - "V": 0.0, - "T": 21.0 + "V": 1155.0, + "T": 20.0 }, { - "V": 0.0, - "T": 25.0 + "V": 1156.0, + "T": 24.0 }, { - "V": 0.0, - "T": 29.0 + "V": 1143.0, + "T": 28.0 }, { - "V": 0.0, - "T": 33.0 + "V": 1151.0, + "T": 32.0 }, { - "V": 0.0, - "T": 37.0 + "V": 1172.0, + "T": 36.0 }, { - "V": 0.0, - "T": 41.0 + "V": 1157.0, + "T": 40.0 }, { - "V": 0.0, - "T": 45.0 + "V": 1154.0, + "T": 44.0 }, { - "V": 0.0, - "T": 49.0 + "V": 1160.0, + "T": 48.0 }, { - "V": 0.0, - "T": 53.0 + "V": 1153.0, + "T": 52.0 }, { - "V": 0.0, - "T": 57.0 + "V": 1159.0, + "T": 56.0 }, { - "V": 0.0, - "T": 61.0 + "V": 1159.0, + "T": 60.0 }, { - "V": 0.0, - "T": 65.0 + "V": 1152.0, + "T": 64.0 }, { - "V": 0.0, - "T": 69.0 + "V": 1156.0, + "T": 68.0 }, { - "V": 0.0, - "T": 73.0 + "V": 1165.0, + "T": 72.0 }, { - "V": 0.0, - "T": 77.0 + "V": 1156.0, + "T": 76.0 }, { - "V": 0.0, - "T": 81.0 + "V": 1151.0, + "T": 80.0 }, { - "V": 0.0, - "T": 85.0 + "V": 1170.0, + "T": 84.0 }, { - "V": 0.0, - "T": 89.0 + "V": 1150.0, + "T": 88.0 }, { - "V": 0.0, - "T": 93.0 + "V": 1151.0, + "T": 92.0 }, { - "V": 0.0, - "T": 97.0 + "V": 1154.0, + "T": 96.0 }, { - "V": 0.0, - "T": 101.0 + "V": 1146.0, + "T": 100.0 }, { - "V": 0.0, - "T": 105.0 + "V": 1157.0, + "T": 104.0 }, { - "V": 0.0, - "T": 109.0 + "V": 1155.0, + "T": 108.0 }, { - "V": 0.0, - "T": 113.0 + "V": 1169.0, + "T": 112.0 }, { - "V": 0.0, - "T": 117.0 + "V": 1153.0, + "T": 116.0 }, { - "V": 0.0, - "T": 121.0 + "V": 1139.0, + "T": 120.0 }, { - "V": 0.0, - "T": 125.0 + "V": 1163.0, + "T": 124.0 }, { - "V": 0.0, - "T": 129.0 + "V": 1160.0, + "T": 128.0 }, { - "V": 0.0, - "T": 133.0 + "V": 1151.0, + "T": 132.0 }, { - "V": 0.0, - "T": 137.0 + "V": 1155.0, + "T": 136.0 }, { - "V": 0.0, - "T": 141.0 + "V": 1157.0, + "T": 140.0 }, { - "V": 0.0, - "T": 145.0 + "V": 1159.0, + "T": 144.0 }, { - "V": 0.0, - "T": 149.0 + "V": 1157.0, + "T": 148.0 }, { - "V": 0.0, - "T": 153.0 + "V": 1160.0, + "T": 152.0 }, { - "V": 0.0, - "T": 157.0 + "V": 1155.0, + "T": 156.0 }, { - "V": 0.0, - "T": 161.0 + "V": 1167.0, + "T": 160.0 }, { - "V": 0.0, - "T": 165.0 + "V": 1157.0, + "T": 164.0 }, { - "V": 0.0, - "T": 169.0 + "V": 1157.0, + "T": 168.0 }, { - "V": 0.0, - "T": 173.0 + "V": 1153.0, + "T": 172.0 }, { - "V": 0.0, - "T": 177.0 + "V": 1154.0, + "T": 176.0 }, { - "V": 0.0, - "T": 181.0 + "V": 1158.0, + "T": 180.0 }, { - "V": 0.0, - "T": 185.0 + "V": 1170.0, + "T": 184.0 }, { - "V": 0.0, - "T": 189.0 + "V": 1155.0, + "T": 188.0 }, { - "V": 0.0, - "T": 193.0 + "V": 1167.0, + "T": 192.0 }, { - "V": 0.0, - "T": 197.0 + "V": 1155.0, + "T": 196.0 }, { - "V": 0.0, - "T": 201.0 + "V": 1157.0, + "T": 200.0 }, { - "V": 0.0, - "T": 205.0 + "V": 1148.0, + "T": 204.0 }, { - "V": 0.0, - "T": 209.0 + "V": 1158.0, + "T": 208.0 }, { - "V": 0.0, - "T": 213.0 + "V": 1169.0, + "T": 212.0 }, { - "V": 0.0, - "T": 217.0 + "V": 1158.0, + "T": 216.0 }, { - "V": 0.0, - "T": 221.0 + "V": 1157.0, + "T": 220.0 }, { - "V": 0.0, - "T": 225.0 + "V": 1155.0, + "T": 224.0 }, { - "V": 0.0, - "T": 229.0 + "V": 1152.0, + "T": 228.0 + }, + { + "V": 1161.0, + "T": 232.0 }, { - "V": 0.0, - "T": 233.0 + "V": 1142.0, + "T": 236.0 }, { - "V": 0.0, - "T": 237.0 + "V": 1146.0, + "T": 240.0 }, { - "V": 0.0, - "T": 241.0 + "V": 1147.0, + "T": 244.0 }, { - "V": 0.0, - "T": 245.0 + "V": 1159.0, + "T": 248.0 }, { - "V": 0.0, - "T": 249.0 + "V": 1153.0, + "T": 252.0 }, { - "V": 0.0, - "T": 253.0 + "V": 1147.0, + "T": 256.0 }, { - "V": 0.0, - "T": 257.0 + "V": 1159.0, + "T": 260.0 }, { - "V": 0.0, - "T": 261.0 + "V": 1157.0, + "T": 264.0 }, { - "V": 0.0, - "T": 265.0 + "V": 1136.0, + "T": 268.0 }, { - "V": 0.0, - "T": 269.0 + "V": 1151.0, + "T": 272.0 }, { - "V": 0.0, - "T": 273.0 + "V": 1153.0, + "T": 276.0 }, { - "V": 0.0, - "T": 277.0 + "V": 1150.0, + "T": 280.0 }, { - "V": 0.0, - "T": 281.0 + "V": 1151.0, + "T": 284.0 }, { - "V": 0.0, - "T": 285.0 + "V": 1145.0, + "T": 288.0 }, { - "V": 0.0, - "T": 289.0 + "V": 1170.0, + "T": 292.0 }, { - "V": 0.0, - "T": 293.0 + "V": 1155.0, + "T": 296.0 }, { - "V": 0.0, - "T": 297.0 + "V": 1132.0, + "T": 300.0 }, { - "V": 0.0, - "T": 301.0 + "V": 1139.0, + "T": 304.0 }, { - "V": 0.0, - "T": 305.0 + "V": 1170.0, + "T": 308.0 }, { - "V": 0.0, - "T": 309.0 + "V": 1136.0, + "T": 312.0 }, { - "V": 0.0, - "T": 313.0 + "V": 1151.0, + "T": 316.0 }, { - "V": 0.0, - "T": 317.0 + "V": 1161.0, + "T": 320.0 }, { - "V": 0.0, - "T": 321.0 + "V": 1145.0, + "T": 324.0 }, { - "V": 0.0, - "T": 325.0 + "V": 1156.0, + "T": 328.0 }, { - "V": 0.0, - "T": 329.0 + "V": 1135.0, + "T": 332.0 }, { - "V": 0.0, - "T": 333.0 + "V": 1155.0, + "T": 336.0 }, { - "V": 0.0, - "T": 337.0 + "V": 1157.0, + "T": 340.0 }, { - "V": 0.0, - "T": 341.0 + "V": 1146.0, + "T": 344.0 }, { - "V": 0.0, - "T": 345.0 + "V": 1145.0, + "T": 348.0 }, { - "V": 0.0, - "T": 349.0 + "V": 1170.0, + "T": 352.0 }, { - "V": 0.0, - "T": 353.0 + "V": 1155.0, + "T": 356.0 }, { - "V": 0.0, - "T": 357.0 + "V": 1145.0, + "T": 360.0 }, { - "V": 0.0, - "T": 361.0 + "V": 1153.0, + "T": 364.0 }, { - "V": 0.0, - "T": 365.0 + "V": 1157.0, + "T": 368.0 }, { - "V": 0.0, - "T": 369.0 + "V": 1155.0, + "T": 372.0 }, { - "V": 0.0, - "T": 373.0 + "V": 1149.0, + "T": 376.0 }, { - "V": 0.0, - "T": 377.0 + "V": 1158.0, + "T": 380.0 }, { - "V": 0.0, - "T": 381.0 + "V": 1136.0, + "T": 384.0 }, { - "V": 0.0, - "T": 385.0 + "V": 1141.0, + "T": 388.0 }, { - "V": 0.0, - "T": 389.0 + "V": 1122.0, + "T": 392.0 }, { - "V": 0.0, - "T": 393.0 + "V": 1148.0, + "T": 396.0 }, { - "V": 0.0, - "T": 397.0 + "V": 1147.0, + "T": 400.0 }, { - "V": 0.0, - "T": 401.0 + "V": 1145.0, + "T": 404.0 }, { - "V": 0.0, - "T": 405.0 + "V": 1159.0, + "T": 408.0 }, { - "V": 0.0, - "T": 409.0 + "V": 1145.0, + "T": 412.0 }, { - "V": 0.0, - "T": 413.0 + "V": 1159.0, + "T": 416.0 }, { - "V": 0.0, - "T": 417.0 + "V": 1154.0, + "T": 420.0 }, { - "V": 0.0, - "T": 421.0 + "V": 1150.0, + "T": 424.0 }, { - "V": 0.0, - "T": 425.0 + "V": 1152.0, + "T": 428.0 }, { - "V": 0.0, - "T": 429.0 + "V": 1137.0, + "T": 432.0 }, { - "V": 0.0, - "T": 433.0 + "V": 1145.0, + "T": 436.0 }, { - "V": 0.0, - "T": 437.0 + "V": 1147.0, + "T": 440.0 }, { - "V": 0.0, - "T": 441.0 + "V": 1108.0, + "T": 444.0 }, { - "V": 0.0, - "T": 445.0 + "V": 1147.0, + "T": 448.0 }, { - "V": 0.0, - "T": 449.0 + "V": 1139.0, + "T": 452.0 }, { - "V": 0.0, - "T": 453.0 + "V": 1157.0, + "T": 456.0 }, { - "V": 0.0, - "T": 457.0 + "V": 1160.0, + "T": 460.0 }, { - "V": 0.0, - "T": 461.0 + "V": 1152.0, + "T": 464.0 }, { - "V": 0.0, - "T": 465.0 + "V": 1145.0, + "T": 468.0 }, { - "V": 0.0, - "T": 469.0 + "V": 1161.0, + "T": 472.0 }, { - "V": 0.0, - "T": 473.0 + "V": 1142.0, + "T": 476.0 }, { - "V": 0.0, - "T": 477.0 + "V": 1156.0, + "T": 480.0 }, { - "V": 0.0, - "T": 481.0 + "V": 1148.0, + "T": 484.0 }, { - "V": 0.0, - "T": 485.0 + "V": 1157.0, + "T": 488.0 }, { - "V": 0.0, - "T": 489.0 + "V": 1142.0, + "T": 492.0 }, { - "V": 0.0, - "T": 493.0 + "V": 1145.0, + "T": 496.0 }, { - "V": 0.0, - "T": 497.0 + "V": 1155.0, + "T": 500.0 }, { - "V": 0.0, - "T": 501.0 + "V": 1150.0, + "T": 504.0 }, { - "V": 0.0, - "T": 505.0 + "V": 1171.0, + "T": 508.0 }, { - "V": 0.0, - "T": 509.0 + "V": 1143.0, + "T": 512.0 }, { - "V": 0.0, - "T": 513.0 + "V": 1152.0, + "T": 516.0 }, { - "V": 0.0, - "T": 517.0 + "V": 1159.0, + "T": 520.0 }, { - "V": 0.0, - "T": 521.0 + "V": 1146.0, + "T": 524.0 }, { - "V": 0.0, - "T": 525.0 + "V": 1145.0, + "T": 528.0 }, { - "V": 0.0, - "T": 529.0 + "V": 1158.0, + "T": 532.0 }, { - "V": 0.0, - "T": 533.0 + "V": 1158.0, + "T": 536.0 }, { - "V": 0.0, - "T": 537.0 + "V": 1144.0, + "T": 540.0 }, { - "V": 0.0, - "T": 541.0 + "V": 1152.0, + "T": 544.0 }, { - "V": 0.0, - "T": 545.0 + "V": 1163.0, + "T": 548.0 }, { - "V": 0.0, - "T": 549.0 + "V": 1137.0, + "T": 552.0 }, { - "V": 0.0, - "T": 553.0 + "V": 1145.0, + "T": 556.0 }, { - "V": 0.0, - "T": 557.0 + "V": 1156.0, + "T": 560.0 }, { - "V": 0.0, - "T": 561.0 + "V": 1140.0, + "T": 564.0 }, { - "V": 0.0, - "T": 565.0 + "V": 1156.0, + "T": 568.0 }, { - "V": 0.0, - "T": 569.0 + "V": 1141.0, + "T": 572.0 }, { - "V": 0.0, - "T": 573.0 + "V": 1145.0, + "T": 576.0 }, { - "V": 0.0, - "T": 577.0 + "V": 1147.0, + "T": 580.0 }, { - "V": 0.0, - "T": 581.0 + "V": 1148.0, + "T": 584.0 }, { - "V": 0.0, - "T": 585.0 + "V": 1149.0, + "T": 588.0 }, { - "V": 0.0, - "T": 589.0 + "V": 1168.0, + "T": 592.0 }, { - "V": 0.0, - "T": 593.0 + "V": 1158.0, + "T": 596.0 } ], - "PauseTimeMs": [ + "Gen0PerSec": [ { "V": 0.0, "T": 1.0 @@ -58595,5071 +59747,5297 @@ }, { "V": 0.0, - "T": 385.0 + "T": 385.0 + }, + { + "V": 0.0, + "T": 389.0 + }, + { + "V": 0.0, + "T": 393.0 + }, + { + "V": 0.0, + "T": 397.0 + }, + { + "V": 0.0, + "T": 401.0 + }, + { + "V": 0.0, + "T": 405.0 + }, + { + "V": 0.0, + "T": 409.0 + }, + { + "V": 0.0, + "T": 413.0 + }, + { + "V": 0.0, + "T": 417.0 + }, + { + "V": 0.0, + "T": 421.0 + }, + { + "V": 0.0, + "T": 425.0 + }, + { + "V": 0.0, + "T": 429.0 + }, + { + "V": 0.0, + "T": 433.0 + }, + { + "V": 0.0, + "T": 437.0 + }, + { + "V": 0.0, + "T": 441.0 + }, + { + "V": 0.0, + "T": 445.0 + }, + { + "V": 0.0, + "T": 449.0 + }, + { + "V": 0.0, + "T": 453.0 + }, + { + "V": 0.0, + "T": 457.0 + }, + { + "V": 0.0, + "T": 461.0 + }, + { + "V": 0.0, + "T": 465.0 + }, + { + "V": 0.0, + "T": 469.0 + }, + { + "V": 0.0, + "T": 473.0 + }, + { + "V": 0.0, + "T": 477.0 + }, + { + "V": 0.0, + "T": 481.0 + }, + { + "V": 0.0, + "T": 485.0 + }, + { + "V": 0.0, + "T": 489.0 + }, + { + "V": 0.0, + "T": 493.0 + }, + { + "V": 0.0, + "T": 497.0 + }, + { + "V": 0.0, + "T": 501.0 + }, + { + "V": 0.0, + "T": 505.0 + }, + { + "V": 0.0, + "T": 509.0 + }, + { + "V": 0.0, + "T": 513.0 + }, + { + "V": 0.0, + "T": 517.0 + }, + { + "V": 0.0, + "T": 521.0 + }, + { + "V": 0.0, + "T": 525.0 + }, + { + "V": 0.0, + "T": 529.0 }, { "V": 0.0, - "T": 389.0 + "T": 533.0 }, { "V": 0.0, - "T": 393.0 + "T": 537.0 }, { "V": 0.0, - "T": 397.0 + "T": 541.0 }, { "V": 0.0, - "T": 401.0 + "T": 545.0 }, { "V": 0.0, - "T": 405.0 + "T": 549.0 }, { "V": 0.0, - "T": 409.0 + "T": 553.0 }, { "V": 0.0, - "T": 413.0 + "T": 557.0 }, { "V": 0.0, - "T": 417.0 + "T": 561.0 }, { "V": 0.0, - "T": 421.0 + "T": 565.0 }, { "V": 0.0, - "T": 425.0 + "T": 569.0 }, { "V": 0.0, - "T": 429.0 + "T": 573.0 }, { "V": 0.0, - "T": 433.0 + "T": 577.0 }, { "V": 0.0, - "T": 437.0 + "T": 581.0 }, { "V": 0.0, - "T": 441.0 + "T": 585.0 }, { "V": 0.0, - "T": 445.0 + "T": 589.0 }, { "V": 0.0, - "T": 449.0 + "T": 593.0 }, { "V": 0.0, - "T": 453.0 - }, + "T": 597.0 + } + ] + } + }, + { + "ScenarioId": "dotllm-serve", + "ScenarioName": "dotLLM: zero-alloc-inference HTTP server (github.com/kkokosa/dotLLM)", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 600, + "Summary": { + "OperationsTotal": 2688.0, + "OpsPerSecondOverall": 4.48, + "TotalAllocatedBytes": 8186773560.0, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 770068480.0, + "PeakWorkingSetBytes": 770068480.0, + "HeapSizeBytes": null, + "TotalCommittedBytes": 13220446208.0, + "GcName": "ZeroGC" + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 604 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 604 + }, + "WorkingSetStats": { + "Avg": 591793586.9884298, + "P50": 583380992.0, + "P90": 733085696.0, + "P99": 768954368.0, + "Max": 770068480.0, + "Min": 427159552.0, + "Count": 605 + }, + "AllocRateMBStats": { + "Avg": 12.92635046093669, + "P50": 0.0, + "P90": 64.0, + "P99": 128.0, + "Max": 128.0, + "Min": 0.0, + "Count": 604 + }, + "OpsPerSecStats": { + "Avg": 4.579216354344123, + "P50": 5.0, + "P90": 7.0, + "P99": 8.0, + "Max": 9.0, + "Min": 1.0, + "Count": 587 + }, + "TimeSeries": { + "PauseTimePct": [ { "V": 0.0, - "T": 457.0 + "T": 1.0 }, { "V": 0.0, - "T": 461.0 + "T": 6.0 }, { "V": 0.0, - "T": 465.0 + "T": 11.0 }, { "V": 0.0, - "T": 469.0 + "T": 16.0 }, { "V": 0.0, - "T": 473.0 + "T": 21.0 }, { "V": 0.0, - "T": 477.0 + "T": 26.0 }, { "V": 0.0, - "T": 481.0 + "T": 31.0 }, { "V": 0.0, - "T": 485.0 + "T": 36.0 }, { "V": 0.0, - "T": 489.0 + "T": 41.0 }, { "V": 0.0, - "T": 493.0 + "T": 46.0 }, { "V": 0.0, - "T": 497.0 + "T": 51.0 }, { "V": 0.0, - "T": 501.0 + "T": 56.0 }, { "V": 0.0, - "T": 505.0 + "T": 61.0 }, { "V": 0.0, - "T": 509.0 + "T": 66.0 }, { "V": 0.0, - "T": 513.0 + "T": 71.0 }, { "V": 0.0, - "T": 517.0 + "T": 76.0 }, { "V": 0.0, - "T": 521.0 + "T": 81.0 }, { "V": 0.0, - "T": 525.0 + "T": 86.0 }, { "V": 0.0, - "T": 529.0 + "T": 91.0 }, { "V": 0.0, - "T": 533.0 + "T": 96.0 }, { "V": 0.0, - "T": 537.0 + "T": 101.0 }, { "V": 0.0, - "T": 541.0 + "T": 106.0 }, { "V": 0.0, - "T": 545.0 + "T": 111.0 }, { "V": 0.0, - "T": 549.0 + "T": 116.0 }, { "V": 0.0, - "T": 553.0 + "T": 121.0 }, { "V": 0.0, - "T": 557.0 + "T": 126.0 }, { "V": 0.0, - "T": 561.0 + "T": 131.0 }, { "V": 0.0, - "T": 565.0 + "T": 136.0 }, { "V": 0.0, - "T": 569.0 + "T": 141.0 }, { "V": 0.0, - "T": 573.0 + "T": 146.0 }, { "V": 0.0, - "T": 577.0 + "T": 151.0 }, { "V": 0.0, - "T": 581.0 + "T": 156.0 }, { "V": 0.0, - "T": 585.0 + "T": 161.0 }, { "V": 0.0, - "T": 589.0 + "T": 166.0 }, { "V": 0.0, - "T": 593.0 - } - ], - "WorkingSetMB": [ - { - "V": 137.82, - "T": 0.0 + "T": 171.0 }, { - "V": 157.69, - "T": 4.0 + "V": 0.0, + "T": 176.0 }, { - "V": 174.47, - "T": 8.0 + "V": 0.0, + "T": 181.0 }, { - "V": 188.25, - "T": 12.0 + "V": 0.0, + "T": 186.0 }, { - "V": 204.31, - "T": 16.0 + "V": 0.0, + "T": 191.0 }, { - "V": 222.64, - "T": 20.0 + "V": 0.0, + "T": 196.0 }, { - "V": 239.93, - "T": 24.0 + "V": 0.0, + "T": 201.0 }, { - "V": 257.94, - "T": 28.0 + "V": 0.0, + "T": 206.0 }, { - "V": 275.7, - "T": 32.0 + "V": 0.0, + "T": 211.0 }, { - "V": 292.6, - "T": 36.0 + "V": 0.0, + "T": 216.0 }, { - "V": 309.57, - "T": 40.0 + "V": 0.0, + "T": 221.0 }, { - "V": 327.5, - "T": 44.0 + "V": 0.0, + "T": 226.0 }, { - "V": 345.8, - "T": 48.0 + "V": 0.0, + "T": 231.0 }, { - "V": 363.73, - "T": 52.0 + "V": 0.0, + "T": 236.0 }, { - "V": 380.33, - "T": 56.0 + "V": 0.0, + "T": 241.0 }, { - "V": 399.07, - "T": 60.0 + "V": 0.0, + "T": 246.0 }, { - "V": 416.64, - "T": 64.0 + "V": 0.0, + "T": 251.0 }, { - "V": 434.32, - "T": 68.0 + "V": 0.0, + "T": 256.0 }, { - "V": 452.37, - "T": 72.0 + "V": 0.0, + "T": 261.0 }, { - "V": 469.79, - "T": 76.0 + "V": 0.0, + "T": 266.0 }, { - "V": 487.39, - "T": 80.0 + "V": 0.0, + "T": 271.0 }, { - "V": 504.71, - "T": 84.0 + "V": 0.0, + "T": 276.0 }, { - "V": 522.72, - "T": 88.0 + "V": 0.0, + "T": 281.0 }, { - "V": 540.5, - "T": 92.0 + "V": 0.0, + "T": 286.0 }, { - "V": 558.05, - "T": 96.0 + "V": 0.0, + "T": 291.0 }, { - "V": 576.07, - "T": 100.0 + "V": 0.0, + "T": 296.0 }, { - "V": 593.98, - "T": 104.0 + "V": 0.0, + "T": 301.0 }, { - "V": 611.34, - "T": 108.0 + "V": 0.0, + "T": 306.0 }, { - "V": 629.11, - "T": 112.0 + "V": 0.0, + "T": 311.0 }, { - "V": 646.3, - "T": 116.0 + "V": 0.0, + "T": 316.0 }, { - "V": 664.17, - "T": 120.0 + "V": 0.0, + "T": 321.0 }, { - "V": 681.82, - "T": 124.0 + "V": 0.0, + "T": 326.0 }, { - "V": 699.24, - "T": 128.0 + "V": 0.0, + "T": 331.0 }, { - "V": 717.34, - "T": 132.0 + "V": 0.0, + "T": 336.0 }, { - "V": 734.77, - "T": 136.0 + "V": 0.0, + "T": 341.0 }, { - "V": 752.31, - "T": 140.0 + "V": 0.0, + "T": 346.0 }, { - "V": 769.96, - "T": 144.0 + "V": 0.0, + "T": 351.0 }, { - "V": 787.33, - "T": 148.0 + "V": 0.0, + "T": 356.0 }, { - "V": 804.76, - "T": 152.0 + "V": 0.0, + "T": 361.0 }, { - "V": 822.3, - "T": 156.0 + "V": 0.0, + "T": 366.0 }, { - "V": 839.78, - "T": 160.0 + "V": 0.0, + "T": 371.0 }, { - "V": 857.71, - "T": 164.0 + "V": 0.0, + "T": 376.0 }, { - "V": 874.96, - "T": 168.0 + "V": 0.0, + "T": 381.0 }, { - "V": 892.78, - "T": 172.0 + "V": 0.0, + "T": 386.0 }, { - "V": 910.32, - "T": 176.0 + "V": 0.0, + "T": 391.0 }, { - "V": 927.97, - "T": 180.0 + "V": 0.0, + "T": 396.0 }, { - "V": 945.62, - "T": 184.0 + "V": 0.0, + "T": 401.0 }, { - "V": 963.04, - "T": 188.0 + "V": 0.0, + "T": 406.0 }, { - "V": 980.72, - "T": 192.0 + "V": 0.0, + "T": 411.0 }, { - "V": 998.13, - "T": 196.0 + "V": 0.0, + "T": 416.0 }, { - "V": 1015.56, - "T": 200.0 + "V": 0.0, + "T": 421.0 }, { - "V": 1033.03, - "T": 204.0 + "V": 0.0, + "T": 426.0 }, { - "V": 1051.05, - "T": 208.0 + "V": 0.0, + "T": 431.0 }, { - "V": 1068.34, - "T": 212.0 + "V": 0.0, + "T": 436.0 }, { - "V": 1086.0, - "T": 216.0 + "V": 0.0, + "T": 441.0 }, { - "V": 1103.69, - "T": 220.0 + "V": 0.0, + "T": 446.0 }, { - "V": 1121.33, - "T": 224.0 + "V": 0.0, + "T": 451.0 }, { - "V": 1138.93, - "T": 228.0 + "V": 0.0, + "T": 456.0 }, { - "V": 1156.58, - "T": 232.0 + "V": 0.0, + "T": 461.0 }, { - "V": 1174.07, - "T": 236.0 + "V": 0.0, + "T": 466.0 }, { - "V": 1192.29, - "T": 240.0 + "V": 0.0, + "T": 471.0 }, { - "V": 1209.85, - "T": 244.0 + "V": 0.0, + "T": 476.0 }, { - "V": 1227.27, - "T": 248.0 + "V": 0.0, + "T": 481.0 }, { - "V": 1244.96, - "T": 252.0 + "V": 0.0, + "T": 486.0 }, { - "V": 1262.37, - "T": 256.0 + "V": 0.0, + "T": 491.0 }, { - "V": 1279.97, - "T": 260.0 + "V": 0.0, + "T": 496.0 }, { - "V": 1297.53, - "T": 264.0 + "V": 0.0, + "T": 501.0 }, { - "V": 1315.07, - "T": 268.0 + "V": 0.0, + "T": 506.0 }, { - "V": 1332.57, - "T": 272.0 + "V": 0.0, + "T": 511.0 }, { - "V": 1350.62, - "T": 276.0 + "V": 0.0, + "T": 516.0 }, { - "V": 1368.11, - "T": 280.0 + "V": 0.0, + "T": 521.0 }, { - "V": 1385.82, - "T": 284.0 + "V": 0.0, + "T": 526.0 }, { - "V": 1403.49, - "T": 288.0 + "V": 0.0, + "T": 531.0 }, { - "V": 1421.29, - "T": 292.0 + "V": 0.0, + "T": 536.0 }, { - "V": 1439.04, - "T": 296.0 + "V": 0.0, + "T": 541.0 }, { - "V": 1456.56, - "T": 300.0 + "V": 0.0, + "T": 546.0 }, { - "V": 1474.2, - "T": 304.0 + "V": 0.0, + "T": 551.0 }, { - "V": 1491.58, - "T": 308.0 + "V": 0.0, + "T": 556.0 }, { - "V": 1509.13, - "T": 312.0 + "V": 0.0, + "T": 561.0 }, { - "V": 1527.0, - "T": 316.0 + "V": 0.0, + "T": 566.0 }, { - "V": 1544.34, - "T": 320.0 + "V": 0.0, + "T": 571.0 }, { - "V": 1562.0, - "T": 324.0 + "V": 0.0, + "T": 576.0 }, { - "V": 1579.61, - "T": 328.0 + "V": 0.0, + "T": 581.0 }, { - "V": 1597.07, - "T": 332.0 + "V": 0.0, + "T": 586.0 }, { - "V": 1613.12, - "T": 336.0 + "V": 0.0, + "T": 591.0 }, { - "V": 1630.98, - "T": 340.0 + "V": 0.0, + "T": 596.0 }, { - "V": 1648.66, - "T": 344.0 + "V": 0.0, + "T": 601.0 + } + ], + "PauseTimeMs": [ + { + "V": 0.0, + "T": 1.0 }, { - "V": 1666.07, - "T": 348.0 + "V": 0.0, + "T": 6.0 }, { - "V": 1683.75, - "T": 352.0 + "V": 0.0, + "T": 11.0 }, { - "V": 1701.36, - "T": 356.0 + "V": 0.0, + "T": 16.0 }, { - "V": 1718.83, - "T": 360.0 + "V": 0.0, + "T": 21.0 }, { - "V": 1736.47, - "T": 364.0 + "V": 0.0, + "T": 26.0 }, { - "V": 1754.06, - "T": 368.0 + "V": 0.0, + "T": 31.0 }, { - "V": 1772.6, - "T": 372.0 + "V": 0.0, + "T": 36.0 }, { - "V": 1790.18, - "T": 376.0 + "V": 0.0, + "T": 41.0 }, { - "V": 1806.96, - "T": 380.0 + "V": 0.0, + "T": 46.0 }, { - "V": 1824.48, - "T": 384.0 + "V": 0.0, + "T": 51.0 }, { - "V": 1842.02, - "T": 388.0 + "V": 0.0, + "T": 56.0 }, { - "V": 1859.61, - "T": 392.0 + "V": 0.0, + "T": 61.0 }, { - "V": 1877.27, - "T": 396.0 + "V": 0.0, + "T": 66.0 }, { - "V": 1895.04, - "T": 400.0 + "V": 0.0, + "T": 71.0 }, { - "V": 1912.48, - "T": 404.0 + "V": 0.0, + "T": 76.0 }, { - "V": 1929.76, - "T": 408.0 + "V": 0.0, + "T": 81.0 }, { - "V": 1947.34, - "T": 412.0 + "V": 0.0, + "T": 86.0 }, { - "V": 1964.98, - "T": 416.0 + "V": 0.0, + "T": 91.0 }, { - "V": 1982.65, - "T": 420.0 + "V": 0.0, + "T": 96.0 }, { - "V": 2000.34, - "T": 424.0 + "V": 0.0, + "T": 101.0 }, { - "V": 2017.78, - "T": 428.0 + "V": 0.0, + "T": 106.0 }, { - "V": 2035.52, - "T": 432.0 + "V": 0.0, + "T": 111.0 }, { - "V": 2053.16, - "T": 436.0 + "V": 0.0, + "T": 116.0 }, { - "V": 2070.64, - "T": 440.0 + "V": 0.0, + "T": 121.0 }, { - "V": 2087.96, - "T": 444.0 + "V": 0.0, + "T": 126.0 }, { - "V": 2105.41, - "T": 448.0 + "V": 0.0, + "T": 131.0 }, { - "V": 2123.22, - "T": 452.0 + "V": 0.0, + "T": 136.0 }, { - "V": 2140.75, - "T": 456.0 + "V": 0.0, + "T": 141.0 }, { - "V": 2158.45, - "T": 460.0 + "V": 0.0, + "T": 146.0 }, { - "V": 2176.09, - "T": 464.0 + "V": 0.0, + "T": 151.0 }, { - "V": 2193.54, - "T": 468.0 + "V": 0.0, + "T": 156.0 }, { - "V": 2210.98, - "T": 472.0 + "V": 0.0, + "T": 161.0 }, { - "V": 2228.78, - "T": 476.0 + "V": 0.0, + "T": 166.0 }, { - "V": 2247.07, - "T": 480.0 + "V": 0.0, + "T": 171.0 }, { - "V": 2264.19, - "T": 484.0 + "V": 0.0, + "T": 176.0 }, { - "V": 2281.77, - "T": 488.0 + "V": 0.0, + "T": 181.0 }, { - "V": 2299.34, - "T": 492.0 + "V": 0.0, + "T": 186.0 }, { - "V": 2317.11, - "T": 496.0 + "V": 0.0, + "T": 191.0 }, { - "V": 2334.75, - "T": 500.0 + "V": 0.0, + "T": 196.0 }, { - "V": 2352.38, - "T": 504.0 + "V": 0.0, + "T": 201.0 }, { - "V": 2369.92, - "T": 508.0 + "V": 0.0, + "T": 206.0 }, { - "V": 2387.23, - "T": 512.0 + "V": 0.0, + "T": 211.0 }, { - "V": 2405.26, - "T": 516.0 + "V": 0.0, + "T": 216.0 }, { - "V": 2422.73, - "T": 520.0 + "V": 0.0, + "T": 221.0 }, { - "V": 2440.62, - "T": 524.0 + "V": 0.0, + "T": 226.0 }, { - "V": 2458.21, - "T": 528.0 + "V": 0.0, + "T": 231.0 }, { - "V": 2475.63, - "T": 532.0 + "V": 0.0, + "T": 236.0 }, { - "V": 2493.02, - "T": 536.0 + "V": 0.0, + "T": 241.0 }, { - "V": 2510.62, - "T": 540.0 + "V": 0.0, + "T": 246.0 }, { - "V": 2528.03, - "T": 544.0 + "V": 0.0, + "T": 251.0 }, { - "V": 2545.31, - "T": 548.0 + "V": 0.0, + "T": 256.0 }, { - "V": 2562.97, - "T": 552.0 + "V": 0.0, + "T": 261.0 }, { - "V": 2580.63, - "T": 556.0 + "V": 0.0, + "T": 266.0 }, { - "V": 2598.2, - "T": 560.0 + "V": 0.0, + "T": 271.0 }, { - "V": 2616.0, - "T": 564.0 + "V": 0.0, + "T": 276.0 }, { - "V": 2633.54, - "T": 568.0 + "V": 0.0, + "T": 281.0 }, { - "V": 2651.07, - "T": 572.0 + "V": 0.0, + "T": 286.0 }, { - "V": 2668.65, - "T": 576.0 + "V": 0.0, + "T": 291.0 }, { - "V": 2686.5, - "T": 580.0 + "V": 0.0, + "T": 296.0 }, { - "V": 2704.16, - "T": 584.0 + "V": 0.0, + "T": 301.0 }, { - "V": 2721.64, - "T": 588.0 + "V": 0.0, + "T": 306.0 }, { - "V": 2739.05, - "T": 592.0 + "V": 0.0, + "T": 311.0 }, { - "V": 2756.96, - "T": 596.0 - } - ], - "AllocRateMB": [ + "V": 0.0, + "T": 316.0 + }, { "V": 0.0, - "T": 1.0 + "T": 321.0 }, { "V": 0.0, - "T": 5.0 + "T": 326.0 }, { "V": 0.0, - "T": 9.0 + "T": 331.0 }, { "V": 0.0, - "T": 13.0 + "T": 336.0 }, { "V": 0.0, - "T": 17.0 + "T": 341.0 }, { "V": 0.0, - "T": 21.0 + "T": 346.0 }, { "V": 0.0, - "T": 25.0 + "T": 351.0 }, { "V": 0.0, - "T": 29.0 + "T": 356.0 }, { "V": 0.0, - "T": 33.0 + "T": 361.0 }, { "V": 0.0, - "T": 37.0 + "T": 366.0 }, { "V": 0.0, - "T": 41.0 + "T": 371.0 }, { "V": 0.0, - "T": 45.0 + "T": 376.0 }, { "V": 0.0, - "T": 49.0 + "T": 381.0 }, { "V": 0.0, - "T": 53.0 + "T": 386.0 }, { "V": 0.0, - "T": 57.0 + "T": 391.0 }, { "V": 0.0, - "T": 61.0 + "T": 396.0 }, { "V": 0.0, - "T": 65.0 + "T": 401.0 }, { "V": 0.0, - "T": 69.0 + "T": 406.0 }, { "V": 0.0, - "T": 73.0 + "T": 411.0 }, { "V": 0.0, - "T": 77.0 + "T": 416.0 }, { "V": 0.0, - "T": 81.0 + "T": 421.0 }, { "V": 0.0, - "T": 85.0 + "T": 426.0 }, { "V": 0.0, - "T": 89.0 + "T": 431.0 }, { "V": 0.0, - "T": 93.0 + "T": 436.0 }, { "V": 0.0, - "T": 97.0 + "T": 441.0 }, { "V": 0.0, - "T": 101.0 + "T": 446.0 }, { "V": 0.0, - "T": 105.0 + "T": 451.0 }, { "V": 0.0, - "T": 109.0 + "T": 456.0 }, { "V": 0.0, - "T": 113.0 + "T": 461.0 }, { "V": 0.0, - "T": 117.0 + "T": 466.0 }, { "V": 0.0, - "T": 121.0 + "T": 471.0 }, { "V": 0.0, - "T": 125.0 + "T": 476.0 }, { "V": 0.0, - "T": 129.0 + "T": 481.0 }, { "V": 0.0, - "T": 133.0 + "T": 486.0 }, { "V": 0.0, - "T": 137.0 + "T": 491.0 }, { "V": 0.0, - "T": 141.0 + "T": 496.0 }, { "V": 0.0, - "T": 145.0 + "T": 501.0 }, { "V": 0.0, - "T": 149.0 + "T": 506.0 }, { "V": 0.0, - "T": 153.0 + "T": 511.0 }, { "V": 0.0, - "T": 157.0 + "T": 516.0 }, { "V": 0.0, - "T": 161.0 + "T": 521.0 }, { "V": 0.0, - "T": 165.0 + "T": 526.0 }, { - "V": 64.0, - "T": 169.0 + "V": 0.0, + "T": 531.0 }, { "V": 0.0, - "T": 173.0 + "T": 536.0 }, { "V": 0.0, - "T": 177.0 + "T": 541.0 }, { "V": 0.0, - "T": 181.0 + "T": 546.0 }, { "V": 0.0, - "T": 185.0 + "T": 551.0 }, { "V": 0.0, - "T": 189.0 + "T": 556.0 }, { "V": 0.0, - "T": 193.0 + "T": 561.0 }, { "V": 0.0, - "T": 197.0 + "T": 566.0 }, { "V": 0.0, - "T": 201.0 + "T": 571.0 }, { "V": 0.0, - "T": 205.0 + "T": 576.0 }, { "V": 0.0, - "T": 209.0 + "T": 581.0 }, { "V": 0.0, - "T": 213.0 + "T": 586.0 }, { "V": 0.0, - "T": 217.0 + "T": 591.0 }, { "V": 0.0, - "T": 221.0 + "T": 596.0 }, { "V": 0.0, - "T": 225.0 + "T": 601.0 + } + ], + "WorkingSetMB": [ + { + "V": 411.17, + "T": 0.0 }, { - "V": 63.9, - "T": 229.0 + "V": 410.05, + "T": 5.0 }, { - "V": 0.0, - "T": 233.0 + "V": 416.43, + "T": 10.0 }, { - "V": 0.0, - "T": 237.0 + "V": 419.22, + "T": 15.0 }, { - "V": 0.0, - "T": 241.0 + "V": 424.4, + "T": 20.0 }, { - "V": 0.0, - "T": 245.0 + "V": 427.11, + "T": 25.0 }, { - "V": 0.0, - "T": 249.0 + "V": 429.12, + "T": 30.0 }, { - "V": 0.0, - "T": 253.0 + "V": 431.8, + "T": 35.0 }, { - "V": 0.0, - "T": 257.0 + "V": 434.64, + "T": 40.0 }, { - "V": 0.0, - "T": 261.0 + "V": 438.52, + "T": 45.0 }, { - "V": 0.0, - "T": 265.0 + "V": 441.98, + "T": 50.0 }, { - "V": 0.0, - "T": 269.0 + "V": 444.46, + "T": 55.0 }, { - "V": 0.0, - "T": 273.0 + "V": 448.34, + "T": 60.0 }, { - "V": 0.0, - "T": 277.0 + "V": 450.75, + "T": 65.0 }, { - "V": 0.0, - "T": 281.0 + "V": 452.76, + "T": 70.0 }, { - "V": 0.0, - "T": 285.0 + "V": 453.98, + "T": 75.0 }, { - "V": 0.0, - "T": 289.0 + "V": 455.68, + "T": 80.0 }, { - "V": 0.0, - "T": 293.0 + "V": 457.75, + "T": 85.0 }, { - "V": 0.0, - "T": 297.0 + "V": 460.19, + "T": 90.0 }, { - "V": 0.0, - "T": 301.0 + "V": 461.63, + "T": 95.0 }, { - "V": 0.0, - "T": 305.0 + "V": 463.42, + "T": 100.0 }, { - "V": 0.0, - "T": 309.0 + "V": 465.2, + "T": 105.0 }, { - "V": 0.0, - "T": 313.0 + "V": 467.03, + "T": 110.0 }, { - "V": 0.0, - "T": 317.0 + "V": 468.59, + "T": 115.0 }, { - "V": 0.0, - "T": 321.0 + "V": 471.14, + "T": 120.0 }, { - "V": 0.0, - "T": 325.0 + "V": 473.26, + "T": 125.0 }, { - "V": 0.0, - "T": 329.0 + "V": 475.25, + "T": 130.0 }, { - "V": 63.88, - "T": 333.0 + "V": 477.1, + "T": 135.0 }, { - "V": 0.0, - "T": 337.0 + "V": 479.26, + "T": 140.0 }, { - "V": 0.0, - "T": 341.0 + "V": 481.06, + "T": 145.0 }, { - "V": 0.0, - "T": 345.0 + "V": 483.61, + "T": 150.0 }, { - "V": 0.0, - "T": 349.0 + "V": 486.18, + "T": 155.0 }, { - "V": 0.0, - "T": 353.0 + "V": 488.88, + "T": 160.0 }, { - "V": 0.0, - "T": 357.0 + "V": 490.7, + "T": 165.0 }, { - "V": 0.0, - "T": 361.0 + "V": 491.23, + "T": 170.0 }, { - "V": 0.0, - "T": 365.0 + "V": 491.73, + "T": 175.0 }, { - "V": 0.0, - "T": 369.0 + "V": 492.11, + "T": 180.0 }, { - "V": 0.0, - "T": 373.0 + "V": 493.01, + "T": 185.0 }, { - "V": 0.0, - "T": 377.0 + "V": 493.7, + "T": 190.0 }, { - "V": 0.0, - "T": 381.0 + "V": 494.46, + "T": 195.0 }, { - "V": 64.0, - "T": 385.0 + "V": 497.08, + "T": 200.0 }, { - "V": 0.0, - "T": 389.0 + "V": 500.11, + "T": 205.0 }, { - "V": 0.0, - "T": 393.0 + "V": 503.27, + "T": 210.0 }, { - "V": 0.0, - "T": 397.0 + "V": 506.58, + "T": 215.0 }, { - "V": 0.0, - "T": 401.0 + "V": 509.49, + "T": 220.0 }, { - "V": 0.0, - "T": 405.0 + "V": 512.69, + "T": 225.0 }, { - "V": 64.0, - "T": 409.0 + "V": 516.28, + "T": 230.0 }, { - "V": 0.0, - "T": 413.0 + "V": 519.28, + "T": 235.0 }, { - "V": 0.0, - "T": 417.0 + "V": 522.77, + "T": 240.0 }, { - "V": 0.0, - "T": 421.0 + "V": 525.82, + "T": 245.0 }, { - "V": 64.0, - "T": 425.0 + "V": 528.66, + "T": 250.0 }, { - "V": 0.0, - "T": 429.0 + "V": 532.05, + "T": 255.0 }, { - "V": 0.0, - "T": 433.0 + "V": 534.57, + "T": 260.0 }, { - "V": 0.0, - "T": 437.0 + "V": 537.73, + "T": 265.0 }, { - "V": 0.0, - "T": 441.0 + "V": 540.63, + "T": 270.0 }, { - "V": 0.0, - "T": 445.0 + "V": 542.11, + "T": 275.0 }, { - "V": 0.0, - "T": 449.0 + "V": 544.77, + "T": 280.0 }, { - "V": 0.0, - "T": 453.0 + "V": 546.11, + "T": 285.0 }, { - "V": 0.0, - "T": 457.0 + "V": 548.45, + "T": 290.0 }, { - "V": 0.0, - "T": 461.0 + "V": 551.53, + "T": 295.0 }, { - "V": 0.0, - "T": 465.0 + "V": 554.72, + "T": 300.0 }, { - "V": 0.0, - "T": 469.0 + "V": 558.14, + "T": 305.0 }, { - "V": 0.0, - "T": 473.0 + "V": 561.14, + "T": 310.0 }, { - "V": 0.0, - "T": 477.0 + "V": 564.43, + "T": 315.0 }, { - "V": 0.0, - "T": 481.0 + "V": 566.45, + "T": 320.0 }, { - "V": 0.0, - "T": 485.0 + "V": 569.79, + "T": 325.0 }, { - "V": 0.0, - "T": 489.0 + "V": 572.96, + "T": 330.0 }, { - "V": 0.0, - "T": 493.0 + "V": 576.07, + "T": 335.0 }, { - "V": 0.0, - "T": 497.0 + "V": 579.27, + "T": 340.0 }, { - "V": 0.0, - "T": 501.0 + "V": 582.04, + "T": 345.0 }, { - "V": 0.0, - "T": 505.0 + "V": 584.43, + "T": 350.0 }, { - "V": 0.0, - "T": 509.0 + "V": 587.34, + "T": 355.0 }, { - "V": 0.0, - "T": 513.0 + "V": 590.52, + "T": 360.0 }, { - "V": 63.88, - "T": 517.0 + "V": 593.27, + "T": 365.0 }, { - "V": 0.0, - "T": 521.0 + "V": 596.63, + "T": 370.0 }, { - "V": 0.0, - "T": 525.0 + "V": 599.91, + "T": 375.0 }, { - "V": 0.0, - "T": 529.0 + "V": 602.39, + "T": 380.0 }, { - "V": 0.0, - "T": 533.0 + "V": 604.0, + "T": 385.0 }, { - "V": 0.0, - "T": 537.0 + "V": 607.34, + "T": 390.0 }, { - "V": 0.0, - "T": 541.0 + "V": 609.27, + "T": 395.0 }, { - "V": 0.0, - "T": 545.0 + "V": 612.25, + "T": 400.0 }, { - "V": 0.0, - "T": 549.0 + "V": 615.44, + "T": 405.0 }, { - "V": 0.0, - "T": 553.0 + "V": 617.52, + "T": 410.0 }, { - "V": 0.0, - "T": 557.0 + "V": 619.62, + "T": 415.0 }, { - "V": 0.0, - "T": 561.0 + "V": 623.17, + "T": 420.0 }, { - "V": 64.0, - "T": 565.0 + "V": 626.25, + "T": 425.0 }, { - "V": 0.0, - "T": 569.0 + "V": 629.13, + "T": 430.0 }, { - "V": 0.0, - "T": 573.0 + "V": 632.23, + "T": 435.0 }, { - "V": 0.0, - "T": 577.0 + "V": 635.2, + "T": 440.0 }, { - "V": 0.0, - "T": 581.0 + "V": 637.82, + "T": 445.0 }, { - "V": 0.0, - "T": 585.0 + "V": 640.89, + "T": 450.0 }, { - "V": 0.0, - "T": 589.0 + "V": 644.13, + "T": 455.0 }, { - "V": 0.0, - "T": 593.0 - } - ], - "OpsPerSec": [ - { - "V": 512.0, - "T": 0.0 + "V": 647.08, + "T": 460.0 }, { - "V": 506.0, - "T": 4.0 + "V": 650.27, + "T": 465.0 }, { - "V": 509.0, - "T": 8.0 + "V": 653.44, + "T": 470.0 }, { - "V": 524.0, - "T": 12.0 + "V": 656.68, + "T": 475.0 }, { - "V": 505.0, - "T": 16.0 + "V": 660.36, + "T": 480.0 }, { - "V": 504.0, - "T": 20.0 + "V": 663.73, + "T": 485.0 }, { - "V": 503.0, - "T": 24.0 + "V": 666.8, + "T": 490.0 }, { - "V": 508.0, - "T": 28.0 + "V": 670.24, + "T": 495.0 }, { - "V": 504.0, - "T": 32.0 + "V": 673.39, + "T": 500.0 }, { - "V": 504.0, - "T": 36.0 + "V": 676.5, + "T": 505.0 }, { - "V": 504.0, - "T": 40.0 + "V": 679.93, + "T": 510.0 }, { - "V": 506.0, - "T": 44.0 + "V": 683.14, + "T": 515.0 }, { - "V": 512.0, - "T": 48.0 + "V": 685.68, + "T": 520.0 }, { - "V": 501.0, - "T": 52.0 + "V": 688.68, + "T": 525.0 }, { - "V": 511.0, - "T": 56.0 + "V": 692.0, + "T": 530.0 }, { - "V": 511.0, - "T": 60.0 + "V": 694.86, + "T": 535.0 }, { - "V": 510.0, - "T": 64.0 + "V": 698.31, + "T": 540.0 }, { - "V": 504.0, - "T": 68.0 + "V": 699.79, + "T": 545.0 }, { - "V": 504.0, - "T": 72.0 + "V": 703.14, + "T": 550.0 }, { - "V": 512.0, - "T": 76.0 + "V": 706.28, + "T": 555.0 }, { - "V": 504.0, - "T": 80.0 + "V": 709.65, + "T": 560.0 }, { - "V": 519.0, - "T": 84.0 + "V": 712.48, + "T": 565.0 }, { - "V": 504.0, - "T": 88.0 + "V": 715.7, + "T": 570.0 }, { - "V": 504.0, - "T": 92.0 + "V": 719.13, + "T": 575.0 }, { - "V": 508.0, - "T": 96.0 + "V": 722.02, + "T": 580.0 }, { - "V": 518.0, - "T": 100.0 + "V": 725.29, + "T": 585.0 }, { - "V": 524.0, - "T": 104.0 + "V": 728.47, + "T": 590.0 }, { - "V": 505.0, - "T": 108.0 + "V": 731.41, + "T": 595.0 }, { - "V": 512.0, - "T": 112.0 + "V": 734.23, + "T": 600.0 + } + ], + "AllocRateMB": [ + { + "V": 64.0, + "T": 1.0 }, { - "V": 526.0, - "T": 116.0 + "V": 0.0, + "T": 6.0 }, { - "V": 505.0, - "T": 120.0 + "V": 64.0, + "T": 11.0 }, { - "V": 519.0, - "T": 124.0 + "V": 64.0, + "T": 16.0 }, { - "V": 509.0, - "T": 128.0 + "V": 0.0, + "T": 21.0 }, { - "V": 507.0, - "T": 132.0 + "V": 0.0, + "T": 26.0 }, { - "V": 504.0, - "T": 136.0 + "V": 0.0, + "T": 31.0 }, { - "V": 509.0, - "T": 140.0 + "V": 0.0, + "T": 36.0 }, { - "V": 525.0, - "T": 144.0 + "V": 0.0, + "T": 41.0 }, { - "V": 504.0, - "T": 148.0 + "V": 64.0, + "T": 46.0 }, { - "V": 504.0, - "T": 152.0 + "V": 0.0, + "T": 51.0 }, { - "V": 516.0, - "T": 156.0 + "V": 64.0, + "T": 56.0 }, { - "V": 504.0, - "T": 160.0 + "V": 0.0, + "T": 61.0 }, { - "V": 512.0, - "T": 164.0 + "V": 0.0, + "T": 66.0 }, { - "V": 502.0, - "T": 168.0 + "V": 0.0, + "T": 71.0 }, { - "V": 504.0, - "T": 172.0 + "V": 0.0, + "T": 76.0 }, { - "V": 504.0, - "T": 176.0 + "V": 0.0, + "T": 81.0 }, { - "V": 498.0, - "T": 180.0 + "V": 0.0, + "T": 86.0 }, { - "V": 526.0, - "T": 184.0 + "V": 64.0, + "T": 91.0 }, { - "V": 503.0, - "T": 188.0 + "V": 0.0, + "T": 96.0 }, { - "V": 504.0, - "T": 192.0 + "V": 0.0, + "T": 101.0 }, { - "V": 501.0, - "T": 196.0 + "V": 64.0, + "T": 106.0 }, { - "V": 504.0, - "T": 200.0 + "V": 0.0, + "T": 111.0 }, { - "V": 520.0, - "T": 204.0 + "V": 128.0, + "T": 116.0 }, { - "V": 511.0, - "T": 208.0 + "V": 0.0, + "T": 121.0 }, { - "V": 504.0, - "T": 212.0 + "V": 0.0, + "T": 126.0 }, { - "V": 512.0, - "T": 216.0 + "V": 0.0, + "T": 131.0 }, { - "V": 517.0, - "T": 220.0 + "V": 64.0, + "T": 136.0 }, { - "V": 515.0, - "T": 224.0 + "V": 0.0, + "T": 141.0 }, { - "V": 504.0, - "T": 228.0 + "V": 0.0, + "T": 146.0 }, { - "V": 499.0, - "T": 232.0 + "V": 0.0, + "T": 151.0 }, { - "V": 509.0, - "T": 236.0 + "V": 64.0, + "T": 156.0 }, { - "V": 511.0, - "T": 240.0 + "V": 0.0, + "T": 161.0 }, { - "V": 508.0, - "T": 244.0 + "V": 0.0, + "T": 166.0 }, { - "V": 512.0, - "T": 248.0 + "V": 0.0, + "T": 171.0 }, { - "V": 513.0, - "T": 252.0 + "V": 0.0, + "T": 176.0 }, { - "V": 505.0, - "T": 256.0 + "V": 0.0, + "T": 181.0 }, { - "V": 504.0, - "T": 260.0 + "V": 0.0, + "T": 186.0 }, { - "V": 503.0, - "T": 264.0 + "V": 0.0, + "T": 191.0 }, { - "V": 504.0, - "T": 268.0 + "V": 0.0, + "T": 196.0 }, { - "V": 504.0, - "T": 272.0 + "V": 0.0, + "T": 201.0 }, { - "V": 520.0, - "T": 276.0 + "V": 0.0, + "T": 206.0 }, { - "V": 505.0, - "T": 280.0 + "V": 64.0, + "T": 211.0 }, { - "V": 545.0, - "T": 284.0 + "V": 64.0, + "T": 216.0 }, { - "V": 501.0, - "T": 288.0 + "V": 64.0, + "T": 221.0 }, { - "V": 504.0, - "T": 292.0 + "V": 0.0, + "T": 226.0 }, { - "V": 507.0, - "T": 296.0 + "V": 64.0, + "T": 231.0 }, { - "V": 501.0, - "T": 300.0 + "V": 0.0, + "T": 236.0 }, { - "V": 509.0, - "T": 304.0 + "V": 128.0, + "T": 241.0 }, { - "V": 512.0, - "T": 308.0 + "V": 0.0, + "T": 246.0 }, { - "V": 511.0, - "T": 312.0 + "V": 0.0, + "T": 251.0 }, { - "V": 504.0, - "T": 316.0 + "V": 0.0, + "T": 256.0 }, { - "V": 497.0, - "T": 320.0 + "V": 0.0, + "T": 261.0 }, { - "V": 505.0, - "T": 324.0 + "V": 0.0, + "T": 266.0 }, { - "V": 506.0, - "T": 328.0 + "V": 0.0, + "T": 271.0 }, { - "V": 502.0, - "T": 332.0 + "V": 0.0, + "T": 276.0 }, { - "V": 504.0, - "T": 336.0 + "V": 0.0, + "T": 281.0 }, { - "V": 504.0, - "T": 340.0 + "V": 0.0, + "T": 286.0 }, { - "V": 512.0, - "T": 344.0 + "V": 0.0, + "T": 291.0 }, { - "V": 504.0, - "T": 348.0 + "V": 0.0, + "T": 296.0 }, { - "V": 504.0, - "T": 352.0 + "V": 0.0, + "T": 301.0 }, { - "V": 505.0, - "T": 356.0 + "V": 0.0, + "T": 306.0 }, { - "V": 503.0, - "T": 360.0 + "V": 0.0, + "T": 311.0 }, { - "V": 518.0, - "T": 364.0 + "V": 0.0, + "T": 316.0 }, { - "V": 504.0, - "T": 368.0 + "V": 64.0, + "T": 321.0 }, { - "V": 503.0, - "T": 372.0 + "V": 64.0, + "T": 326.0 }, { - "V": 509.0, - "T": 376.0 + "V": 0.0, + "T": 331.0 }, { - "V": 507.0, - "T": 380.0 + "V": 64.0, + "T": 336.0 }, { - "V": 506.0, - "T": 384.0 + "V": 0.0, + "T": 341.0 }, { - "V": 504.0, - "T": 388.0 + "V": 0.0, + "T": 346.0 }, { - "V": 502.0, - "T": 392.0 + "V": 64.0, + "T": 351.0 }, { - "V": 504.0, - "T": 396.0 + "V": 0.0, + "T": 356.0 }, { - "V": 504.0, - "T": 400.0 + "V": 0.0, + "T": 361.0 }, { - "V": 508.0, - "T": 404.0 + "V": 0.0, + "T": 366.0 }, { - "V": 504.0, - "T": 408.0 + "V": 0.0, + "T": 371.0 }, { - "V": 500.0, - "T": 412.0 + "V": 0.0, + "T": 376.0 }, { - "V": 507.0, - "T": 416.0 + "V": 0.0, + "T": 381.0 }, { - "V": 512.0, - "T": 420.0 + "V": 0.0, + "T": 386.0 }, { - "V": 513.0, - "T": 424.0 + "V": 0.0, + "T": 391.0 }, { - "V": 512.0, - "T": 428.0 + "V": 0.0, + "T": 396.0 }, { - "V": 508.0, - "T": 432.0 + "V": 0.0, + "T": 401.0 }, { - "V": 498.0, - "T": 436.0 + "V": 0.0, + "T": 406.0 }, { - "V": 497.0, - "T": 440.0 + "V": 0.0, + "T": 411.0 }, { - "V": 515.0, - "T": 444.0 + "V": 64.0, + "T": 416.0 }, { - "V": 512.0, - "T": 448.0 + "V": 128.0, + "T": 421.0 }, { - "V": 504.0, - "T": 452.0 + "V": 0.0, + "T": 426.0 }, { - "V": 505.0, - "T": 456.0 + "V": 0.0, + "T": 431.0 }, { - "V": 504.0, - "T": 460.0 + "V": 0.0, + "T": 436.0 }, { - "V": 505.0, - "T": 464.0 + "V": 0.0, + "T": 441.0 }, { - "V": 505.0, - "T": 468.0 + "V": 0.0, + "T": 446.0 }, { - "V": 504.0, - "T": 472.0 + "V": 0.0, + "T": 451.0 }, { - "V": 504.0, - "T": 476.0 + "V": 0.0, + "T": 456.0 }, { - "V": 505.0, - "T": 480.0 + "V": 0.0, + "T": 461.0 }, { - "V": 529.0, - "T": 484.0 + "V": 0.0, + "T": 466.0 }, { - "V": 496.0, - "T": 488.0 + "V": 0.0, + "T": 471.0 }, { - "V": 496.0, - "T": 492.0 + "V": 0.0, + "T": 476.0 }, { - "V": 503.0, - "T": 496.0 + "V": 0.0, + "T": 481.0 }, { - "V": 505.0, - "T": 500.0 + "V": 0.0, + "T": 486.0 }, { - "V": 513.0, - "T": 504.0 + "V": 64.0, + "T": 491.0 }, { - "V": 502.0, - "T": 508.0 + "V": 0.0, + "T": 496.0 }, { - "V": 504.0, - "T": 512.0 + "V": 0.0, + "T": 501.0 }, { - "V": 504.0, - "T": 516.0 + "V": 0.0, + "T": 506.0 }, { - "V": 505.0, - "T": 520.0 + "V": 64.0, + "T": 511.0 }, { - "V": 514.0, - "T": 524.0 + "V": 0.0, + "T": 516.0 }, { - "V": 502.0, - "T": 528.0 + "V": 0.0, + "T": 521.0 }, { - "V": 503.0, - "T": 532.0 + "V": 0.0, + "T": 526.0 }, { - "V": 497.0, - "T": 536.0 + "V": 0.0, + "T": 531.0 }, { - "V": 512.0, - "T": 540.0 + "V": 64.0, + "T": 536.0 }, { - "V": 514.0, - "T": 544.0 + "V": 0.0, + "T": 541.0 }, { - "V": 504.0, - "T": 548.0 + "V": 0.0, + "T": 546.0 }, { - "V": 504.0, - "T": 552.0 + "V": 0.0, + "T": 551.0 }, { - "V": 500.0, + "V": 0.0, "T": 556.0 }, { - "V": 511.0, - "T": 560.0 - }, - { - "V": 507.0, - "T": 564.0 + "V": 64.0, + "T": 561.0 }, { - "V": 520.0, - "T": 568.0 + "V": 0.0, + "T": 566.0 }, { - "V": 504.0, - "T": 572.0 + "V": 0.0, + "T": 571.0 }, { - "V": 503.0, + "V": 0.0, "T": 576.0 }, { - "V": 499.0, - "T": 580.0 + "V": 0.0, + "T": 581.0 }, { - "V": 523.0, - "T": 584.0 + "V": 0.0, + "T": 586.0 }, { - "V": 510.0, - "T": 588.0 + "V": 0.0, + "T": 591.0 }, { - "V": 504.0, - "T": 592.0 + "V": 0.0, + "T": 596.0 }, { - "V": 511.0, - "T": 596.0 + "V": 0.0, + "T": 601.0 } ], - "Gen0PerSec": [ + "OpsPerSec": [ { - "V": 0.0, + "V": 1.0, "T": 1.0 }, { - "V": 0.0, + "V": 5.0, "T": 5.0 }, { - "V": 0.0, + "V": 6.0, "T": 9.0 }, { - "V": 0.0, + "V": 5.0, "T": 13.0 }, { - "V": 0.0, + "V": 2.0, "T": 17.0 }, { - "V": 0.0, + "V": 6.0, "T": 21.0 }, { - "V": 0.0, + "V": 5.0, "T": 25.0 }, { - "V": 0.0, + "V": 3.0, "T": 29.0 }, { - "V": 0.0, + "V": 5.0, "T": 33.0 }, { - "V": 0.0, + "V": 2.0, "T": 37.0 }, { - "V": 0.0, + "V": 8.0, "T": 41.0 }, { - "V": 0.0, + "V": 9.0, "T": 45.0 }, { - "V": 0.0, + "V": 5.0, "T": 49.0 }, { - "V": 0.0, + "V": 6.0, "T": 53.0 }, { - "V": 0.0, + "V": 7.0, "T": 57.0 }, { - "V": 0.0, + "V": 3.0, "T": 61.0 }, { - "V": 0.0, + "V": 1.0, "T": 65.0 }, { - "V": 0.0, + "V": 7.0, "T": 69.0 }, { - "V": 0.0, + "V": 1.0, "T": 73.0 }, { - "V": 0.0, - "T": 77.0 + "V": 5.0, + "T": 78.0 }, { - "V": 0.0, - "T": 81.0 + "V": 4.0, + "T": 82.0 }, { - "V": 0.0, - "T": 85.0 + "V": 3.0, + "T": 86.0 }, { - "V": 0.0, - "T": 89.0 + "V": 2.0, + "T": 90.0 }, { - "V": 0.0, - "T": 93.0 + "V": 1.0, + "T": 94.0 }, { - "V": 0.0, - "T": 97.0 + "V": 4.0, + "T": 99.0 }, { - "V": 0.0, - "T": 101.0 + "V": 1.0, + "T": 103.0 }, { - "V": 0.0, - "T": 105.0 + "V": 5.0, + "T": 107.0 }, { - "V": 0.0, - "T": 109.0 + "V": 5.0, + "T": 111.0 }, { - "V": 0.0, - "T": 113.0 + "V": 2.0, + "T": 115.0 }, { - "V": 0.0, - "T": 117.0 + "V": 2.0, + "T": 119.0 }, { - "V": 0.0, - "T": 121.0 + "V": 2.0, + "T": 123.0 }, { - "V": 0.0, - "T": 125.0 + "V": 3.0, + "T": 127.0 }, { - "V": 0.0, - "T": 129.0 + "V": 2.0, + "T": 131.0 }, { - "V": 0.0, - "T": 133.0 + "V": 3.0, + "T": 135.0 }, { - "V": 0.0, - "T": 137.0 + "V": 3.0, + "T": 139.0 }, { - "V": 0.0, - "T": 141.0 + "V": 4.0, + "T": 143.0 }, { - "V": 0.0, - "T": 145.0 + "V": 5.0, + "T": 147.0 }, { - "V": 0.0, - "T": 149.0 + "V": 4.0, + "T": 151.0 }, { - "V": 0.0, - "T": 153.0 + "V": 2.0, + "T": 155.0 }, { - "V": 0.0, - "T": 157.0 + "V": 5.0, + "T": 159.0 }, { - "V": 0.0, - "T": 161.0 + "V": 4.0, + "T": 163.0 }, { - "V": 0.0, - "T": 165.0 + "V": 1.0, + "T": 169.0 }, { - "V": 0.0, - "T": 169.0 + "V": 1.0, + "T": 176.0 }, { - "V": 0.0, - "T": 173.0 + "V": 1.0, + "T": 182.0 }, { - "V": 0.0, - "T": 177.0 + "V": 1.0, + "T": 187.0 }, { - "V": 0.0, - "T": 181.0 + "V": 1.0, + "T": 193.0 + }, + { + "V": 5.0, + "T": 198.0 + }, + { + "V": 5.0, + "T": 202.0 + }, + { + "V": 5.0, + "T": 206.0 + }, + { + "V": 5.0, + "T": 210.0 }, { - "V": 0.0, - "T": 185.0 + "V": 4.0, + "T": 214.0 }, { - "V": 0.0, - "T": 189.0 + "V": 5.0, + "T": 218.0 }, { - "V": 0.0, - "T": 193.0 + "V": 6.0, + "T": 222.0 }, { - "V": 0.0, - "T": 197.0 + "V": 7.0, + "T": 226.0 }, { - "V": 0.0, - "T": 201.0 + "V": 4.0, + "T": 230.0 }, { - "V": 0.0, - "T": 205.0 + "V": 5.0, + "T": 234.0 }, { - "V": 0.0, - "T": 209.0 + "V": 4.0, + "T": 238.0 }, { - "V": 0.0, - "T": 213.0 + "V": 6.0, + "T": 242.0 }, { - "V": 0.0, - "T": 217.0 + "V": 5.0, + "T": 246.0 }, { - "V": 0.0, - "T": 221.0 + "V": 5.0, + "T": 250.0 }, { - "V": 0.0, - "T": 225.0 + "V": 4.0, + "T": 254.0 }, { - "V": 0.0, - "T": 229.0 + "V": 3.0, + "T": 258.0 }, { - "V": 0.0, - "T": 233.0 + "V": 5.0, + "T": 262.0 }, { - "V": 0.0, - "T": 237.0 + "V": 5.0, + "T": 266.0 }, { - "V": 0.0, - "T": 241.0 + "V": 3.0, + "T": 270.0 }, { - "V": 0.0, - "T": 245.0 + "V": 2.0, + "T": 274.0 }, { - "V": 0.0, - "T": 249.0 + "V": 3.0, + "T": 278.0 }, { - "V": 0.0, - "T": 253.0 + "V": 1.0, + "T": 282.0 }, { - "V": 0.0, - "T": 257.0 + "V": 1.0, + "T": 286.0 }, { - "V": 0.0, - "T": 261.0 + "V": 4.0, + "T": 290.0 }, { - "V": 0.0, - "T": 265.0 + "V": 3.0, + "T": 294.0 }, { - "V": 0.0, - "T": 269.0 + "V": 4.0, + "T": 298.0 }, { - "V": 0.0, - "T": 273.0 + "V": 6.0, + "T": 302.0 }, { - "V": 0.0, - "T": 277.0 + "V": 5.0, + "T": 306.0 }, { - "V": 0.0, - "T": 281.0 + "V": 5.0, + "T": 310.0 }, { - "V": 0.0, - "T": 285.0 + "V": 4.0, + "T": 314.0 }, { - "V": 0.0, - "T": 289.0 + "V": 3.0, + "T": 318.0 }, { - "V": 0.0, - "T": 293.0 + "V": 5.0, + "T": 322.0 }, { - "V": 0.0, - "T": 297.0 + "V": 5.0, + "T": 326.0 }, { - "V": 0.0, - "T": 301.0 + "V": 5.0, + "T": 330.0 }, { - "V": 0.0, - "T": 305.0 + "V": 5.0, + "T": 334.0 }, { - "V": 0.0, - "T": 309.0 + "V": 3.0, + "T": 338.0 }, { - "V": 0.0, - "T": 313.0 + "V": 5.0, + "T": 342.0 }, { - "V": 0.0, - "T": 317.0 + "V": 2.0, + "T": 346.0 }, { - "V": 0.0, - "T": 321.0 + "V": 5.0, + "T": 350.0 }, { - "V": 0.0, - "T": 325.0 + "V": 5.0, + "T": 354.0 }, { - "V": 0.0, - "T": 329.0 + "V": 4.0, + "T": 358.0 }, { - "V": 0.0, - "T": 333.0 + "V": 6.0, + "T": 362.0 }, { - "V": 0.0, - "T": 337.0 + "V": 5.0, + "T": 366.0 }, { - "V": 0.0, - "T": 341.0 + "V": 5.0, + "T": 370.0 }, { - "V": 0.0, - "T": 345.0 + "V": 5.0, + "T": 374.0 }, { - "V": 0.0, - "T": 349.0 + "V": 4.0, + "T": 378.0 }, { - "V": 0.0, - "T": 353.0 + "V": 1.0, + "T": 382.0 }, { - "V": 0.0, - "T": 357.0 + "V": 5.0, + "T": 386.0 }, { - "V": 0.0, - "T": 361.0 + "V": 5.0, + "T": 390.0 }, { - "V": 0.0, - "T": 365.0 + "V": 6.0, + "T": 394.0 }, { - "V": 0.0, - "T": 369.0 + "V": 3.0, + "T": 398.0 }, { - "V": 0.0, - "T": 373.0 + "V": 6.0, + "T": 402.0 }, { - "V": 0.0, - "T": 377.0 + "V": 6.0, + "T": 406.0 }, { - "V": 0.0, - "T": 381.0 + "V": 2.0, + "T": 410.0 }, { - "V": 0.0, - "T": 385.0 + "V": 4.0, + "T": 414.0 }, { - "V": 0.0, - "T": 389.0 + "V": 5.0, + "T": 418.0 }, { - "V": 0.0, - "T": 393.0 + "V": 6.0, + "T": 422.0 }, { - "V": 0.0, - "T": 397.0 + "V": 6.0, + "T": 426.0 }, { - "V": 0.0, - "T": 401.0 + "V": 5.0, + "T": 430.0 }, { - "V": 0.0, - "T": 405.0 + "V": 4.0, + "T": 434.0 }, { - "V": 0.0, - "T": 409.0 + "V": 5.0, + "T": 438.0 }, { - "V": 0.0, - "T": 413.0 + "V": 3.0, + "T": 442.0 }, { - "V": 0.0, - "T": 417.0 + "V": 5.0, + "T": 446.0 }, { - "V": 0.0, - "T": 421.0 + "V": 6.0, + "T": 450.0 }, { - "V": 0.0, - "T": 425.0 + "V": 5.0, + "T": 454.0 }, { - "V": 0.0, - "T": 429.0 + "V": 4.0, + "T": 458.0 }, { - "V": 0.0, - "T": 433.0 + "V": 6.0, + "T": 462.0 }, { - "V": 0.0, - "T": 437.0 + "V": 7.0, + "T": 466.0 }, { - "V": 0.0, - "T": 441.0 + "V": 6.0, + "T": 470.0 }, { - "V": 0.0, - "T": 445.0 + "V": 4.0, + "T": 474.0 }, { - "V": 0.0, - "T": 449.0 + "V": 5.0, + "T": 478.0 }, { - "V": 0.0, - "T": 453.0 + "V": 5.0, + "T": 482.0 }, { - "V": 0.0, - "T": 457.0 + "V": 6.0, + "T": 486.0 }, { - "V": 0.0, - "T": 461.0 + "V": 5.0, + "T": 490.0 }, { - "V": 0.0, - "T": 465.0 + "V": 5.0, + "T": 494.0 }, { - "V": 0.0, - "T": 469.0 + "V": 5.0, + "T": 498.0 }, { - "V": 0.0, - "T": 473.0 + "V": 6.0, + "T": 502.0 }, { - "V": 0.0, - "T": 477.0 + "V": 6.0, + "T": 506.0 }, { - "V": 0.0, - "T": 481.0 + "V": 6.0, + "T": 510.0 }, { - "V": 0.0, - "T": 485.0 + "V": 5.0, + "T": 514.0 }, { - "V": 0.0, - "T": 489.0 + "V": 4.0, + "T": 518.0 }, { - "V": 0.0, - "T": 493.0 + "V": 5.0, + "T": 522.0 }, { - "V": 0.0, - "T": 497.0 + "V": 6.0, + "T": 526.0 }, { - "V": 0.0, - "T": 501.0 + "V": 6.0, + "T": 530.0 }, { - "V": 0.0, - "T": 505.0 + "V": 5.0, + "T": 534.0 }, { - "V": 0.0, - "T": 509.0 + "V": 5.0, + "T": 538.0 }, { - "V": 0.0, - "T": 513.0 + "V": 1.0, + "T": 542.0 }, { - "V": 0.0, - "T": 517.0 + "V": 6.0, + "T": 546.0 }, { - "V": 0.0, - "T": 521.0 + "V": 5.0, + "T": 550.0 }, { - "V": 0.0, - "T": 525.0 + "V": 5.0, + "T": 554.0 }, { - "V": 0.0, - "T": 529.0 + "V": 5.0, + "T": 558.0 }, { - "V": 0.0, - "T": 533.0 + "V": 5.0, + "T": 562.0 }, { - "V": 0.0, - "T": 537.0 + "V": 5.0, + "T": 566.0 }, { - "V": 0.0, - "T": 541.0 + "V": 5.0, + "T": 570.0 }, { - "V": 0.0, - "T": 545.0 + "V": 5.0, + "T": 574.0 }, { - "V": 0.0, - "T": 549.0 + "V": 4.0, + "T": 578.0 }, { - "V": 0.0, - "T": 553.0 + "V": 6.0, + "T": 582.0 }, { - "V": 0.0, - "T": 557.0 + "V": 5.0, + "T": 586.0 }, { - "V": 0.0, - "T": 561.0 + "V": 5.0, + "T": 590.0 }, { - "V": 0.0, - "T": 565.0 + "V": 5.0, + "T": 594.0 }, + { + "V": 5.0, + "T": 598.0 + } + ], + "Gen0PerSec": [ { "V": 0.0, - "T": 569.0 + "T": 1.0 }, { "V": 0.0, - "T": 573.0 + "T": 6.0 }, { "V": 0.0, - "T": 577.0 + "T": 11.0 }, { "V": 0.0, - "T": 581.0 + "T": 16.0 }, { "V": 0.0, - "T": 585.0 + "T": 21.0 }, { "V": 0.0, - "T": 589.0 + "T": 26.0 }, { "V": 0.0, - "T": 593.0 - } - ] - } - }, - { - "ScenarioId": "zeroalloc", - "ScenarioName": "Console: near-zero-allocation numeric compute (matrix multiply)", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 600.0000076, - "Summary": { - "OperationsTotal": 693268, - "OpsPerSecondOverall": 1155.446652031009, - "TotalAllocatedBytes": 670957624, - "BytesAllocatedThisThreadDuringRun": 24688, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 70885376, - "PeakWorkingSetBytes": 70885376, - "HeapSizeBytes": 671088640, - "TotalCommittedBytes": 671088640, - "GcName": "ZeroGC.dll" - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 597 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 597 - }, - "WorkingSetStats": { - "Avg": 59970131.90635452, - "P50": 60129280.0, - "P90": 67358720.0, - "P99": 69025792.0, - "Max": 69140480.0, - "Min": 44462080.0, - "Count": 598 - }, - "AllocRateMBStats": { - "Avg": 0.10699338928938311, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 63.87505340576172, - "Min": 0.0, - "Count": 597 - }, - "OpsPerSecStats": { - "Avg": 1154.61872909699, - "P50": 1153.0, - "P90": 1164.0, - "P99": 1178.0, - "Max": 1537.0, - "Min": 1071.0, - "Count": 598 - }, - "TimeSeries": { - "PauseTimePct": [ + "T": 31.0 + }, { "V": 0.0, - "T": 1.0 + "T": 36.0 }, { "V": 0.0, - "T": 5.0 + "T": 41.0 }, { "V": 0.0, - "T": 9.0 + "T": 46.0 }, { "V": 0.0, - "T": 13.0 + "T": 51.0 }, { "V": 0.0, - "T": 17.0 + "T": 56.0 }, { "V": 0.0, - "T": 21.0 + "T": 61.0 }, { "V": 0.0, - "T": 25.0 + "T": 66.0 }, { "V": 0.0, - "T": 29.0 + "T": 71.0 }, { "V": 0.0, - "T": 33.0 + "T": 76.0 }, { "V": 0.0, - "T": 37.0 + "T": 81.0 }, { "V": 0.0, - "T": 41.0 + "T": 86.0 }, { "V": 0.0, - "T": 45.0 + "T": 91.0 }, { "V": 0.0, - "T": 49.0 + "T": 96.0 }, { "V": 0.0, - "T": 53.0 + "T": 101.0 }, { "V": 0.0, - "T": 57.0 + "T": 106.0 }, { "V": 0.0, - "T": 61.0 + "T": 111.0 }, { "V": 0.0, - "T": 65.0 + "T": 116.0 }, { "V": 0.0, - "T": 69.0 + "T": 121.0 }, { "V": 0.0, - "T": 73.0 + "T": 126.0 }, { "V": 0.0, - "T": 77.0 + "T": 131.0 }, { "V": 0.0, - "T": 81.0 + "T": 136.0 }, { "V": 0.0, - "T": 85.0 + "T": 141.0 }, { "V": 0.0, - "T": 89.0 + "T": 146.0 }, { "V": 0.0, - "T": 93.0 + "T": 151.0 }, { "V": 0.0, - "T": 97.0 + "T": 156.0 }, { "V": 0.0, - "T": 101.0 + "T": 161.0 }, { "V": 0.0, - "T": 105.0 + "T": 166.0 }, { "V": 0.0, - "T": 109.0 + "T": 171.0 }, { "V": 0.0, - "T": 113.0 + "T": 176.0 }, { "V": 0.0, - "T": 117.0 + "T": 181.0 }, { "V": 0.0, - "T": 121.0 + "T": 186.0 }, { "V": 0.0, - "T": 125.0 + "T": 191.0 }, { "V": 0.0, - "T": 129.0 + "T": 196.0 }, { "V": 0.0, - "T": 133.0 + "T": 201.0 }, { "V": 0.0, - "T": 137.0 + "T": 206.0 }, { "V": 0.0, - "T": 141.0 + "T": 211.0 }, { "V": 0.0, - "T": 145.0 + "T": 216.0 }, { "V": 0.0, - "T": 149.0 + "T": 221.0 }, { "V": 0.0, - "T": 153.0 + "T": 226.0 }, { "V": 0.0, - "T": 157.0 + "T": 231.0 }, { "V": 0.0, - "T": 161.0 + "T": 236.0 }, { "V": 0.0, - "T": 165.0 + "T": 241.0 }, { "V": 0.0, - "T": 169.0 + "T": 246.0 }, { "V": 0.0, - "T": 173.0 + "T": 251.0 }, { "V": 0.0, - "T": 177.0 + "T": 256.0 }, { "V": 0.0, - "T": 181.0 + "T": 261.0 }, { "V": 0.0, - "T": 185.0 + "T": 266.0 }, { "V": 0.0, - "T": 189.0 + "T": 271.0 }, { "V": 0.0, - "T": 193.0 + "T": 276.0 }, { "V": 0.0, - "T": 197.0 + "T": 281.0 }, { "V": 0.0, - "T": 201.0 + "T": 286.0 }, { "V": 0.0, - "T": 205.0 + "T": 291.0 }, { "V": 0.0, - "T": 209.0 + "T": 296.0 }, { "V": 0.0, - "T": 213.0 + "T": 301.0 }, { "V": 0.0, - "T": 217.0 + "T": 306.0 }, { "V": 0.0, - "T": 221.0 + "T": 311.0 }, { "V": 0.0, - "T": 225.0 + "T": 316.0 }, { "V": 0.0, - "T": 229.0 + "T": 321.0 }, { "V": 0.0, - "T": 233.0 + "T": 326.0 }, { "V": 0.0, - "T": 237.0 + "T": 331.0 }, { "V": 0.0, - "T": 241.0 + "T": 336.0 }, { "V": 0.0, - "T": 245.0 + "T": 341.0 }, { "V": 0.0, - "T": 249.0 + "T": 346.0 }, { "V": 0.0, - "T": 253.0 + "T": 351.0 }, { "V": 0.0, - "T": 257.0 + "T": 356.0 }, { "V": 0.0, - "T": 261.0 + "T": 361.0 }, { "V": 0.0, - "T": 265.0 + "T": 366.0 }, { "V": 0.0, - "T": 269.0 + "T": 371.0 }, { "V": 0.0, - "T": 273.0 + "T": 376.0 }, { "V": 0.0, - "T": 277.0 + "T": 381.0 }, { "V": 0.0, - "T": 281.0 + "T": 386.0 }, { "V": 0.0, - "T": 285.0 + "T": 391.0 }, { "V": 0.0, - "T": 289.0 + "T": 396.0 }, { "V": 0.0, - "T": 293.0 + "T": 401.0 }, { "V": 0.0, - "T": 297.0 + "T": 406.0 }, { "V": 0.0, - "T": 301.0 + "T": 411.0 }, { "V": 0.0, - "T": 305.0 + "T": 416.0 }, { "V": 0.0, - "T": 309.0 + "T": 421.0 }, { "V": 0.0, - "T": 313.0 + "T": 426.0 }, { "V": 0.0, - "T": 317.0 + "T": 431.0 }, { "V": 0.0, - "T": 321.0 + "T": 436.0 }, { "V": 0.0, - "T": 325.0 + "T": 441.0 }, { "V": 0.0, - "T": 329.0 + "T": 446.0 }, { "V": 0.0, - "T": 333.0 + "T": 451.0 }, { "V": 0.0, - "T": 337.0 + "T": 456.0 }, { "V": 0.0, - "T": 341.0 + "T": 461.0 }, { "V": 0.0, - "T": 345.0 + "T": 466.0 }, { "V": 0.0, - "T": 349.0 + "T": 471.0 }, { "V": 0.0, - "T": 353.0 + "T": 476.0 }, { "V": 0.0, - "T": 357.0 + "T": 481.0 }, { "V": 0.0, - "T": 361.0 + "T": 486.0 }, { "V": 0.0, - "T": 365.0 + "T": 491.0 }, { "V": 0.0, - "T": 369.0 + "T": 496.0 }, { "V": 0.0, - "T": 373.0 + "T": 501.0 }, { "V": 0.0, - "T": 377.0 + "T": 506.0 }, { "V": 0.0, - "T": 381.0 + "T": 511.0 }, { "V": 0.0, - "T": 385.0 + "T": 516.0 }, { "V": 0.0, - "T": 389.0 + "T": 521.0 }, { "V": 0.0, - "T": 393.0 + "T": 526.0 }, { "V": 0.0, - "T": 397.0 + "T": 531.0 }, { "V": 0.0, - "T": 401.0 + "T": 536.0 }, { "V": 0.0, - "T": 405.0 + "T": 541.0 }, { "V": 0.0, - "T": 409.0 + "T": 546.0 }, { "V": 0.0, - "T": 413.0 + "T": 551.0 }, { "V": 0.0, - "T": 417.0 + "T": 556.0 }, { "V": 0.0, - "T": 421.0 + "T": 561.0 }, { "V": 0.0, - "T": 425.0 + "T": 566.0 }, { "V": 0.0, - "T": 429.0 + "T": 571.0 }, { "V": 0.0, - "T": 433.0 + "T": 576.0 }, { "V": 0.0, - "T": 437.0 + "T": 581.0 }, { "V": 0.0, - "T": 441.0 + "T": 586.0 }, { "V": 0.0, - "T": 445.0 + "T": 591.0 }, { "V": 0.0, - "T": 449.0 + "T": 596.0 }, { "V": 0.0, - "T": 453.0 - }, + "T": 601.0 + } + ] + } + }, + { + "ScenarioId": "dotllm-serve-1_5b", + "ScenarioName": "dotLLM: 1.5B model (~1GB, Q4_K_M), few-hundred-token context, zero-alloc-inference HTTP server", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 600, + "Summary": { + "OperationsTotal": 120.0, + "OpsPerSecondOverall": 0.2, + "TotalAllocatedBytes": 1542862072.0, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 2616016896.0, + "PeakWorkingSetBytes": 2616016896.0, + "HeapSizeBytes": null, + "TotalCommittedBytes": 6845104128.0, + "GcName": "ZeroGC" + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 604 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 604 + }, + "WorkingSetStats": { + "Avg": 2577211452.9322314, + "P50": 2578763776.0, + "P90": 2607702016.0, + "P99": 2615332864.0, + "Max": 2616016896.0, + "Min": 2532360192.0, + "Count": 605 + }, + "AllocRateMBStats": { + "Avg": 2.436072734807501, + "P50": 0.0, + "P90": 0.0, + "P99": 64.0, + "Max": 64.0, + "Min": 0.0, + "Count": 604 + }, + "OpsPerSecStats": { + "Avg": 1.0, + "P50": 1.0, + "P90": 1.0, + "P99": 1.0, + "Max": 1.0, + "Min": 1.0, + "Count": 120 + }, + "TimeSeries": { + "PauseTimePct": [ { "V": 0.0, - "T": 457.0 + "T": 1.0 }, { "V": 0.0, - "T": 461.0 + "T": 6.0 }, { "V": 0.0, - "T": 465.0 + "T": 11.0 }, { "V": 0.0, - "T": 469.0 + "T": 16.0 }, { "V": 0.0, - "T": 473.0 + "T": 21.0 }, { "V": 0.0, - "T": 477.0 + "T": 26.0 }, { "V": 0.0, - "T": 481.0 + "T": 31.0 }, { "V": 0.0, - "T": 485.0 + "T": 36.0 }, { "V": 0.0, - "T": 489.0 + "T": 41.0 }, { "V": 0.0, - "T": 493.0 + "T": 46.0 }, { "V": 0.0, - "T": 497.0 + "T": 51.0 }, { "V": 0.0, - "T": 501.0 + "T": 56.0 }, { "V": 0.0, - "T": 505.0 + "T": 61.0 }, { "V": 0.0, - "T": 509.0 + "T": 66.0 }, { "V": 0.0, - "T": 513.0 + "T": 71.0 }, { "V": 0.0, - "T": 517.0 + "T": 76.0 }, { "V": 0.0, - "T": 521.0 + "T": 81.0 }, { "V": 0.0, - "T": 525.0 + "T": 86.0 }, { "V": 0.0, - "T": 529.0 + "T": 91.0 }, { "V": 0.0, - "T": 533.0 + "T": 96.0 }, { "V": 0.0, - "T": 537.0 + "T": 101.0 }, { "V": 0.0, - "T": 541.0 + "T": 106.0 }, { "V": 0.0, - "T": 545.0 + "T": 111.0 }, { "V": 0.0, - "T": 549.0 + "T": 116.0 }, { "V": 0.0, - "T": 553.0 + "T": 121.0 }, { "V": 0.0, - "T": 557.0 + "T": 126.0 }, { "V": 0.0, - "T": 561.0 + "T": 131.0 }, { "V": 0.0, - "T": 565.0 + "T": 136.0 }, { "V": 0.0, - "T": 569.0 + "T": 141.0 }, { "V": 0.0, - "T": 573.0 + "T": 146.0 }, { "V": 0.0, - "T": 577.0 + "T": 151.0 }, { "V": 0.0, - "T": 581.0 + "T": 156.0 }, { "V": 0.0, - "T": 585.0 + "T": 161.0 }, { "V": 0.0, - "T": 589.0 + "T": 166.0 }, { "V": 0.0, - "T": 593.0 + "T": 171.0 }, { "V": 0.0, - "T": 597.0 - } - ], - "PauseTimeMs": [ + "T": 176.0 + }, { "V": 0.0, - "T": 1.0 + "T": 181.0 }, { "V": 0.0, - "T": 5.0 + "T": 186.0 }, { "V": 0.0, - "T": 9.0 + "T": 191.0 }, { "V": 0.0, - "T": 13.0 + "T": 196.0 }, { "V": 0.0, - "T": 17.0 + "T": 201.0 }, { "V": 0.0, - "T": 21.0 + "T": 206.0 }, { "V": 0.0, - "T": 25.0 + "T": 211.0 }, { "V": 0.0, - "T": 29.0 + "T": 216.0 }, { "V": 0.0, - "T": 33.0 + "T": 221.0 }, { "V": 0.0, - "T": 37.0 + "T": 226.0 }, { "V": 0.0, - "T": 41.0 + "T": 231.0 }, { "V": 0.0, - "T": 45.0 + "T": 236.0 }, { "V": 0.0, - "T": 49.0 + "T": 241.0 }, { "V": 0.0, - "T": 53.0 + "T": 246.0 }, { "V": 0.0, - "T": 57.0 + "T": 251.0 }, { "V": 0.0, - "T": 61.0 + "T": 256.0 }, { "V": 0.0, - "T": 65.0 + "T": 261.0 }, { "V": 0.0, - "T": 69.0 + "T": 266.0 }, { "V": 0.0, - "T": 73.0 + "T": 271.0 }, { "V": 0.0, - "T": 77.0 + "T": 276.0 }, { "V": 0.0, - "T": 81.0 + "T": 281.0 }, { "V": 0.0, - "T": 85.0 + "T": 286.0 }, { "V": 0.0, - "T": 89.0 + "T": 291.0 }, { "V": 0.0, - "T": 93.0 + "T": 296.0 }, { "V": 0.0, - "T": 97.0 + "T": 301.0 }, { "V": 0.0, - "T": 101.0 + "T": 306.0 }, { "V": 0.0, - "T": 105.0 + "T": 311.0 }, { "V": 0.0, - "T": 109.0 + "T": 316.0 }, { "V": 0.0, - "T": 113.0 + "T": 321.0 }, { "V": 0.0, - "T": 117.0 + "T": 326.0 }, { "V": 0.0, - "T": 121.0 + "T": 331.0 }, { "V": 0.0, - "T": 125.0 + "T": 336.0 }, { "V": 0.0, - "T": 129.0 + "T": 341.0 }, { "V": 0.0, - "T": 133.0 + "T": 346.0 }, { "V": 0.0, - "T": 137.0 + "T": 351.0 }, { "V": 0.0, - "T": 141.0 + "T": 356.0 }, { "V": 0.0, - "T": 145.0 + "T": 361.0 }, { "V": 0.0, - "T": 149.0 + "T": 366.0 }, { "V": 0.0, - "T": 153.0 + "T": 371.0 }, { "V": 0.0, - "T": 157.0 + "T": 376.0 }, { "V": 0.0, - "T": 161.0 + "T": 381.0 }, { "V": 0.0, - "T": 165.0 + "T": 386.0 }, { "V": 0.0, - "T": 169.0 + "T": 391.0 }, { "V": 0.0, - "T": 173.0 + "T": 396.0 }, { "V": 0.0, - "T": 177.0 + "T": 401.0 }, { "V": 0.0, - "T": 181.0 + "T": 406.0 }, { "V": 0.0, - "T": 185.0 + "T": 411.0 }, { "V": 0.0, - "T": 189.0 + "T": 416.0 }, { "V": 0.0, - "T": 193.0 + "T": 421.0 }, { "V": 0.0, - "T": 197.0 + "T": 426.0 }, { "V": 0.0, - "T": 201.0 + "T": 431.0 }, { "V": 0.0, - "T": 205.0 + "T": 436.0 }, { "V": 0.0, - "T": 209.0 + "T": 441.0 }, { "V": 0.0, - "T": 213.0 + "T": 446.0 }, { "V": 0.0, - "T": 217.0 + "T": 451.0 }, { "V": 0.0, - "T": 221.0 + "T": 456.0 }, { "V": 0.0, - "T": 225.0 + "T": 461.0 }, { "V": 0.0, - "T": 229.0 + "T": 466.0 }, { "V": 0.0, - "T": 233.0 + "T": 471.0 }, { "V": 0.0, - "T": 237.0 + "T": 476.0 }, { "V": 0.0, - "T": 241.0 + "T": 481.0 }, { "V": 0.0, - "T": 245.0 + "T": 486.0 }, { "V": 0.0, - "T": 249.0 + "T": 491.0 }, { "V": 0.0, - "T": 253.0 + "T": 496.0 }, { "V": 0.0, - "T": 257.0 + "T": 501.0 }, { "V": 0.0, - "T": 261.0 + "T": 506.0 }, { "V": 0.0, - "T": 265.0 + "T": 511.0 }, { "V": 0.0, - "T": 269.0 + "T": 516.0 }, { "V": 0.0, - "T": 273.0 + "T": 521.0 }, { "V": 0.0, - "T": 277.0 + "T": 526.0 }, { "V": 0.0, - "T": 281.0 + "T": 531.0 }, { "V": 0.0, - "T": 285.0 + "T": 536.0 }, { "V": 0.0, - "T": 289.0 + "T": 541.0 }, { "V": 0.0, - "T": 293.0 + "T": 546.0 }, { "V": 0.0, - "T": 297.0 + "T": 551.0 }, { "V": 0.0, - "T": 301.0 + "T": 556.0 }, { "V": 0.0, - "T": 305.0 + "T": 561.0 }, { "V": 0.0, - "T": 309.0 + "T": 566.0 }, { "V": 0.0, - "T": 313.0 + "T": 571.0 }, { "V": 0.0, - "T": 317.0 + "T": 576.0 }, { "V": 0.0, - "T": 321.0 + "T": 581.0 }, { "V": 0.0, - "T": 325.0 + "T": 586.0 }, { "V": 0.0, - "T": 329.0 + "T": 591.0 }, { "V": 0.0, - "T": 333.0 + "T": 596.0 }, { "V": 0.0, - "T": 337.0 - }, + "T": 601.0 + } + ], + "PauseTimeMs": [ { "V": 0.0, - "T": 341.0 + "T": 1.0 }, { "V": 0.0, - "T": 345.0 + "T": 6.0 }, { "V": 0.0, - "T": 349.0 + "T": 11.0 }, { "V": 0.0, - "T": 353.0 + "T": 16.0 }, { "V": 0.0, - "T": 357.0 + "T": 21.0 }, { "V": 0.0, - "T": 361.0 + "T": 26.0 }, { "V": 0.0, - "T": 365.0 + "T": 31.0 }, { "V": 0.0, - "T": 369.0 + "T": 36.0 }, { "V": 0.0, - "T": 373.0 + "T": 41.0 }, { "V": 0.0, - "T": 377.0 + "T": 46.0 }, { "V": 0.0, - "T": 381.0 + "T": 51.0 }, { "V": 0.0, - "T": 385.0 + "T": 56.0 }, { "V": 0.0, - "T": 389.0 + "T": 61.0 }, { "V": 0.0, - "T": 393.0 + "T": 66.0 }, { "V": 0.0, - "T": 397.0 + "T": 71.0 }, { "V": 0.0, - "T": 401.0 + "T": 76.0 }, { "V": 0.0, - "T": 405.0 + "T": 81.0 }, { "V": 0.0, - "T": 409.0 + "T": 86.0 }, { "V": 0.0, - "T": 413.0 + "T": 91.0 }, { "V": 0.0, - "T": 417.0 + "T": 96.0 }, { "V": 0.0, - "T": 421.0 + "T": 101.0 }, { "V": 0.0, - "T": 425.0 + "T": 106.0 }, { "V": 0.0, - "T": 429.0 + "T": 111.0 }, { "V": 0.0, - "T": 433.0 + "T": 116.0 }, { "V": 0.0, - "T": 437.0 + "T": 121.0 }, { "V": 0.0, - "T": 441.0 + "T": 126.0 }, { "V": 0.0, - "T": 445.0 + "T": 131.0 }, { "V": 0.0, - "T": 449.0 + "T": 136.0 }, { "V": 0.0, - "T": 453.0 + "T": 141.0 }, { "V": 0.0, - "T": 457.0 + "T": 146.0 }, { "V": 0.0, - "T": 461.0 + "T": 151.0 }, { "V": 0.0, - "T": 465.0 + "T": 156.0 }, { "V": 0.0, - "T": 469.0 + "T": 161.0 }, { "V": 0.0, - "T": 473.0 + "T": 166.0 }, { "V": 0.0, - "T": 477.0 + "T": 171.0 }, { "V": 0.0, - "T": 481.0 + "T": 176.0 }, { "V": 0.0, - "T": 485.0 + "T": 181.0 }, { "V": 0.0, - "T": 489.0 + "T": 186.0 }, { "V": 0.0, - "T": 493.0 + "T": 191.0 }, { "V": 0.0, - "T": 497.0 + "T": 196.0 }, { "V": 0.0, - "T": 501.0 + "T": 201.0 }, { "V": 0.0, - "T": 505.0 + "T": 206.0 }, { "V": 0.0, - "T": 509.0 + "T": 211.0 }, { "V": 0.0, - "T": 513.0 + "T": 216.0 }, { "V": 0.0, - "T": 517.0 + "T": 221.0 }, { "V": 0.0, - "T": 521.0 + "T": 226.0 }, { "V": 0.0, - "T": 525.0 + "T": 231.0 }, { "V": 0.0, - "T": 529.0 + "T": 236.0 }, { "V": 0.0, - "T": 533.0 + "T": 241.0 }, { "V": 0.0, - "T": 537.0 + "T": 246.0 }, { "V": 0.0, - "T": 541.0 + "T": 251.0 }, { "V": 0.0, - "T": 545.0 + "T": 256.0 }, { "V": 0.0, - "T": 549.0 + "T": 261.0 }, { "V": 0.0, - "T": 553.0 + "T": 266.0 }, { "V": 0.0, - "T": 557.0 + "T": 271.0 }, { "V": 0.0, - "T": 561.0 + "T": 276.0 }, { "V": 0.0, - "T": 565.0 + "T": 281.0 }, { "V": 0.0, - "T": 569.0 + "T": 286.0 }, { "V": 0.0, - "T": 573.0 + "T": 291.0 }, { "V": 0.0, - "T": 577.0 + "T": 296.0 }, { "V": 0.0, - "T": 581.0 + "T": 301.0 }, { "V": 0.0, - "T": 585.0 + "T": 306.0 }, { "V": 0.0, - "T": 589.0 + "T": 311.0 }, { "V": 0.0, - "T": 593.0 + "T": 316.0 }, { "V": 0.0, - "T": 597.0 - } - ], - "WorkingSetMB": [ - { - "V": 42.4, - "T": 0.0 - }, - { - "V": 45.79, - "T": 4.0 - }, - { - "V": 48.34, - "T": 8.0 + "T": 321.0 }, { - "V": 48.6, - "T": 12.0 + "V": 0.0, + "T": 326.0 }, { - "V": 48.75, - "T": 16.0 + "V": 0.0, + "T": 331.0 }, { - "V": 48.89, - "T": 20.0 + "V": 0.0, + "T": 336.0 }, { - "V": 49.09, - "T": 24.0 + "V": 0.0, + "T": 341.0 }, { - "V": 49.17, - "T": 28.0 + "V": 0.0, + "T": 346.0 }, { - "V": 49.51, - "T": 32.0 + "V": 0.0, + "T": 351.0 }, { - "V": 49.62, - "T": 36.0 + "V": 0.0, + "T": 356.0 }, { - "V": 49.72, - "T": 40.0 + "V": 0.0, + "T": 361.0 }, { - "V": 49.81, - "T": 44.0 + "V": 0.0, + "T": 366.0 }, { - "V": 49.91, - "T": 48.0 + "V": 0.0, + "T": 371.0 }, { - "V": 50.04, - "T": 52.0 + "V": 0.0, + "T": 376.0 }, { - "V": 50.14, - "T": 56.0 + "V": 0.0, + "T": 381.0 }, { - "V": 50.25, - "T": 60.0 + "V": 0.0, + "T": 386.0 }, { - "V": 50.41, - "T": 64.0 + "V": 0.0, + "T": 391.0 }, { - "V": 50.52, - "T": 68.0 + "V": 0.0, + "T": 396.0 }, { - "V": 50.62, - "T": 72.0 + "V": 0.0, + "T": 401.0 }, { - "V": 50.7, - "T": 76.0 + "V": 0.0, + "T": 406.0 }, { - "V": 50.87, - "T": 80.0 + "V": 0.0, + "T": 411.0 }, { - "V": 50.96, - "T": 84.0 + "V": 0.0, + "T": 416.0 }, { - "V": 51.05, - "T": 88.0 + "V": 0.0, + "T": 421.0 }, { - "V": 51.21, - "T": 92.0 + "V": 0.0, + "T": 426.0 }, { - "V": 51.31, - "T": 96.0 + "V": 0.0, + "T": 431.0 }, { - "V": 51.41, - "T": 100.0 + "V": 0.0, + "T": 436.0 }, { - "V": 51.55, - "T": 104.0 + "V": 0.0, + "T": 441.0 }, { - "V": 51.66, - "T": 108.0 + "V": 0.0, + "T": 446.0 }, { - "V": 51.75, - "T": 112.0 + "V": 0.0, + "T": 451.0 }, { - "V": 51.91, - "T": 116.0 + "V": 0.0, + "T": 456.0 }, { - "V": 52.0, - "T": 120.0 + "V": 0.0, + "T": 461.0 }, { - "V": 52.1, - "T": 124.0 + "V": 0.0, + "T": 466.0 }, { - "V": 52.25, - "T": 128.0 + "V": 0.0, + "T": 471.0 }, { - "V": 52.34, - "T": 132.0 + "V": 0.0, + "T": 476.0 }, { - "V": 52.5, - "T": 136.0 + "V": 0.0, + "T": 481.0 }, { - "V": 52.59, - "T": 140.0 + "V": 0.0, + "T": 486.0 }, { - "V": 52.69, - "T": 144.0 + "V": 0.0, + "T": 491.0 }, { - "V": 52.78, - "T": 148.0 + "V": 0.0, + "T": 496.0 }, { - "V": 52.91, - "T": 152.0 + "V": 0.0, + "T": 501.0 }, { - "V": 53.02, - "T": 156.0 + "V": 0.0, + "T": 506.0 }, { - "V": 53.14, - "T": 160.0 + "V": 0.0, + "T": 511.0 }, { - "V": 53.26, - "T": 164.0 + "V": 0.0, + "T": 516.0 }, { - "V": 53.38, - "T": 168.0 + "V": 0.0, + "T": 521.0 }, { - "V": 53.54, - "T": 172.0 + "V": 0.0, + "T": 526.0 }, { - "V": 53.62, - "T": 176.0 + "V": 0.0, + "T": 531.0 }, { - "V": 53.73, - "T": 180.0 + "V": 0.0, + "T": 536.0 }, { - "V": 53.88, - "T": 184.0 + "V": 0.0, + "T": 541.0 }, { - "V": 53.98, - "T": 188.0 + "V": 0.0, + "T": 546.0 }, { - "V": 54.07, - "T": 192.0 + "V": 0.0, + "T": 551.0 }, { - "V": 54.22, - "T": 196.0 + "V": 0.0, + "T": 556.0 }, { - "V": 54.32, - "T": 200.0 + "V": 0.0, + "T": 561.0 }, { - "V": 54.41, - "T": 204.0 + "V": 0.0, + "T": 566.0 }, { - "V": 54.57, - "T": 208.0 + "V": 0.0, + "T": 571.0 }, { - "V": 54.66, - "T": 212.0 + "V": 0.0, + "T": 576.0 }, { - "V": 54.82, - "T": 216.0 + "V": 0.0, + "T": 581.0 }, { - "V": 54.91, - "T": 220.0 + "V": 0.0, + "T": 586.0 }, { - "V": 55.0, - "T": 224.0 + "V": 0.0, + "T": 591.0 }, { - "V": 55.17, - "T": 228.0 + "V": 0.0, + "T": 596.0 }, { - "V": 55.26, - "T": 232.0 - }, + "V": 0.0, + "T": 601.0 + } + ], + "WorkingSetMB": [ { - "V": 55.36, - "T": 236.0 + "V": 2415.05, + "T": 0.0 }, { - "V": 55.51, - "T": 240.0 + "V": 2417.59, + "T": 5.0 }, { - "V": 55.6, - "T": 244.0 + "V": 2418.49, + "T": 10.0 }, { - "V": 55.7, - "T": 248.0 + "V": 2419.35, + "T": 15.0 }, { - "V": 55.79, - "T": 252.0 + "V": 2420.15, + "T": 20.0 }, { - "V": 55.92, - "T": 256.0 + "V": 2421.24, + "T": 25.0 }, { - "V": 56.03, - "T": 260.0 + "V": 2421.85, + "T": 30.0 }, { - "V": 56.2, - "T": 264.0 + "V": 2422.71, + "T": 35.0 }, { - "V": 56.29, - "T": 268.0 + "V": 2423.55, + "T": 40.0 }, { - "V": 56.38, - "T": 272.0 + "V": 2424.23, + "T": 45.0 }, { - "V": 56.54, - "T": 276.0 + "V": 2424.93, + "T": 50.0 }, { - "V": 56.63, - "T": 280.0 + "V": 2425.56, + "T": 55.0 }, { - "V": 56.79, - "T": 284.0 + "V": 2426.37, + "T": 60.0 }, { - "V": 56.88, - "T": 288.0 + "V": 2427.17, + "T": 65.0 }, { - "V": 56.98, - "T": 292.0 + "V": 2427.89, + "T": 70.0 }, { - "V": 57.07, - "T": 296.0 + "V": 2428.63, + "T": 75.0 }, { - "V": 57.39, - "T": 300.0 + "V": 2429.26, + "T": 80.0 }, { - "V": 57.48, - "T": 304.0 + "V": 2429.83, + "T": 85.0 }, { - "V": 57.64, - "T": 308.0 + "V": 2430.41, + "T": 90.0 }, { - "V": 57.73, - "T": 312.0 + "V": 2431.06, + "T": 95.0 }, { - "V": 57.83, - "T": 316.0 + "V": 2431.7, + "T": 100.0 }, { - "V": 57.98, - "T": 320.0 + "V": 2432.29, + "T": 105.0 }, { - "V": 58.08, - "T": 324.0 + "V": 2433.04, + "T": 110.0 }, { - "V": 58.17, - "T": 328.0 + "V": 2433.82, + "T": 115.0 }, { - "V": 58.32, - "T": 332.0 + "V": 2434.16, + "T": 120.0 }, { - "V": 58.42, - "T": 336.0 + "V": 2434.67, + "T": 125.0 }, { - "V": 58.51, - "T": 340.0 + "V": 2435.41, + "T": 130.0 }, { - "V": 58.67, - "T": 344.0 + "V": 2436.0, + "T": 135.0 }, { - "V": 58.77, - "T": 348.0 + "V": 2437.98, + "T": 140.0 }, { - "V": 58.86, - "T": 352.0 + "V": 2438.72, + "T": 145.0 }, { - "V": 59.02, - "T": 356.0 + "V": 2439.33, + "T": 150.0 }, { - "V": 59.1, - "T": 360.0 + "V": 2440.1, + "T": 155.0 }, { - "V": 59.27, - "T": 364.0 + "V": 2440.87, + "T": 160.0 }, { - "V": 59.35, - "T": 368.0 + "V": 2441.61, + "T": 165.0 }, { - "V": 59.45, - "T": 372.0 + "V": 2442.14, + "T": 170.0 }, { - "V": 59.54, - "T": 376.0 + "V": 2442.85, + "T": 175.0 }, { - "V": 59.7, - "T": 380.0 + "V": 2443.39, + "T": 180.0 }, { - "V": 59.79, - "T": 384.0 + "V": 2443.95, + "T": 185.0 }, { - "V": 59.95, - "T": 388.0 + "V": 2444.51, + "T": 190.0 }, { - "V": 60.04, - "T": 392.0 + "V": 2445.37, + "T": 195.0 }, { - "V": 60.14, - "T": 396.0 + "V": 2446.0, + "T": 200.0 }, { - "V": 60.25, - "T": 400.0 + "V": 2446.64, + "T": 205.0 }, { - "V": 60.35, - "T": 404.0 + "V": 2447.2, + "T": 210.0 }, { - "V": 60.43, - "T": 408.0 + "V": 2447.9, + "T": 215.0 }, { - "V": 60.55, - "T": 412.0 + "V": 2448.52, + "T": 220.0 }, { - "V": 60.67, - "T": 416.0 + "V": 2449.11, + "T": 225.0 }, { - "V": 60.79, - "T": 420.0 + "V": 2450.16, + "T": 230.0 }, { - "V": 60.94, - "T": 424.0 + "V": 2450.81, + "T": 235.0 }, { - "V": 61.04, - "T": 428.0 + "V": 2451.62, + "T": 240.0 }, { - "V": 61.12, - "T": 432.0 + "V": 2452.16, + "T": 245.0 }, { - "V": 61.29, - "T": 436.0 + "V": 2452.64, + "T": 250.0 }, { - "V": 61.38, - "T": 440.0 + "V": 2452.94, + "T": 255.0 }, { - "V": 61.48, - "T": 444.0 + "V": 2453.68, + "T": 260.0 }, { - "V": 61.6, - "T": 448.0 + "V": 2454.4, + "T": 265.0 }, { - "V": 61.7, - "T": 452.0 + "V": 2455.12, + "T": 270.0 }, { - "V": 61.88, - "T": 456.0 + "V": 2455.75, + "T": 275.0 }, { - "V": 61.98, - "T": 460.0 + "V": 2456.73, + "T": 280.0 }, { - "V": 62.06, - "T": 464.0 + "V": 2457.43, + "T": 285.0 }, { - "V": 62.23, - "T": 468.0 + "V": 2457.96, + "T": 290.0 }, { - "V": 62.32, - "T": 472.0 + "V": 2458.23, + "T": 295.0 }, { - "V": 62.41, - "T": 476.0 + "V": 2458.86, + "T": 300.0 }, { - "V": 62.57, - "T": 480.0 + "V": 2459.53, + "T": 305.0 }, { - "V": 62.66, - "T": 484.0 + "V": 2460.16, + "T": 310.0 }, { - "V": 62.76, - "T": 488.0 + "V": 2460.75, + "T": 315.0 }, { - "V": 62.91, - "T": 492.0 + "V": 2461.54, + "T": 320.0 }, { - "V": 63.01, - "T": 496.0 + "V": 2462.07, + "T": 325.0 }, { - "V": 63.1, - "T": 500.0 + "V": 2462.66, + "T": 330.0 }, { - "V": 63.26, - "T": 504.0 + "V": 2463.19, + "T": 335.0 }, { - "V": 63.36, - "T": 508.0 + "V": 2464.02, + "T": 340.0 }, { - "V": 63.45, - "T": 512.0 + "V": 2464.66, + "T": 345.0 }, { - "V": 63.6, - "T": 516.0 + "V": 2465.17, + "T": 350.0 }, { - "V": 63.7, - "T": 520.0 + "V": 2465.75, + "T": 355.0 }, { - "V": 63.79, - "T": 524.0 + "V": 2466.32, + "T": 360.0 }, { - "V": 63.95, - "T": 528.0 + "V": 2466.95, + "T": 365.0 }, { - "V": 64.04, - "T": 532.0 + "V": 2467.53, + "T": 370.0 }, { - "V": 64.2, - "T": 536.0 + "V": 2468.08, + "T": 375.0 }, { - "V": 64.29, - "T": 540.0 + "V": 2468.66, + "T": 380.0 }, { - "V": 64.39, - "T": 544.0 + "V": 2469.19, + "T": 385.0 }, { - "V": 64.5, - "T": 548.0 + "V": 2469.85, + "T": 390.0 }, { - "V": 64.6, - "T": 552.0 + "V": 2470.42, + "T": 395.0 }, { - "V": 64.73, - "T": 556.0 + "V": 2471.25, + "T": 400.0 }, { - "V": 64.88, - "T": 560.0 + "V": 2472.0, + "T": 405.0 }, { - "V": 64.98, - "T": 564.0 + "V": 2472.58, + "T": 410.0 }, { - "V": 65.07, - "T": 568.0 + "V": 2473.14, + "T": 415.0 }, { - "V": 65.23, - "T": 572.0 + "V": 2473.71, + "T": 420.0 }, { - "V": 65.32, - "T": 576.0 + "V": 2474.34, + "T": 425.0 }, { - "V": 65.42, - "T": 580.0 + "V": 2474.59, + "T": 430.0 }, { - "V": 65.58, - "T": 584.0 + "V": 2475.07, + "T": 435.0 }, { - "V": 65.67, - "T": 588.0 + "V": 2475.31, + "T": 440.0 }, { - "V": 65.83, - "T": 592.0 + "V": 2475.8, + "T": 445.0 }, { - "V": 65.92, - "T": 596.0 - } - ], - "AllocRateMB": [ + "V": 2476.27, + "T": 450.0 + }, { - "V": 0.0, - "T": 1.0 + "V": 2476.5, + "T": 455.0 }, { - "V": 0.0, - "T": 5.0 + "V": 2476.96, + "T": 460.0 }, { - "V": 0.0, - "T": 9.0 + "V": 2477.45, + "T": 465.0 }, { - "V": 0.0, - "T": 13.0 + "V": 2478.03, + "T": 470.0 }, { - "V": 0.0, - "T": 17.0 + "V": 2478.65, + "T": 475.0 }, { - "V": 0.0, - "T": 21.0 + "V": 2479.36, + "T": 480.0 }, { - "V": 0.0, - "T": 25.0 + "V": 2479.91, + "T": 485.0 }, { - "V": 0.0, - "T": 29.0 + "V": 2480.26, + "T": 490.0 }, { - "V": 0.0, - "T": 33.0 + "V": 2480.9, + "T": 495.0 }, { - "V": 0.0, - "T": 37.0 + "V": 2481.54, + "T": 500.0 }, { - "V": 0.0, - "T": 41.0 + "V": 2482.28, + "T": 505.0 }, { - "V": 0.0, - "T": 45.0 + "V": 2482.85, + "T": 510.0 }, { - "V": 0.0, - "T": 49.0 + "V": 2483.42, + "T": 515.0 }, { - "V": 0.0, - "T": 53.0 + "V": 2483.96, + "T": 520.0 }, { - "V": 0.0, - "T": 57.0 + "V": 2484.6, + "T": 525.0 }, { - "V": 0.0, - "T": 61.0 + "V": 2485.12, + "T": 530.0 }, { - "V": 0.0, - "T": 65.0 + "V": 2485.7, + "T": 535.0 }, { - "V": 0.0, - "T": 69.0 + "V": 2486.36, + "T": 540.0 }, { - "V": 0.0, - "T": 73.0 + "V": 2486.96, + "T": 545.0 }, { - "V": 0.0, - "T": 77.0 + "V": 2487.63, + "T": 550.0 }, { - "V": 0.0, - "T": 81.0 + "V": 2488.2, + "T": 555.0 }, { - "V": 0.0, - "T": 85.0 + "V": 2489.18, + "T": 560.0 }, { - "V": 0.0, - "T": 89.0 + "V": 2489.77, + "T": 565.0 }, { - "V": 0.0, - "T": 93.0 + "V": 2490.41, + "T": 570.0 }, { - "V": 0.0, - "T": 97.0 + "V": 2491.05, + "T": 575.0 }, { - "V": 0.0, - "T": 101.0 + "V": 2491.61, + "T": 580.0 }, { - "V": 0.0, - "T": 105.0 + "V": 2492.3, + "T": 585.0 }, { - "V": 0.0, - "T": 109.0 + "V": 2493.12, + "T": 590.0 }, { - "V": 0.0, - "T": 113.0 + "V": 2493.93, + "T": 595.0 }, + { + "V": 2494.46, + "T": 600.0 + } + ], + "AllocRateMB": [ { "V": 0.0, - "T": 117.0 + "T": 1.0 }, { "V": 0.0, - "T": 121.0 + "T": 6.0 }, { "V": 0.0, - "T": 125.0 + "T": 11.0 }, { "V": 0.0, - "T": 129.0 + "T": 16.0 }, { "V": 0.0, - "T": 133.0 + "T": 21.0 }, { "V": 0.0, - "T": 137.0 + "T": 26.0 }, { "V": 0.0, - "T": 141.0 + "T": 31.0 }, { "V": 0.0, - "T": 145.0 + "T": 36.0 }, { "V": 0.0, - "T": 149.0 + "T": 41.0 }, { "V": 0.0, - "T": 153.0 + "T": 46.0 }, { "V": 0.0, - "T": 157.0 + "T": 51.0 }, { "V": 0.0, - "T": 161.0 + "T": 56.0 }, { "V": 0.0, - "T": 165.0 + "T": 61.0 }, { "V": 0.0, - "T": 169.0 + "T": 66.0 }, { "V": 0.0, - "T": 173.0 + "T": 71.0 }, { "V": 0.0, - "T": 177.0 + "T": 76.0 }, { "V": 0.0, - "T": 181.0 + "T": 81.0 }, { "V": 0.0, - "T": 185.0 + "T": 86.0 }, { "V": 0.0, - "T": 189.0 + "T": 91.0 }, { "V": 0.0, - "T": 193.0 + "T": 96.0 }, { "V": 0.0, - "T": 197.0 + "T": 101.0 }, { "V": 0.0, - "T": 201.0 + "T": 106.0 }, { "V": 0.0, - "T": 205.0 + "T": 111.0 }, { "V": 0.0, - "T": 209.0 + "T": 116.0 }, { "V": 0.0, - "T": 213.0 + "T": 121.0 }, { "V": 0.0, - "T": 217.0 + "T": 126.0 }, { "V": 0.0, - "T": 221.0 + "T": 131.0 }, { "V": 0.0, - "T": 225.0 + "T": 136.0 }, { "V": 0.0, - "T": 229.0 + "T": 141.0 }, { "V": 0.0, - "T": 233.0 + "T": 146.0 }, { "V": 0.0, - "T": 237.0 + "T": 151.0 }, { "V": 0.0, - "T": 241.0 + "T": 156.0 }, { "V": 0.0, - "T": 245.0 + "T": 161.0 }, { "V": 0.0, - "T": 249.0 + "T": 166.0 }, { "V": 0.0, - "T": 253.0 + "T": 171.0 }, { "V": 0.0, - "T": 257.0 + "T": 176.0 }, { "V": 0.0, - "T": 261.0 + "T": 181.0 }, { "V": 0.0, - "T": 265.0 + "T": 186.0 }, { "V": 0.0, - "T": 269.0 + "T": 191.0 }, { "V": 0.0, - "T": 273.0 + "T": 196.0 }, { "V": 0.0, - "T": 277.0 + "T": 201.0 }, { "V": 0.0, - "T": 281.0 + "T": 206.0 }, { "V": 0.0, - "T": 285.0 + "T": 211.0 }, { "V": 0.0, - "T": 289.0 + "T": 216.0 }, { "V": 0.0, - "T": 293.0 + "T": 221.0 }, { "V": 0.0, - "T": 297.0 + "T": 226.0 }, { "V": 0.0, - "T": 301.0 + "T": 231.0 }, { "V": 0.0, - "T": 305.0 + "T": 236.0 }, { - "V": 0.0, - "T": 309.0 + "V": 64.0, + "T": 241.0 }, { - "V": 0.0, - "T": 313.0 + "V": 64.0, + "T": 246.0 }, { "V": 0.0, - "T": 317.0 + "T": 251.0 }, { "V": 0.0, - "T": 321.0 + "T": 256.0 }, { "V": 0.0, - "T": 325.0 + "T": 261.0 }, { "V": 0.0, - "T": 329.0 + "T": 266.0 }, { "V": 0.0, - "T": 333.0 + "T": 271.0 }, { "V": 0.0, - "T": 337.0 + "T": 276.0 }, { "V": 0.0, - "T": 341.0 + "T": 281.0 }, { "V": 0.0, - "T": 345.0 + "T": 286.0 }, { "V": 0.0, - "T": 349.0 + "T": 291.0 }, { "V": 0.0, - "T": 353.0 + "T": 296.0 }, { "V": 0.0, - "T": 357.0 + "T": 301.0 }, { "V": 0.0, - "T": 361.0 + "T": 306.0 }, { "V": 0.0, - "T": 365.0 + "T": 311.0 }, { "V": 0.0, - "T": 369.0 + "T": 316.0 }, { - "V": 0.0, - "T": 373.0 + "V": 63.88, + "T": 321.0 }, { "V": 0.0, - "T": 377.0 + "T": 326.0 }, { "V": 0.0, - "T": 381.0 + "T": 331.0 }, { - "V": 0.0, - "T": 385.0 + "V": 64.0, + "T": 336.0 }, { "V": 0.0, - "T": 389.0 + "T": 341.0 }, { "V": 0.0, - "T": 393.0 + "T": 346.0 }, { "V": 0.0, - "T": 397.0 + "T": 351.0 }, { "V": 0.0, - "T": 401.0 + "T": 356.0 }, { "V": 0.0, - "T": 405.0 + "T": 361.0 }, { "V": 0.0, - "T": 409.0 + "T": 366.0 }, { "V": 0.0, - "T": 413.0 + "T": 371.0 }, { "V": 0.0, - "T": 417.0 + "T": 376.0 }, { "V": 0.0, - "T": 421.0 + "T": 381.0 }, { "V": 0.0, - "T": 425.0 + "T": 386.0 }, { - "V": 0.0, - "T": 429.0 + "V": 63.88, + "T": 391.0 }, { "V": 0.0, - "T": 433.0 + "T": 396.0 }, { "V": 0.0, - "T": 437.0 + "T": 401.0 }, { "V": 0.0, - "T": 441.0 + "T": 406.0 }, { "V": 0.0, - "T": 445.0 + "T": 411.0 }, { "V": 0.0, - "T": 449.0 + "T": 416.0 }, { "V": 0.0, - "T": 453.0 + "T": 421.0 }, { "V": 0.0, - "T": 457.0 + "T": 426.0 }, { "V": 0.0, - "T": 461.0 + "T": 431.0 }, { - "V": 0.0, - "T": 465.0 + "V": 64.0, + "T": 436.0 }, { "V": 0.0, - "T": 469.0 + "T": 441.0 }, { "V": 0.0, - "T": 473.0 + "T": 446.0 }, { "V": 0.0, - "T": 477.0 + "T": 451.0 }, { "V": 0.0, - "T": 481.0 + "T": 456.0 }, { "V": 0.0, - "T": 485.0 + "T": 461.0 }, { "V": 0.0, - "T": 489.0 + "T": 466.0 }, { "V": 0.0, - "T": 493.0 + "T": 471.0 }, { "V": 0.0, - "T": 497.0 + "T": 476.0 }, { "V": 0.0, - "T": 501.0 + "T": 481.0 }, { "V": 0.0, - "T": 505.0 + "T": 486.0 }, { "V": 0.0, - "T": 509.0 + "T": 491.0 }, { "V": 0.0, - "T": 513.0 + "T": 496.0 }, { "V": 0.0, - "T": 517.0 + "T": 501.0 }, { "V": 0.0, - "T": 521.0 + "T": 506.0 }, { "V": 0.0, - "T": 525.0 + "T": 511.0 }, { "V": 0.0, - "T": 529.0 + "T": 516.0 }, { "V": 0.0, - "T": 533.0 + "T": 521.0 }, { "V": 0.0, - "T": 537.0 + "T": 526.0 }, { "V": 0.0, - "T": 541.0 + "T": 531.0 }, { "V": 0.0, - "T": 545.0 + "T": 536.0 }, { "V": 0.0, - "T": 549.0 + "T": 541.0 }, { "V": 0.0, - "T": 553.0 + "T": 546.0 }, { "V": 0.0, - "T": 557.0 + "T": 551.0 }, { "V": 0.0, - "T": 561.0 + "T": 556.0 }, { - "V": 0.0, - "T": 565.0 + "V": 64.0, + "T": 561.0 }, { "V": 0.0, - "T": 569.0 + "T": 566.0 }, { "V": 0.0, - "T": 573.0 + "T": 571.0 }, { "V": 0.0, - "T": 577.0 + "T": 576.0 }, { "V": 0.0, @@ -63667,621 +65045,501 @@ }, { "V": 0.0, - "T": 585.0 + "T": 586.0 }, { "V": 0.0, - "T": 589.0 + "T": 591.0 }, { "V": 0.0, - "T": 593.0 + "T": 596.0 }, { "V": 0.0, - "T": 597.0 + "T": 601.0 } ], "OpsPerSec": [ { - "V": 1537.0, - "T": 0.0 - }, - { - "V": 1384.0, - "T": 4.0 - }, - { - "V": 1143.0, - "T": 8.0 + "V": 1.0, + "T": 5.0 }, { - "V": 1134.0, - "T": 12.0 + "V": 1.0, + "T": 9.0 }, { - "V": 1154.0, - "T": 16.0 + "V": 1.0, + "T": 14.0 }, { - "V": 1155.0, - "T": 20.0 + "V": 1.0, + "T": 19.0 }, { - "V": 1156.0, + "V": 1.0, "T": 24.0 }, { - "V": 1143.0, - "T": 28.0 - }, - { - "V": 1151.0, - "T": 32.0 + "V": 1.0, + "T": 30.0 }, { - "V": 1172.0, - "T": 36.0 + "V": 1.0, + "T": 34.0 }, { - "V": 1157.0, - "T": 40.0 + "V": 1.0, + "T": 39.0 }, { - "V": 1154.0, - "T": 44.0 + "V": 1.0, + "T": 43.0 }, { - "V": 1160.0, - "T": 48.0 + "V": 1.0, + "T": 47.0 }, { - "V": 1153.0, + "V": 1.0, "T": 52.0 }, { - "V": 1159.0, - "T": 56.0 - }, - { - "V": 1159.0, - "T": 60.0 + "V": 1.0, + "T": 57.0 }, { - "V": 1152.0, - "T": 64.0 + "V": 1.0, + "T": 61.0 }, { - "V": 1156.0, - "T": 68.0 + "V": 1.0, + "T": 66.0 }, { - "V": 1165.0, + "V": 1.0, "T": 72.0 }, { - "V": 1156.0, - "T": 76.0 - }, - { - "V": 1151.0, - "T": 80.0 + "V": 1.0, + "T": 77.0 }, { - "V": 1170.0, - "T": 84.0 + "V": 1.0, + "T": 83.0 }, { - "V": 1150.0, + "V": 1.0, "T": 88.0 }, { - "V": 1151.0, - "T": 92.0 - }, - { - "V": 1154.0, - "T": 96.0 + "V": 1.0, + "T": 94.0 }, { - "V": 1146.0, - "T": 100.0 + "V": 1.0, + "T": 99.0 }, { - "V": 1157.0, + "V": 1.0, "T": 104.0 }, { - "V": 1155.0, - "T": 108.0 - }, - { - "V": 1169.0, - "T": 112.0 - }, - { - "V": 1153.0, - "T": 116.0 + "V": 1.0, + "T": 109.0 }, { - "V": 1139.0, - "T": 120.0 + "V": 1.0, + "T": 115.0 }, { - "V": 1163.0, - "T": 124.0 + "V": 1.0, + "T": 121.0 }, { - "V": 1160.0, - "T": 128.0 + "V": 1.0, + "T": 126.0 }, { - "V": 1151.0, + "V": 1.0, "T": 132.0 }, { - "V": 1155.0, - "T": 136.0 - }, - { - "V": 1157.0, - "T": 140.0 + "V": 1.0, + "T": 137.0 }, { - "V": 1159.0, - "T": 144.0 + "V": 1.0, + "T": 143.0 }, { - "V": 1157.0, + "V": 1.0, "T": 148.0 }, { - "V": 1160.0, - "T": 152.0 - }, - { - "V": 1155.0, - "T": 156.0 + "V": 1.0, + "T": 154.0 }, { - "V": 1167.0, - "T": 160.0 + "V": 1.0, + "T": 159.0 }, { - "V": 1157.0, - "T": 164.0 + "V": 1.0, + "T": 163.0 }, { - "V": 1157.0, + "V": 1.0, "T": 168.0 }, { - "V": 1153.0, + "V": 1.0, "T": 172.0 }, { - "V": 1154.0, - "T": 176.0 - }, - { - "V": 1158.0, - "T": 180.0 + "V": 1.0, + "T": 177.0 }, { - "V": 1170.0, - "T": 184.0 + "V": 1.0, + "T": 181.0 }, { - "V": 1155.0, - "T": 188.0 + "V": 1.0, + "T": 186.0 }, { - "V": 1167.0, - "T": 192.0 + "V": 1.0, + "T": 191.0 }, { - "V": 1155.0, - "T": 196.0 + "V": 1.0, + "T": 195.0 }, { - "V": 1157.0, - "T": 200.0 + "V": 1.0, + "T": 199.0 }, { - "V": 1148.0, + "V": 1.0, "T": 204.0 }, { - "V": 1158.0, + "V": 1.0, "T": 208.0 }, { - "V": 1169.0, - "T": 212.0 - }, - { - "V": 1158.0, - "T": 216.0 + "V": 1.0, + "T": 213.0 }, { - "V": 1157.0, - "T": 220.0 + "V": 1.0, + "T": 217.0 }, { - "V": 1155.0, - "T": 224.0 + "V": 1.0, + "T": 221.0 }, { - "V": 1152.0, - "T": 228.0 + "V": 1.0, + "T": 226.0 }, { - "V": 1161.0, - "T": 232.0 + "V": 1.0, + "T": 230.0 }, { - "V": 1142.0, - "T": 236.0 + "V": 1.0, + "T": 235.0 }, { - "V": 1146.0, - "T": 240.0 + "V": 1.0, + "T": 239.0 }, { - "V": 1147.0, + "V": 1.0, "T": 244.0 }, { - "V": 1159.0, - "T": 248.0 - }, - { - "V": 1153.0, - "T": 252.0 + "V": 1.0, + "T": 249.0 }, { - "V": 1147.0, + "V": 1.0, "T": 256.0 }, { - "V": 1159.0, + "V": 1.0, "T": 260.0 }, { - "V": 1157.0, - "T": 264.0 - }, - { - "V": 1136.0, - "T": 268.0 + "V": 1.0, + "T": 265.0 }, { - "V": 1151.0, - "T": 272.0 + "V": 1.0, + "T": 269.0 }, { - "V": 1153.0, - "T": 276.0 + "V": 1.0, + "T": 274.0 }, { - "V": 1150.0, - "T": 280.0 + "V": 1.0, + "T": 278.0 }, { - "V": 1151.0, + "V": 1.0, "T": 284.0 }, { - "V": 1145.0, - "T": 288.0 - }, - { - "V": 1170.0, - "T": 292.0 + "V": 1.0, + "T": 289.0 }, { - "V": 1155.0, + "V": 1.0, "T": 296.0 }, { - "V": 1132.0, - "T": 300.0 - }, - { - "V": 1139.0, - "T": 304.0 + "V": 1.0, + "T": 302.0 }, { - "V": 1170.0, - "T": 308.0 + "V": 1.0, + "T": 307.0 }, { - "V": 1136.0, + "V": 1.0, "T": 312.0 }, { - "V": 1151.0, - "T": 316.0 - }, - { - "V": 1161.0, - "T": 320.0 + "V": 1.0, + "T": 317.0 }, { - "V": 1145.0, - "T": 324.0 + "V": 1.0, + "T": 321.0 }, { - "V": 1156.0, - "T": 328.0 + "V": 1.0, + "T": 326.0 }, { - "V": 1135.0, - "T": 332.0 + "V": 1.0, + "T": 331.0 }, { - "V": 1155.0, + "V": 1.0, "T": 336.0 }, { - "V": 1157.0, + "V": 1.0, "T": 340.0 }, { - "V": 1146.0, - "T": 344.0 - }, - { - "V": 1145.0, - "T": 348.0 + "V": 1.0, + "T": 345.0 }, { - "V": 1170.0, - "T": 352.0 + "V": 1.0, + "T": 350.0 }, { - "V": 1155.0, - "T": 356.0 + "V": 1.0, + "T": 355.0 }, { - "V": 1145.0, - "T": 360.0 + "V": 1.0, + "T": 359.0 }, { - "V": 1153.0, + "V": 1.0, "T": 364.0 }, { - "V": 1157.0, - "T": 368.0 - }, - { - "V": 1155.0, - "T": 372.0 + "V": 1.0, + "T": 369.0 }, { - "V": 1149.0, - "T": 376.0 + "V": 1.0, + "T": 374.0 }, { - "V": 1158.0, + "V": 1.0, "T": 380.0 }, { - "V": 1136.0, - "T": 384.0 - }, - { - "V": 1141.0, - "T": 388.0 + "V": 1.0, + "T": 386.0 }, { - "V": 1122.0, - "T": 392.0 + "V": 1.0, + "T": 391.0 }, { - "V": 1148.0, + "V": 1.0, "T": 396.0 }, { - "V": 1147.0, - "T": 400.0 - }, - { - "V": 1145.0, - "T": 404.0 - }, - { - "V": 1159.0, - "T": 408.0 - }, - { - "V": 1145.0, - "T": 412.0 - }, - { - "V": 1159.0, - "T": 416.0 - }, - { - "V": 1154.0, - "T": 420.0 - }, - { - "V": 1150.0, - "T": 424.0 - }, - { - "V": 1152.0, - "T": 428.0 - }, - { - "V": 1137.0, - "T": 432.0 - }, - { - "V": 1145.0, - "T": 436.0 - }, - { - "V": 1147.0, - "T": 440.0 + "V": 1.0, + "T": 401.0 }, { - "V": 1108.0, - "T": 444.0 + "V": 1.0, + "T": 406.0 }, { - "V": 1147.0, - "T": 448.0 + "V": 1.0, + "T": 413.0 }, { - "V": 1139.0, - "T": 452.0 + "V": 1.0, + "T": 418.0 }, { - "V": 1157.0, - "T": 456.0 + "V": 1.0, + "T": 423.0 }, { - "V": 1160.0, - "T": 460.0 + "V": 1.0, + "T": 432.0 }, { - "V": 1152.0, - "T": 464.0 + "V": 1.0, + "T": 441.0 }, { - "V": 1145.0, - "T": 468.0 + "V": 1.0, + "T": 449.0 }, { - "V": 1161.0, - "T": 472.0 + "V": 1.0, + "T": 457.0 }, { - "V": 1142.0, - "T": 476.0 + "V": 1.0, + "T": 464.0 }, { - "V": 1156.0, - "T": 480.0 + "V": 1.0, + "T": 470.0 }, { - "V": 1148.0, - "T": 484.0 + "V": 1.0, + "T": 474.0 }, { - "V": 1157.0, - "T": 488.0 + "V": 1.0, + "T": 479.0 }, { - "V": 1142.0, - "T": 492.0 + "V": 1.0, + "T": 484.0 }, { - "V": 1145.0, - "T": 496.0 + "V": 1.0, + "T": 491.0 }, { - "V": 1155.0, - "T": 500.0 + "V": 1.0, + "T": 496.0 }, { - "V": 1150.0, - "T": 504.0 + "V": 1.0, + "T": 501.0 }, { - "V": 1171.0, - "T": 508.0 + "V": 1.0, + "T": 505.0 }, { - "V": 1143.0, - "T": 512.0 + "V": 1.0, + "T": 510.0 }, { - "V": 1152.0, - "T": 516.0 + "V": 1.0, + "T": 514.0 }, { - "V": 1159.0, - "T": 520.0 + "V": 1.0, + "T": 519.0 }, { - "V": 1146.0, + "V": 1.0, "T": 524.0 }, { - "V": 1145.0, + "V": 1.0, "T": 528.0 }, { - "V": 1158.0, - "T": 532.0 - }, - { - "V": 1158.0, - "T": 536.0 + "V": 1.0, + "T": 533.0 }, { - "V": 1144.0, - "T": 540.0 + "V": 1.0, + "T": 537.0 }, { - "V": 1152.0, - "T": 544.0 + "V": 1.0, + "T": 542.0 }, { - "V": 1163.0, - "T": 548.0 + "V": 1.0, + "T": 547.0 }, { - "V": 1137.0, - "T": 552.0 + "V": 1.0, + "T": 551.0 }, { - "V": 1145.0, + "V": 1.0, "T": 556.0 }, { - "V": 1156.0, + "V": 1.0, "T": 560.0 }, { - "V": 1140.0, + "V": 1.0, "T": 564.0 }, { - "V": 1156.0, - "T": 568.0 + "V": 1.0, + "T": 569.0 }, { - "V": 1141.0, - "T": 572.0 + "V": 1.0, + "T": 574.0 }, { - "V": 1145.0, - "T": 576.0 + "V": 1.0, + "T": 578.0 }, { - "V": 1147.0, - "T": 580.0 + "V": 1.0, + "T": 582.0 }, { - "V": 1148.0, - "T": 584.0 + "V": 1.0, + "T": 586.0 }, { - "V": 1149.0, - "T": 588.0 + "V": 1.0, + "T": 591.0 }, { - "V": 1168.0, - "T": 592.0 + "V": 1.0, + "T": 595.0 }, { - "V": 1158.0, - "T": 596.0 + "V": 1.0, + "T": 599.0 + }, + { + "V": 1.0, + "T": 604.0 } ], "Gen0PerSec": [ @@ -64291,19 +65549,15 @@ }, { "V": 0.0, - "T": 5.0 - }, - { - "V": 0.0, - "T": 9.0 + "T": 6.0 }, { "V": 0.0, - "T": 13.0 + "T": 11.0 }, { "V": 0.0, - "T": 17.0 + "T": 16.0 }, { "V": 0.0, @@ -64311,19 +65565,15 @@ }, { "V": 0.0, - "T": 25.0 - }, - { - "V": 0.0, - "T": 29.0 + "T": 26.0 }, { "V": 0.0, - "T": 33.0 + "T": 31.0 }, { "V": 0.0, - "T": 37.0 + "T": 36.0 }, { "V": 0.0, @@ -64331,19 +65581,15 @@ }, { "V": 0.0, - "T": 45.0 - }, - { - "V": 0.0, - "T": 49.0 + "T": 46.0 }, { "V": 0.0, - "T": 53.0 + "T": 51.0 }, { "V": 0.0, - "T": 57.0 + "T": 56.0 }, { "V": 0.0, @@ -64351,19 +65597,15 @@ }, { "V": 0.0, - "T": 65.0 - }, - { - "V": 0.0, - "T": 69.0 + "T": 66.0 }, { "V": 0.0, - "T": 73.0 + "T": 71.0 }, { "V": 0.0, - "T": 77.0 + "T": 76.0 }, { "V": 0.0, @@ -64371,19 +65613,15 @@ }, { "V": 0.0, - "T": 85.0 - }, - { - "V": 0.0, - "T": 89.0 + "T": 86.0 }, { "V": 0.0, - "T": 93.0 + "T": 91.0 }, { "V": 0.0, - "T": 97.0 + "T": 96.0 }, { "V": 0.0, @@ -64391,19 +65629,15 @@ }, { "V": 0.0, - "T": 105.0 - }, - { - "V": 0.0, - "T": 109.0 + "T": 106.0 }, { "V": 0.0, - "T": 113.0 + "T": 111.0 }, { "V": 0.0, - "T": 117.0 + "T": 116.0 }, { "V": 0.0, @@ -64411,19 +65645,15 @@ }, { "V": 0.0, - "T": 125.0 - }, - { - "V": 0.0, - "T": 129.0 + "T": 126.0 }, { "V": 0.0, - "T": 133.0 + "T": 131.0 }, { "V": 0.0, - "T": 137.0 + "T": 136.0 }, { "V": 0.0, @@ -64431,19 +65661,15 @@ }, { "V": 0.0, - "T": 145.0 - }, - { - "V": 0.0, - "T": 149.0 + "T": 146.0 }, { "V": 0.0, - "T": 153.0 + "T": 151.0 }, { "V": 0.0, - "T": 157.0 + "T": 156.0 }, { "V": 0.0, @@ -64451,19 +65677,15 @@ }, { "V": 0.0, - "T": 165.0 - }, - { - "V": 0.0, - "T": 169.0 + "T": 166.0 }, { "V": 0.0, - "T": 173.0 + "T": 171.0 }, { "V": 0.0, - "T": 177.0 + "T": 176.0 }, { "V": 0.0, @@ -64471,19 +65693,15 @@ }, { "V": 0.0, - "T": 185.0 - }, - { - "V": 0.0, - "T": 189.0 + "T": 186.0 }, { "V": 0.0, - "T": 193.0 + "T": 191.0 }, { "V": 0.0, - "T": 197.0 + "T": 196.0 }, { "V": 0.0, @@ -64491,19 +65709,15 @@ }, { "V": 0.0, - "T": 205.0 - }, - { - "V": 0.0, - "T": 209.0 + "T": 206.0 }, { "V": 0.0, - "T": 213.0 + "T": 211.0 }, { "V": 0.0, - "T": 217.0 + "T": 216.0 }, { "V": 0.0, @@ -64511,19 +65725,15 @@ }, { "V": 0.0, - "T": 225.0 - }, - { - "V": 0.0, - "T": 229.0 + "T": 226.0 }, { "V": 0.0, - "T": 233.0 + "T": 231.0 }, { "V": 0.0, - "T": 237.0 + "T": 236.0 }, { "V": 0.0, @@ -64531,19 +65741,15 @@ }, { "V": 0.0, - "T": 245.0 - }, - { - "V": 0.0, - "T": 249.0 + "T": 246.0 }, { "V": 0.0, - "T": 253.0 + "T": 251.0 }, { "V": 0.0, - "T": 257.0 + "T": 256.0 }, { "V": 0.0, @@ -64551,19 +65757,15 @@ }, { "V": 0.0, - "T": 265.0 - }, - { - "V": 0.0, - "T": 269.0 + "T": 266.0 }, { "V": 0.0, - "T": 273.0 + "T": 271.0 }, { "V": 0.0, - "T": 277.0 + "T": 276.0 }, { "V": 0.0, @@ -64571,19 +65773,15 @@ }, { "V": 0.0, - "T": 285.0 - }, - { - "V": 0.0, - "T": 289.0 + "T": 286.0 }, { "V": 0.0, - "T": 293.0 + "T": 291.0 }, { "V": 0.0, - "T": 297.0 + "T": 296.0 }, { "V": 0.0, @@ -64591,19 +65789,15 @@ }, { "V": 0.0, - "T": 305.0 - }, - { - "V": 0.0, - "T": 309.0 + "T": 306.0 }, { "V": 0.0, - "T": 313.0 + "T": 311.0 }, { "V": 0.0, - "T": 317.0 + "T": 316.0 }, { "V": 0.0, @@ -64611,19 +65805,15 @@ }, { "V": 0.0, - "T": 325.0 - }, - { - "V": 0.0, - "T": 329.0 + "T": 326.0 }, { "V": 0.0, - "T": 333.0 + "T": 331.0 }, { "V": 0.0, - "T": 337.0 + "T": 336.0 }, { "V": 0.0, @@ -64631,19 +65821,15 @@ }, { "V": 0.0, - "T": 345.0 - }, - { - "V": 0.0, - "T": 349.0 + "T": 346.0 }, { "V": 0.0, - "T": 353.0 + "T": 351.0 }, { "V": 0.0, - "T": 357.0 + "T": 356.0 }, { "V": 0.0, @@ -64651,19 +65837,15 @@ }, { "V": 0.0, - "T": 365.0 - }, - { - "V": 0.0, - "T": 369.0 + "T": 366.0 }, { "V": 0.0, - "T": 373.0 + "T": 371.0 }, { "V": 0.0, - "T": 377.0 + "T": 376.0 }, { "V": 0.0, @@ -64671,19 +65853,15 @@ }, { "V": 0.0, - "T": 385.0 - }, - { - "V": 0.0, - "T": 389.0 + "T": 386.0 }, { "V": 0.0, - "T": 393.0 + "T": 391.0 }, { "V": 0.0, - "T": 397.0 + "T": 396.0 }, { "V": 0.0, @@ -64691,19 +65869,15 @@ }, { "V": 0.0, - "T": 405.0 - }, - { - "V": 0.0, - "T": 409.0 + "T": 406.0 }, { "V": 0.0, - "T": 413.0 + "T": 411.0 }, { "V": 0.0, - "T": 417.0 + "T": 416.0 }, { "V": 0.0, @@ -64711,19 +65885,15 @@ }, { "V": 0.0, - "T": 425.0 - }, - { - "V": 0.0, - "T": 429.0 + "T": 426.0 }, { "V": 0.0, - "T": 433.0 + "T": 431.0 }, { "V": 0.0, - "T": 437.0 + "T": 436.0 }, { "V": 0.0, @@ -64731,19 +65901,15 @@ }, { "V": 0.0, - "T": 445.0 - }, - { - "V": 0.0, - "T": 449.0 + "T": 446.0 }, { "V": 0.0, - "T": 453.0 + "T": 451.0 }, { "V": 0.0, - "T": 457.0 + "T": 456.0 }, { "V": 0.0, @@ -64751,19 +65917,15 @@ }, { "V": 0.0, - "T": 465.0 - }, - { - "V": 0.0, - "T": 469.0 + "T": 466.0 }, { "V": 0.0, - "T": 473.0 + "T": 471.0 }, { "V": 0.0, - "T": 477.0 + "T": 476.0 }, { "V": 0.0, @@ -64771,19 +65933,15 @@ }, { "V": 0.0, - "T": 485.0 - }, - { - "V": 0.0, - "T": 489.0 + "T": 486.0 }, { "V": 0.0, - "T": 493.0 + "T": 491.0 }, { "V": 0.0, - "T": 497.0 + "T": 496.0 }, { "V": 0.0, @@ -64791,19 +65949,15 @@ }, { "V": 0.0, - "T": 505.0 - }, - { - "V": 0.0, - "T": 509.0 + "T": 506.0 }, { "V": 0.0, - "T": 513.0 + "T": 511.0 }, { "V": 0.0, - "T": 517.0 + "T": 516.0 }, { "V": 0.0, @@ -64811,19 +65965,15 @@ }, { "V": 0.0, - "T": 525.0 - }, - { - "V": 0.0, - "T": 529.0 + "T": 526.0 }, { "V": 0.0, - "T": 533.0 + "T": 531.0 }, { "V": 0.0, - "T": 537.0 + "T": 536.0 }, { "V": 0.0, @@ -64831,19 +65981,15 @@ }, { "V": 0.0, - "T": 545.0 - }, - { - "V": 0.0, - "T": 549.0 + "T": 546.0 }, { "V": 0.0, - "T": 553.0 + "T": 551.0 }, { "V": 0.0, - "T": 557.0 + "T": 556.0 }, { "V": 0.0, @@ -64851,19 +65997,15 @@ }, { "V": 0.0, - "T": 565.0 - }, - { - "V": 0.0, - "T": 569.0 + "T": 566.0 }, { "V": 0.0, - "T": 573.0 + "T": 571.0 }, { "V": 0.0, - "T": 577.0 + "T": 576.0 }, { "V": 0.0, @@ -64871,41 +66013,47 @@ }, { "V": 0.0, - "T": 585.0 + "T": 586.0 }, { "V": 0.0, - "T": 589.0 + "T": 591.0 }, { "V": 0.0, - "T": 593.0 + "T": 596.0 }, { "V": 0.0, - "T": 597.0 + "T": 601.0 } ] } }, { - "ScenarioId": "dotllm-serve", - "ScenarioName": "dotLLM: zero-alloc-inference HTTP server (github.com/kkokosa/dotLLM)", + "ScenarioId": "growing-cache", + "ScenarioName": "Console: growing in-memory cache with real request workload (naturally escalating gen2 GCs)", "GcModeId": "zerogc", "GcModeName": "ZeroGC", - "DurationSeconds": 600, + "DurationSeconds": 600.0095562, "Summary": { - "OperationsTotal": 2688.0, - "OpsPerSecondOverall": 4.48, - "TotalAllocatedBytes": 8186773560.0, + "OperationsTotal": 37871, + "OpsPerSecondOverall": 63.11732806364926, + "TotalAllocatedBytes": 9798537392, "Gen0Collections": 0, "Gen1Collections": 0, "Gen2Collections": 0, - "WorkingSetBytes": 770068480.0, - "PeakWorkingSetBytes": 770068480.0, - "HeapSizeBytes": null, - "TotalCommittedBytes": 13220446208.0, - "GcName": "ZeroGC" + "WorkingSetBytes": 8232902656, + "PeakWorkingSetBytes": 8232902656, + "HeapSizeBytes": 9798668408, + "TotalCommittedBytes": 9798668408, + "GcName": "ZeroGC.dll", + "FinalCacheEntryCount": 30840149, + "ObservedGen2Events": 0, + "ObservedGen2PauseAvgMs": 0, + "ObservedGen2PauseMaxMs": 0, + "ObservedGen2PauseMinMs": 0, + "ObservedGen2PauseSamplesMs": null }, "PauseTimePctStats": { "Avg": 0.0, @@ -64914,7 +66062,7 @@ "P99": 0.0, "Max": 0.0, "Min": 0.0, - "Count": 604 + "Count": 596 }, "PauseTimeMsStats": { "Avg": 0.0, @@ -64923,100 +66071,116 @@ "P99": 0.0, "Max": 0.0, "Min": 0.0, - "Count": 604 + "Count": 596 }, "WorkingSetStats": { - "Avg": 591793586.9884298, - "P50": 583380992.0, - "P90": 733085696.0, - "P99": 768954368.0, - "Max": 770068480.0, - "Min": 427159552.0, - "Count": 605 + "Avg": 3963313496.763819, + "P50": 4155899904.0, + "P90": 6777135104.0, + "P99": 8175767552.0, + "Max": 8230592512.0, + "Min": 102879232.0, + "Count": 597 }, "AllocRateMBStats": { - "Avg": 12.92635046093669, + "Avg": 14.605056122645436, "P50": 0.0, "P90": 64.0, - "P99": 128.0, - "Max": 128.0, + "P99": 64.0, + "Max": 1601.9541702270508, "Min": 0.0, - "Count": 604 + "Count": 596 }, "OpsPerSecStats": { - "Avg": 4.579216354344123, - "P50": 5.0, - "P90": 7.0, - "P99": 8.0, - "Max": 9.0, - "Min": 1.0, - "Count": 587 + "Avg": 63.117252931323286, + "P50": 63.0, + "P90": 64.0, + "P99": 64.0, + "Max": 66.0, + "Min": 49.0, + "Count": 597 }, "TimeSeries": { "PauseTimePct": [ { "V": 0.0, - "T": 1.0 + "T": 1.0 + }, + { + "V": 0.0, + "T": 5.0 + }, + { + "V": 0.0, + "T": 9.0 + }, + { + "V": 0.0, + "T": 13.0 + }, + { + "V": 0.0, + "T": 17.0 }, { "V": 0.0, - "T": 6.0 + "T": 21.0 }, { "V": 0.0, - "T": 11.0 + "T": 25.0 }, { "V": 0.0, - "T": 16.0 + "T": 29.0 }, { "V": 0.0, - "T": 21.0 + "T": 33.0 }, { "V": 0.0, - "T": 26.0 + "T": 37.0 }, { "V": 0.0, - "T": 31.0 + "T": 41.0 }, { "V": 0.0, - "T": 36.0 + "T": 45.0 }, { "V": 0.0, - "T": 41.0 + "T": 49.0 }, { "V": 0.0, - "T": 46.0 + "T": 53.0 }, { "V": 0.0, - "T": 51.0 + "T": 57.0 }, { "V": 0.0, - "T": 56.0 + "T": 61.0 }, { "V": 0.0, - "T": 61.0 + "T": 65.0 }, { "V": 0.0, - "T": 66.0 + "T": 69.0 }, { "V": 0.0, - "T": 71.0 + "T": 73.0 }, { "V": 0.0, - "T": 76.0 + "T": 77.0 }, { "V": 0.0, @@ -65024,15 +66188,19 @@ }, { "V": 0.0, - "T": 86.0 + "T": 85.0 }, { "V": 0.0, - "T": 91.0 + "T": 89.0 }, { "V": 0.0, - "T": 96.0 + "T": 93.0 + }, + { + "V": 0.0, + "T": 97.0 }, { "V": 0.0, @@ -65040,15 +66208,19 @@ }, { "V": 0.0, - "T": 106.0 + "T": 105.0 }, { "V": 0.0, - "T": 111.0 + "T": 109.0 }, { "V": 0.0, - "T": 116.0 + "T": 113.0 + }, + { + "V": 0.0, + "T": 117.0 }, { "V": 0.0, @@ -65056,15 +66228,19 @@ }, { "V": 0.0, - "T": 126.0 + "T": 125.0 }, { "V": 0.0, - "T": 131.0 + "T": 129.0 }, { "V": 0.0, - "T": 136.0 + "T": 133.0 + }, + { + "V": 0.0, + "T": 137.0 }, { "V": 0.0, @@ -65072,15 +66248,19 @@ }, { "V": 0.0, - "T": 146.0 + "T": 145.0 }, { "V": 0.0, - "T": 151.0 + "T": 149.0 }, { "V": 0.0, - "T": 156.0 + "T": 153.0 + }, + { + "V": 0.0, + "T": 157.0 }, { "V": 0.0, @@ -65088,15 +66268,19 @@ }, { "V": 0.0, - "T": 166.0 + "T": 165.0 }, { "V": 0.0, - "T": 171.0 + "T": 169.0 }, { "V": 0.0, - "T": 176.0 + "T": 173.0 + }, + { + "V": 0.0, + "T": 177.0 }, { "V": 0.0, @@ -65104,15 +66288,19 @@ }, { "V": 0.0, - "T": 186.0 + "T": 185.0 }, { "V": 0.0, - "T": 191.0 + "T": 189.0 }, { "V": 0.0, - "T": 196.0 + "T": 193.0 + }, + { + "V": 0.0, + "T": 197.0 }, { "V": 0.0, @@ -65120,15 +66308,19 @@ }, { "V": 0.0, - "T": 206.0 + "T": 205.0 }, { "V": 0.0, - "T": 211.0 + "T": 209.0 }, { "V": 0.0, - "T": 216.0 + "T": 213.0 + }, + { + "V": 0.0, + "T": 217.0 }, { "V": 0.0, @@ -65136,15 +66328,19 @@ }, { "V": 0.0, - "T": 226.0 + "T": 225.0 }, { "V": 0.0, - "T": 231.0 + "T": 229.0 }, { "V": 0.0, - "T": 236.0 + "T": 233.0 + }, + { + "V": 0.0, + "T": 237.0 }, { "V": 0.0, @@ -65152,15 +66348,19 @@ }, { "V": 0.0, - "T": 246.0 + "T": 245.0 }, { "V": 0.0, - "T": 251.0 + "T": 249.0 }, { "V": 0.0, - "T": 256.0 + "T": 253.0 + }, + { + "V": 0.0, + "T": 257.0 }, { "V": 0.0, @@ -65168,15 +66368,19 @@ }, { "V": 0.0, - "T": 266.0 + "T": 265.0 }, { "V": 0.0, - "T": 271.0 + "T": 269.0 }, { "V": 0.0, - "T": 276.0 + "T": 273.0 + }, + { + "V": 0.0, + "T": 277.0 }, { "V": 0.0, @@ -65184,15 +66388,19 @@ }, { "V": 0.0, - "T": 286.0 + "T": 285.0 }, { "V": 0.0, - "T": 291.0 + "T": 289.0 }, { "V": 0.0, - "T": 296.0 + "T": 293.0 + }, + { + "V": 0.0, + "T": 297.0 }, { "V": 0.0, @@ -65200,15 +66408,19 @@ }, { "V": 0.0, - "T": 306.0 + "T": 305.0 }, { "V": 0.0, - "T": 311.0 + "T": 309.0 }, { "V": 0.0, - "T": 316.0 + "T": 313.0 + }, + { + "V": 0.0, + "T": 317.0 }, { "V": 0.0, @@ -65216,15 +66428,19 @@ }, { "V": 0.0, - "T": 326.0 + "T": 325.0 }, { "V": 0.0, - "T": 331.0 + "T": 329.0 }, { "V": 0.0, - "T": 336.0 + "T": 333.0 + }, + { + "V": 0.0, + "T": 337.0 }, { "V": 0.0, @@ -65232,15 +66448,19 @@ }, { "V": 0.0, - "T": 346.0 + "T": 345.0 }, { "V": 0.0, - "T": 351.0 + "T": 349.0 }, { "V": 0.0, - "T": 356.0 + "T": 353.0 + }, + { + "V": 0.0, + "T": 357.0 }, { "V": 0.0, @@ -65248,15 +66468,19 @@ }, { "V": 0.0, - "T": 366.0 + "T": 365.0 }, { "V": 0.0, - "T": 371.0 + "T": 369.0 }, { "V": 0.0, - "T": 376.0 + "T": 373.0 + }, + { + "V": 0.0, + "T": 377.0 }, { "V": 0.0, @@ -65264,15 +66488,19 @@ }, { "V": 0.0, - "T": 386.0 + "T": 385.0 }, { "V": 0.0, - "T": 391.0 + "T": 389.0 }, { "V": 0.0, - "T": 396.0 + "T": 393.0 + }, + { + "V": 0.0, + "T": 397.0 }, { "V": 0.0, @@ -65280,15 +66508,19 @@ }, { "V": 0.0, - "T": 406.0 + "T": 405.0 }, { "V": 0.0, - "T": 411.0 + "T": 409.0 }, { "V": 0.0, - "T": 416.0 + "T": 413.0 + }, + { + "V": 0.0, + "T": 417.0 }, { "V": 0.0, @@ -65296,15 +66528,19 @@ }, { "V": 0.0, - "T": 426.0 + "T": 425.0 }, { "V": 0.0, - "T": 431.0 + "T": 429.0 }, { "V": 0.0, - "T": 436.0 + "T": 433.0 + }, + { + "V": 0.0, + "T": 437.0 }, { "V": 0.0, @@ -65312,15 +66548,19 @@ }, { "V": 0.0, - "T": 446.0 + "T": 445.0 }, { "V": 0.0, - "T": 451.0 + "T": 449.0 }, { "V": 0.0, - "T": 456.0 + "T": 453.0 + }, + { + "V": 0.0, + "T": 457.0 }, { "V": 0.0, @@ -65328,3166 +66568,3097 @@ }, { "V": 0.0, - "T": 466.0 + "T": 465.0 }, { "V": 0.0, - "T": 471.0 + "T": 469.0 }, { "V": 0.0, - "T": 476.0 + "T": 473.0 }, { "V": 0.0, - "T": 481.0 + "T": 477.0 }, { "V": 0.0, - "T": 486.0 + "T": 481.0 }, { "V": 0.0, - "T": 491.0 + "T": 485.0 }, { "V": 0.0, - "T": 496.0 + "T": 489.0 }, { "V": 0.0, - "T": 501.0 + "T": 493.0 }, { "V": 0.0, - "T": 506.0 + "T": 497.0 }, { "V": 0.0, - "T": 511.0 + "T": 501.0 }, { "V": 0.0, - "T": 516.0 + "T": 505.0 }, { "V": 0.0, - "T": 521.0 + "T": 509.0 }, { "V": 0.0, - "T": 526.0 + "T": 513.0 }, { "V": 0.0, - "T": 531.0 + "T": 517.0 }, { "V": 0.0, - "T": 536.0 + "T": 521.0 }, { "V": 0.0, - "T": 541.0 + "T": 525.0 }, { "V": 0.0, - "T": 546.0 + "T": 529.0 }, { "V": 0.0, - "T": 551.0 + "T": 533.0 }, { "V": 0.0, - "T": 556.0 + "T": 537.0 }, { "V": 0.0, - "T": 561.0 + "T": 541.0 }, { "V": 0.0, - "T": 566.0 + "T": 545.0 }, { "V": 0.0, - "T": 571.0 + "T": 549.0 }, { "V": 0.0, - "T": 576.0 + "T": 553.0 }, { "V": 0.0, - "T": 581.0 + "T": 557.0 }, { "V": 0.0, - "T": 586.0 + "T": 561.0 }, { "V": 0.0, - "T": 591.0 + "T": 565.0 }, { "V": 0.0, - "T": 596.0 + "T": 569.0 }, { "V": 0.0, - "T": 601.0 - } - ], - "PauseTimeMs": [ + "T": 573.0 + }, { "V": 0.0, - "T": 1.0 + "T": 577.0 }, { "V": 0.0, - "T": 6.0 + "T": 581.0 }, { "V": 0.0, - "T": 11.0 + "T": 585.0 }, { "V": 0.0, - "T": 16.0 + "T": 589.0 }, { "V": 0.0, - "T": 21.0 + "T": 593.0 + } + ], + "PauseTimeMs": [ + { + "V": 0.0, + "T": 1.0 }, { "V": 0.0, - "T": 26.0 + "T": 5.0 }, { "V": 0.0, - "T": 31.0 + "T": 9.0 }, { "V": 0.0, - "T": 36.0 + "T": 13.0 }, { "V": 0.0, - "T": 41.0 + "T": 17.0 }, { "V": 0.0, - "T": 46.0 + "T": 21.0 }, { "V": 0.0, - "T": 51.0 + "T": 25.0 }, { "V": 0.0, - "T": 56.0 + "T": 29.0 }, { "V": 0.0, - "T": 61.0 + "T": 33.0 }, { "V": 0.0, - "T": 66.0 + "T": 37.0 }, { "V": 0.0, - "T": 71.0 + "T": 41.0 }, { "V": 0.0, - "T": 76.0 + "T": 45.0 }, { "V": 0.0, - "T": 81.0 + "T": 49.0 }, { "V": 0.0, - "T": 86.0 + "T": 53.0 }, { "V": 0.0, - "T": 91.0 + "T": 57.0 }, { "V": 0.0, - "T": 96.0 + "T": 61.0 }, { "V": 0.0, - "T": 101.0 + "T": 65.0 }, { "V": 0.0, - "T": 106.0 + "T": 69.0 }, { "V": 0.0, - "T": 111.0 + "T": 73.0 }, { "V": 0.0, - "T": 116.0 + "T": 77.0 }, { "V": 0.0, - "T": 121.0 + "T": 81.0 }, { "V": 0.0, - "T": 126.0 + "T": 85.0 }, { "V": 0.0, - "T": 131.0 + "T": 89.0 }, { "V": 0.0, - "T": 136.0 + "T": 93.0 }, { "V": 0.0, - "T": 141.0 + "T": 97.0 }, { "V": 0.0, - "T": 146.0 + "T": 101.0 }, { "V": 0.0, - "T": 151.0 + "T": 105.0 }, { "V": 0.0, - "T": 156.0 + "T": 109.0 }, { "V": 0.0, - "T": 161.0 + "T": 113.0 }, { "V": 0.0, - "T": 166.0 + "T": 117.0 }, { "V": 0.0, - "T": 171.0 + "T": 121.0 }, { "V": 0.0, - "T": 176.0 + "T": 125.0 }, { "V": 0.0, - "T": 181.0 + "T": 129.0 }, { "V": 0.0, - "T": 186.0 + "T": 133.0 }, { "V": 0.0, - "T": 191.0 + "T": 137.0 }, { "V": 0.0, - "T": 196.0 + "T": 141.0 }, { "V": 0.0, - "T": 201.0 + "T": 145.0 }, { "V": 0.0, - "T": 206.0 + "T": 149.0 }, { "V": 0.0, - "T": 211.0 + "T": 153.0 }, { "V": 0.0, - "T": 216.0 + "T": 157.0 }, { "V": 0.0, - "T": 221.0 + "T": 161.0 }, { "V": 0.0, - "T": 226.0 + "T": 165.0 }, { "V": 0.0, - "T": 231.0 + "T": 169.0 }, { "V": 0.0, - "T": 236.0 + "T": 173.0 }, { "V": 0.0, - "T": 241.0 + "T": 177.0 }, { "V": 0.0, - "T": 246.0 + "T": 181.0 }, { "V": 0.0, - "T": 251.0 + "T": 185.0 }, { "V": 0.0, - "T": 256.0 + "T": 189.0 }, { "V": 0.0, - "T": 261.0 + "T": 193.0 }, { "V": 0.0, - "T": 266.0 + "T": 197.0 }, { "V": 0.0, - "T": 271.0 + "T": 201.0 }, { "V": 0.0, - "T": 276.0 + "T": 205.0 }, { "V": 0.0, - "T": 281.0 + "T": 209.0 }, { "V": 0.0, - "T": 286.0 + "T": 213.0 }, { "V": 0.0, - "T": 291.0 + "T": 217.0 }, { "V": 0.0, - "T": 296.0 + "T": 221.0 }, { "V": 0.0, - "T": 301.0 + "T": 225.0 }, { "V": 0.0, - "T": 306.0 + "T": 229.0 }, { "V": 0.0, - "T": 311.0 + "T": 233.0 }, { "V": 0.0, - "T": 316.0 + "T": 237.0 }, { "V": 0.0, - "T": 321.0 + "T": 241.0 }, { "V": 0.0, - "T": 326.0 + "T": 245.0 }, { "V": 0.0, - "T": 331.0 + "T": 249.0 }, { "V": 0.0, - "T": 336.0 + "T": 253.0 }, { "V": 0.0, - "T": 341.0 + "T": 257.0 }, { "V": 0.0, - "T": 346.0 + "T": 261.0 }, { "V": 0.0, - "T": 351.0 + "T": 265.0 }, { "V": 0.0, - "T": 356.0 + "T": 269.0 }, { "V": 0.0, - "T": 361.0 + "T": 273.0 }, { "V": 0.0, - "T": 366.0 + "T": 277.0 }, { "V": 0.0, - "T": 371.0 + "T": 281.0 }, { "V": 0.0, - "T": 376.0 + "T": 285.0 }, { "V": 0.0, - "T": 381.0 + "T": 289.0 }, { "V": 0.0, - "T": 386.0 + "T": 293.0 }, { "V": 0.0, - "T": 391.0 + "T": 297.0 }, { "V": 0.0, - "T": 396.0 + "T": 301.0 }, { "V": 0.0, - "T": 401.0 + "T": 305.0 }, { "V": 0.0, - "T": 406.0 + "T": 309.0 }, { "V": 0.0, - "T": 411.0 + "T": 313.0 }, { "V": 0.0, - "T": 416.0 + "T": 317.0 }, { "V": 0.0, - "T": 421.0 + "T": 321.0 }, { "V": 0.0, - "T": 426.0 + "T": 325.0 }, { "V": 0.0, - "T": 431.0 + "T": 329.0 }, { "V": 0.0, - "T": 436.0 + "T": 333.0 }, { "V": 0.0, - "T": 441.0 + "T": 337.0 }, { "V": 0.0, - "T": 446.0 + "T": 341.0 }, { "V": 0.0, - "T": 451.0 + "T": 345.0 }, { "V": 0.0, - "T": 456.0 + "T": 349.0 }, { "V": 0.0, - "T": 461.0 + "T": 353.0 }, { "V": 0.0, - "T": 466.0 + "T": 357.0 }, { "V": 0.0, - "T": 471.0 + "T": 361.0 }, { "V": 0.0, - "T": 476.0 + "T": 365.0 }, { "V": 0.0, - "T": 481.0 + "T": 369.0 }, { "V": 0.0, - "T": 486.0 + "T": 373.0 }, { "V": 0.0, - "T": 491.0 + "T": 377.0 }, { "V": 0.0, - "T": 496.0 + "T": 381.0 }, { "V": 0.0, - "T": 501.0 + "T": 385.0 }, { "V": 0.0, - "T": 506.0 + "T": 389.0 }, { "V": 0.0, - "T": 511.0 + "T": 393.0 }, { "V": 0.0, - "T": 516.0 + "T": 397.0 }, { "V": 0.0, - "T": 521.0 + "T": 401.0 }, { "V": 0.0, - "T": 526.0 + "T": 405.0 }, { "V": 0.0, - "T": 531.0 + "T": 409.0 }, { "V": 0.0, - "T": 536.0 + "T": 413.0 }, { "V": 0.0, - "T": 541.0 + "T": 417.0 }, { "V": 0.0, - "T": 546.0 + "T": 421.0 }, { "V": 0.0, - "T": 551.0 + "T": 425.0 }, { "V": 0.0, - "T": 556.0 + "T": 429.0 }, { "V": 0.0, - "T": 561.0 + "T": 433.0 }, { "V": 0.0, - "T": 566.0 + "T": 437.0 }, { "V": 0.0, - "T": 571.0 + "T": 441.0 }, { "V": 0.0, - "T": 576.0 + "T": 445.0 }, { "V": 0.0, - "T": 581.0 + "T": 449.0 }, { "V": 0.0, - "T": 586.0 + "T": 453.0 }, { "V": 0.0, - "T": 591.0 + "T": 457.0 }, { "V": 0.0, - "T": 596.0 + "T": 461.0 }, { "V": 0.0, - "T": 601.0 - } - ], - "WorkingSetMB": [ - { - "V": 411.17, - "T": 0.0 + "T": 465.0 }, { - "V": 410.05, - "T": 5.0 + "V": 0.0, + "T": 469.0 }, { - "V": 416.43, - "T": 10.0 + "V": 0.0, + "T": 473.0 }, { - "V": 419.22, - "T": 15.0 + "V": 0.0, + "T": 477.0 }, { - "V": 424.4, - "T": 20.0 + "V": 0.0, + "T": 481.0 }, { - "V": 427.11, - "T": 25.0 + "V": 0.0, + "T": 485.0 }, { - "V": 429.12, - "T": 30.0 + "V": 0.0, + "T": 489.0 }, { - "V": 431.8, - "T": 35.0 + "V": 0.0, + "T": 493.0 }, { - "V": 434.64, - "T": 40.0 + "V": 0.0, + "T": 497.0 }, { - "V": 438.52, - "T": 45.0 + "V": 0.0, + "T": 501.0 }, { - "V": 441.98, - "T": 50.0 + "V": 0.0, + "T": 505.0 }, { - "V": 444.46, - "T": 55.0 + "V": 0.0, + "T": 509.0 }, { - "V": 448.34, - "T": 60.0 + "V": 0.0, + "T": 513.0 }, { - "V": 450.75, - "T": 65.0 + "V": 0.0, + "T": 517.0 }, { - "V": 452.76, - "T": 70.0 + "V": 0.0, + "T": 521.0 }, { - "V": 453.98, - "T": 75.0 + "V": 0.0, + "T": 525.0 }, { - "V": 455.68, - "T": 80.0 + "V": 0.0, + "T": 529.0 }, { - "V": 457.75, - "T": 85.0 + "V": 0.0, + "T": 533.0 }, { - "V": 460.19, - "T": 90.0 + "V": 0.0, + "T": 537.0 }, { - "V": 461.63, - "T": 95.0 + "V": 0.0, + "T": 541.0 }, { - "V": 463.42, - "T": 100.0 + "V": 0.0, + "T": 545.0 }, { - "V": 465.2, - "T": 105.0 + "V": 0.0, + "T": 549.0 }, { - "V": 467.03, - "T": 110.0 + "V": 0.0, + "T": 553.0 }, { - "V": 468.59, - "T": 115.0 + "V": 0.0, + "T": 557.0 }, { - "V": 471.14, - "T": 120.0 + "V": 0.0, + "T": 561.0 }, { - "V": 473.26, - "T": 125.0 + "V": 0.0, + "T": 565.0 }, { - "V": 475.25, - "T": 130.0 + "V": 0.0, + "T": 569.0 }, { - "V": 477.1, - "T": 135.0 + "V": 0.0, + "T": 573.0 }, { - "V": 479.26, - "T": 140.0 + "V": 0.0, + "T": 577.0 }, { - "V": 481.06, - "T": 145.0 + "V": 0.0, + "T": 581.0 }, { - "V": 483.61, - "T": 150.0 + "V": 0.0, + "T": 585.0 }, { - "V": 486.18, - "T": 155.0 + "V": 0.0, + "T": 589.0 }, { - "V": 488.88, - "T": 160.0 - }, + "V": 0.0, + "T": 593.0 + } + ], + "WorkingSetMB": [ { - "V": 490.7, - "T": 165.0 + "V": 98.11, + "T": 0.0 }, { - "V": 491.23, - "T": 170.0 + "V": 151.76, + "T": 4.0 }, { - "V": 491.73, - "T": 175.0 + "V": 194.05, + "T": 8.0 }, { - "V": 492.11, - "T": 180.0 + "V": 257.68, + "T": 12.0 }, { - "V": 493.01, - "T": 185.0 + "V": 299.47, + "T": 16.0 }, { - "V": 493.7, - "T": 190.0 + "V": 341.48, + "T": 20.0 }, { - "V": 494.46, - "T": 195.0 + "V": 383.21, + "T": 24.0 }, { - "V": 497.08, - "T": 200.0 + "V": 425.05, + "T": 28.0 }, { - "V": 500.11, - "T": 205.0 + "V": 511.95, + "T": 32.0 }, { - "V": 503.27, - "T": 210.0 + "V": 553.71, + "T": 36.0 }, { - "V": 506.58, - "T": 215.0 + "V": 595.5, + "T": 40.0 }, { - "V": 509.49, - "T": 220.0 + "V": 637.33, + "T": 44.0 }, { - "V": 512.69, - "T": 225.0 + "V": 679.25, + "T": 48.0 }, { - "V": 516.28, - "T": 230.0 + "V": 721.06, + "T": 52.0 }, { - "V": 519.28, - "T": 235.0 + "V": 762.89, + "T": 56.0 }, { - "V": 522.77, - "T": 240.0 + "V": 804.84, + "T": 60.0 }, { - "V": 525.82, - "T": 245.0 + "V": 939.46, + "T": 64.0 }, { - "V": 528.66, - "T": 250.0 + "V": 981.17, + "T": 68.0 }, { - "V": 532.05, - "T": 255.0 + "V": 1023.02, + "T": 72.0 }, { - "V": 534.57, - "T": 260.0 + "V": 1064.79, + "T": 76.0 }, { - "V": 537.73, - "T": 265.0 + "V": 1106.74, + "T": 80.0 }, { - "V": 540.63, - "T": 270.0 + "V": 1148.42, + "T": 84.0 }, { - "V": 542.11, - "T": 275.0 + "V": 1190.4, + "T": 88.0 }, { - "V": 544.77, - "T": 280.0 + "V": 1232.12, + "T": 92.0 }, { - "V": 546.11, - "T": 285.0 + "V": 1274.1, + "T": 96.0 }, { - "V": 548.45, - "T": 290.0 + "V": 1315.89, + "T": 100.0 }, { - "V": 551.53, - "T": 295.0 + "V": 1357.51, + "T": 104.0 }, { - "V": 554.72, - "T": 300.0 + "V": 1399.46, + "T": 108.0 }, { - "V": 558.14, - "T": 305.0 + "V": 1441.32, + "T": 112.0 }, { - "V": 561.14, - "T": 310.0 + "V": 1483.15, + "T": 116.0 }, { - "V": 564.43, - "T": 315.0 + "V": 1524.95, + "T": 120.0 }, { - "V": 566.45, - "T": 320.0 + "V": 1566.79, + "T": 124.0 }, { - "V": 569.79, - "T": 325.0 + "V": 1608.51, + "T": 128.0 }, { - "V": 572.96, - "T": 330.0 + "V": 1650.43, + "T": 132.0 }, { - "V": 576.07, - "T": 335.0 + "V": 1692.15, + "T": 136.0 }, { - "V": 579.27, - "T": 340.0 + "V": 1926.34, + "T": 140.0 }, { - "V": 582.04, - "T": 345.0 + "V": 1968.23, + "T": 144.0 }, { - "V": 584.43, - "T": 350.0 + "V": 2009.93, + "T": 148.0 }, { - "V": 587.34, - "T": 355.0 + "V": 2051.93, + "T": 152.0 }, { - "V": 590.52, - "T": 360.0 + "V": 2093.78, + "T": 156.0 }, { - "V": 593.27, - "T": 365.0 + "V": 2135.63, + "T": 160.0 }, { - "V": 596.63, - "T": 370.0 + "V": 2177.41, + "T": 164.0 }, { - "V": 599.91, - "T": 375.0 + "V": 2219.2, + "T": 168.0 }, { - "V": 602.39, - "T": 380.0 + "V": 2261.05, + "T": 172.0 }, { - "V": 604.0, - "T": 385.0 + "V": 2302.96, + "T": 176.0 }, { - "V": 607.34, - "T": 390.0 + "V": 2344.56, + "T": 180.0 }, { - "V": 609.27, - "T": 395.0 + "V": 2386.47, + "T": 184.0 }, { - "V": 612.25, - "T": 400.0 + "V": 2428.38, + "T": 188.0 }, { - "V": 615.44, - "T": 405.0 + "V": 2470.16, + "T": 192.0 }, { - "V": 617.52, - "T": 410.0 + "V": 2511.91, + "T": 196.0 }, { - "V": 619.62, - "T": 415.0 + "V": 2553.84, + "T": 200.0 }, { - "V": 623.17, - "T": 420.0 + "V": 2595.57, + "T": 204.0 }, { - "V": 626.25, - "T": 425.0 + "V": 2637.44, + "T": 208.0 }, { - "V": 629.13, - "T": 430.0 + "V": 2679.34, + "T": 212.0 }, { - "V": 632.23, - "T": 435.0 + "V": 2721.06, + "T": 216.0 }, { - "V": 635.2, - "T": 440.0 + "V": 2762.91, + "T": 220.0 }, { - "V": 637.82, - "T": 445.0 + "V": 2804.77, + "T": 224.0 }, { - "V": 640.89, - "T": 450.0 + "V": 2846.61, + "T": 228.0 }, { - "V": 644.13, - "T": 455.0 + "V": 2888.32, + "T": 232.0 }, { - "V": 647.08, - "T": 460.0 + "V": 2930.12, + "T": 236.0 }, { - "V": 650.27, - "T": 465.0 + "V": 2972.04, + "T": 240.0 }, { - "V": 653.44, - "T": 470.0 + "V": 3013.89, + "T": 244.0 }, { - "V": 656.68, - "T": 475.0 + "V": 3055.6, + "T": 248.0 }, { - "V": 660.36, - "T": 480.0 + "V": 3097.64, + "T": 252.0 }, { - "V": 663.73, - "T": 485.0 + "V": 3139.3, + "T": 256.0 }, { - "V": 666.8, - "T": 490.0 + "V": 3181.21, + "T": 260.0 }, { - "V": 670.24, - "T": 495.0 + "V": 3222.93, + "T": 264.0 }, { - "V": 673.39, - "T": 500.0 + "V": 3264.85, + "T": 268.0 }, { - "V": 676.5, - "T": 505.0 + "V": 3306.57, + "T": 272.0 }, { - "V": 679.93, - "T": 510.0 + "V": 3348.5, + "T": 276.0 }, { - "V": 683.14, - "T": 515.0 + "V": 3774.82, + "T": 280.0 }, { - "V": 685.68, - "T": 520.0 + "V": 3816.89, + "T": 284.0 }, { - "V": 688.68, - "T": 525.0 + "V": 3858.6, + "T": 288.0 }, { - "V": 692.0, - "T": 530.0 + "V": 3900.48, + "T": 292.0 }, { - "V": 694.86, - "T": 535.0 + "V": 3942.24, + "T": 296.0 }, { - "V": 698.31, - "T": 540.0 + "V": 3984.3, + "T": 300.0 }, { - "V": 699.79, - "T": 545.0 + "V": 4026.14, + "T": 304.0 }, { - "V": 703.14, - "T": 550.0 + "V": 4067.88, + "T": 308.0 }, { - "V": 706.28, - "T": 555.0 + "V": 4109.83, + "T": 312.0 }, { - "V": 709.65, - "T": 560.0 + "V": 4151.54, + "T": 316.0 }, { - "V": 712.48, - "T": 565.0 + "V": 4193.32, + "T": 320.0 }, { - "V": 715.7, - "T": 570.0 + "V": 4235.21, + "T": 324.0 }, { - "V": 719.13, - "T": 575.0 + "V": 4277.06, + "T": 328.0 }, { - "V": 722.02, - "T": 580.0 + "V": 4319.05, + "T": 332.0 }, { - "V": 725.29, - "T": 585.0 + "V": 4360.73, + "T": 336.0 }, { - "V": 728.47, - "T": 590.0 + "V": 4402.48, + "T": 340.0 }, { - "V": 731.41, - "T": 595.0 + "V": 4444.45, + "T": 344.0 }, { - "V": 734.23, - "T": 600.0 - } - ], - "AllocRateMB": [ + "V": 4486.33, + "T": 348.0 + }, { - "V": 64.0, - "T": 1.0 + "V": 4528.11, + "T": 352.0 }, { - "V": 0.0, - "T": 6.0 + "V": 4570.06, + "T": 356.0 }, { - "V": 64.0, - "T": 11.0 + "V": 4611.77, + "T": 360.0 }, { - "V": 64.0, - "T": 16.0 + "V": 4653.78, + "T": 364.0 }, { - "V": 0.0, - "T": 21.0 + "V": 4695.46, + "T": 368.0 }, { - "V": 0.0, - "T": 26.0 + "V": 4737.44, + "T": 372.0 }, { - "V": 0.0, - "T": 31.0 + "V": 4779.12, + "T": 376.0 }, { - "V": 0.0, - "T": 36.0 + "V": 4821.09, + "T": 380.0 }, { - "V": 0.0, - "T": 41.0 + "V": 4862.91, + "T": 384.0 }, { - "V": 64.0, - "T": 46.0 + "V": 4904.68, + "T": 388.0 }, { - "V": 0.0, - "T": 51.0 + "V": 4946.62, + "T": 392.0 }, { - "V": 64.0, - "T": 56.0 + "V": 4988.34, + "T": 396.0 }, { - "V": 0.0, - "T": 61.0 + "V": 5030.24, + "T": 400.0 }, { - "V": 0.0, - "T": 66.0 + "V": 5071.93, + "T": 404.0 }, { - "V": 0.0, - "T": 71.0 + "V": 5113.78, + "T": 408.0 }, { - "V": 0.0, - "T": 76.0 + "V": 5155.64, + "T": 412.0 }, { - "V": 0.0, - "T": 81.0 + "V": 5197.61, + "T": 416.0 }, { - "V": 0.0, - "T": 86.0 + "V": 5239.29, + "T": 420.0 }, { - "V": 64.0, - "T": 91.0 + "V": 5281.15, + "T": 424.0 }, { - "V": 0.0, - "T": 96.0 + "V": 5323.02, + "T": 428.0 }, { - "V": 0.0, - "T": 101.0 + "V": 5364.7, + "T": 432.0 }, { - "V": 64.0, - "T": 106.0 + "V": 5406.62, + "T": 436.0 }, { - "V": 0.0, - "T": 111.0 + "V": 5448.47, + "T": 440.0 }, { - "V": 128.0, - "T": 116.0 + "V": 5490.27, + "T": 444.0 }, { - "V": 0.0, - "T": 121.0 + "V": 5532.15, + "T": 448.0 }, { - "V": 0.0, - "T": 126.0 + "V": 5573.98, + "T": 452.0 }, { - "V": 0.0, - "T": 131.0 + "V": 5615.8, + "T": 456.0 }, { - "V": 64.0, - "T": 136.0 + "V": 5657.73, + "T": 460.0 }, { - "V": 0.0, - "T": 141.0 + "V": 5699.48, + "T": 464.0 }, { - "V": 0.0, - "T": 146.0 + "V": 5741.46, + "T": 468.0 }, { - "V": 0.0, - "T": 151.0 + "V": 5783.11, + "T": 472.0 }, { - "V": 64.0, - "T": 156.0 + "V": 5825.01, + "T": 476.0 }, { - "V": 0.0, - "T": 161.0 + "V": 5866.83, + "T": 480.0 }, { - "V": 0.0, - "T": 166.0 + "V": 5908.64, + "T": 484.0 }, { - "V": 0.0, - "T": 171.0 + "V": 5950.66, + "T": 488.0 }, { - "V": 0.0, - "T": 176.0 + "V": 5992.38, + "T": 492.0 }, { - "V": 0.0, - "T": 181.0 + "V": 6034.25, + "T": 496.0 }, { - "V": 0.0, - "T": 186.0 + "V": 6075.96, + "T": 500.0 }, { - "V": 0.0, - "T": 191.0 + "V": 6117.91, + "T": 504.0 }, { - "V": 0.0, - "T": 196.0 + "V": 6159.68, + "T": 508.0 }, { - "V": 0.0, - "T": 201.0 + "V": 6201.56, + "T": 512.0 }, { - "V": 0.0, - "T": 206.0 + "V": 6243.34, + "T": 516.0 }, { - "V": 64.0, - "T": 211.0 + "V": 6285.25, + "T": 520.0 }, { - "V": 64.0, - "T": 216.0 + "V": 6327.04, + "T": 524.0 }, { - "V": 64.0, - "T": 221.0 + "V": 6368.81, + "T": 528.0 }, { - "V": 0.0, - "T": 226.0 + "V": 6410.69, + "T": 532.0 }, { - "V": 64.0, - "T": 231.0 + "V": 6452.66, + "T": 536.0 }, { - "V": 0.0, - "T": 236.0 + "V": 6494.41, + "T": 540.0 }, { - "V": 128.0, - "T": 241.0 + "V": 6536.14, + "T": 544.0 }, { - "V": 0.0, - "T": 246.0 + "V": 6578.06, + "T": 548.0 }, { - "V": 0.0, - "T": 251.0 + "V": 6619.91, + "T": 552.0 }, { - "V": 0.0, - "T": 256.0 + "V": 6661.84, + "T": 556.0 }, { - "V": 0.0, - "T": 261.0 + "V": 7472.89, + "T": 560.0 }, { - "V": 0.0, - "T": 266.0 + "V": 7514.62, + "T": 564.0 }, { - "V": 0.0, - "T": 271.0 + "V": 7556.5, + "T": 568.0 }, { - "V": 0.0, - "T": 276.0 + "V": 7598.42, + "T": 572.0 }, { - "V": 0.0, - "T": 281.0 + "V": 7640.21, + "T": 576.0 }, { - "V": 0.0, - "T": 286.0 + "V": 7681.99, + "T": 580.0 }, { - "V": 0.0, - "T": 291.0 + "V": 7723.83, + "T": 584.0 }, { - "V": 0.0, - "T": 296.0 + "V": 7765.57, + "T": 588.0 + }, + { + "V": 7807.54, + "T": 592.0 }, + { + "V": 7849.3, + "T": 596.0 + } + ], + "AllocRateMB": [ { "V": 0.0, - "T": 301.0 + "T": 1.0 }, { "V": 0.0, - "T": 306.0 + "T": 5.0 }, { "V": 0.0, - "T": 311.0 + "T": 9.0 }, { "V": 0.0, - "T": 316.0 + "T": 13.0 }, { - "V": 64.0, - "T": 321.0 + "V": 0.0, + "T": 17.0 }, { "V": 64.0, - "T": 326.0 + "T": 21.0 }, { "V": 0.0, - "T": 331.0 + "T": 25.0 }, { - "V": 64.0, - "T": 336.0 + "V": 143.47, + "T": 29.0 }, { "V": 0.0, - "T": 341.0 + "T": 33.0 }, { "V": 0.0, - "T": 346.0 - }, - { - "V": 64.0, - "T": 351.0 + "T": 37.0 }, { "V": 0.0, - "T": 356.0 + "T": 41.0 }, { "V": 0.0, - "T": 361.0 + "T": 45.0 }, { - "V": 0.0, - "T": 366.0 + "V": 64.0, + "T": 49.0 }, { "V": 0.0, - "T": 371.0 + "T": 53.0 }, { "V": 0.0, - "T": 376.0 + "T": 57.0 }, { "V": 0.0, - "T": 381.0 + "T": 61.0 }, { "V": 0.0, - "T": 386.0 + "T": 65.0 }, { "V": 0.0, - "T": 391.0 + "T": 69.0 }, { "V": 0.0, - "T": 396.0 + "T": 73.0 }, { "V": 0.0, - "T": 401.0 + "T": 77.0 }, { "V": 0.0, - "T": 406.0 + "T": 81.0 }, { "V": 0.0, - "T": 411.0 + "T": 85.0 }, { "V": 64.0, - "T": 416.0 - }, - { - "V": 128.0, - "T": 421.0 + "T": 89.0 }, { "V": 0.0, - "T": 426.0 + "T": 93.0 }, { "V": 0.0, - "T": 431.0 + "T": 97.0 }, { "V": 0.0, - "T": 436.0 + "T": 101.0 }, { "V": 0.0, - "T": 441.0 + "T": 105.0 }, { "V": 0.0, - "T": 446.0 + "T": 109.0 }, { "V": 0.0, - "T": 451.0 + "T": 113.0 }, { "V": 0.0, - "T": 456.0 + "T": 117.0 }, { "V": 0.0, - "T": 461.0 + "T": 121.0 }, { - "V": 0.0, - "T": 466.0 + "V": 64.0, + "T": 125.0 }, { "V": 0.0, - "T": 471.0 + "T": 129.0 }, { "V": 0.0, - "T": 476.0 + "T": 133.0 }, { - "V": 0.0, - "T": 481.0 + "V": 393.56, + "T": 137.0 }, { "V": 0.0, - "T": 486.0 + "T": 141.0 }, { "V": 64.0, - "T": 491.0 + "T": 145.0 }, { "V": 0.0, - "T": 496.0 + "T": 149.0 }, { "V": 0.0, - "T": 501.0 + "T": 153.0 }, { "V": 0.0, - "T": 506.0 + "T": 157.0 }, { - "V": 64.0, - "T": 511.0 + "V": 0.0, + "T": 161.0 }, { "V": 0.0, - "T": 516.0 + "T": 165.0 }, { "V": 0.0, - "T": 521.0 + "T": 169.0 }, { - "V": 0.0, - "T": 526.0 + "V": 64.0, + "T": 173.0 }, { "V": 0.0, - "T": 531.0 + "T": 177.0 }, { - "V": 64.0, - "T": 536.0 + "V": 0.0, + "T": 181.0 }, { "V": 0.0, - "T": 541.0 + "T": 185.0 }, { "V": 0.0, - "T": 546.0 + "T": 189.0 }, { "V": 0.0, - "T": 551.0 + "T": 193.0 }, { "V": 0.0, - "T": 556.0 + "T": 197.0 }, { "V": 64.0, - "T": 561.0 + "T": 201.0 }, { "V": 0.0, - "T": 566.0 + "T": 205.0 }, { "V": 0.0, - "T": 571.0 + "T": 209.0 }, { "V": 0.0, - "T": 576.0 + "T": 213.0 }, { "V": 0.0, - "T": 581.0 + "T": 217.0 }, { "V": 0.0, - "T": 586.0 + "T": 221.0 }, { "V": 0.0, - "T": 591.0 + "T": 225.0 }, { - "V": 0.0, - "T": 596.0 + "V": 64.0, + "T": 229.0 }, { "V": 0.0, - "T": 601.0 - } - ], - "OpsPerSec": [ - { - "V": 1.0, - "T": 1.0 + "T": 233.0 }, { - "V": 5.0, - "T": 5.0 + "V": 0.0, + "T": 237.0 }, { - "V": 6.0, - "T": 9.0 + "V": 0.0, + "T": 241.0 }, { - "V": 5.0, - "T": 13.0 + "V": 0.0, + "T": 245.0 }, { - "V": 2.0, - "T": 17.0 + "V": 0.0, + "T": 249.0 }, { - "V": 6.0, - "T": 21.0 + "V": 0.0, + "T": 253.0 }, { - "V": 5.0, - "T": 25.0 + "V": 0.0, + "T": 257.0 }, { - "V": 3.0, - "T": 29.0 + "V": 0.0, + "T": 261.0 }, { - "V": 5.0, - "T": 33.0 + "V": 64.0, + "T": 265.0 }, { - "V": 2.0, - "T": 37.0 + "V": 0.0, + "T": 269.0 }, { - "V": 8.0, - "T": 41.0 + "V": 0.0, + "T": 273.0 }, { - "V": 9.0, - "T": 45.0 + "V": 832.98, + "T": 277.0 }, { - "V": 5.0, - "T": 49.0 + "V": 0.0, + "T": 281.0 }, { - "V": 6.0, - "T": 53.0 + "V": 0.0, + "T": 285.0 }, { - "V": 7.0, - "T": 57.0 + "V": 0.0, + "T": 289.0 }, { - "V": 3.0, - "T": 61.0 + "V": 0.0, + "T": 293.0 }, { - "V": 1.0, - "T": 65.0 + "V": 0.0, + "T": 297.0 }, { - "V": 7.0, - "T": 69.0 + "V": 0.0, + "T": 301.0 }, { - "V": 1.0, - "T": 73.0 + "V": 64.0, + "T": 305.0 }, { - "V": 5.0, - "T": 78.0 + "V": 0.0, + "T": 309.0 }, { - "V": 4.0, - "T": 82.0 + "V": 0.0, + "T": 313.0 }, { - "V": 3.0, - "T": 86.0 + "V": 0.0, + "T": 317.0 }, { - "V": 2.0, - "T": 90.0 + "V": 0.0, + "T": 321.0 }, { - "V": 1.0, - "T": 94.0 + "V": 0.0, + "T": 325.0 }, { - "V": 4.0, - "T": 99.0 + "V": 0.0, + "T": 329.0 }, { - "V": 1.0, - "T": 103.0 + "V": 64.0, + "T": 333.0 }, { - "V": 5.0, - "T": 107.0 + "V": 0.0, + "T": 337.0 }, { - "V": 5.0, - "T": 111.0 + "V": 0.0, + "T": 341.0 }, { - "V": 2.0, - "T": 115.0 + "V": 0.0, + "T": 345.0 }, { - "V": 2.0, - "T": 119.0 + "V": 64.0, + "T": 349.0 }, { - "V": 2.0, - "T": 123.0 + "V": 0.0, + "T": 353.0 }, { - "V": 3.0, - "T": 127.0 + "V": 0.0, + "T": 357.0 }, { - "V": 2.0, - "T": 131.0 + "V": 64.0, + "T": 361.0 }, { - "V": 3.0, - "T": 135.0 + "V": 0.0, + "T": 365.0 }, { - "V": 3.0, - "T": 139.0 + "V": 0.0, + "T": 369.0 }, { - "V": 4.0, - "T": 143.0 + "V": 0.0, + "T": 373.0 }, { - "V": 5.0, - "T": 147.0 + "V": 0.0, + "T": 377.0 }, { - "V": 4.0, - "T": 151.0 + "V": 0.0, + "T": 381.0 }, { - "V": 2.0, - "T": 155.0 + "V": 0.0, + "T": 385.0 }, { - "V": 5.0, - "T": 159.0 + "V": 0.0, + "T": 389.0 }, { - "V": 4.0, - "T": 163.0 + "V": 0.0, + "T": 393.0 }, { - "V": 1.0, - "T": 169.0 + "V": 64.0, + "T": 397.0 }, { - "V": 1.0, - "T": 176.0 + "V": 0.0, + "T": 401.0 }, { - "V": 1.0, - "T": 182.0 + "V": 0.0, + "T": 405.0 }, { - "V": 1.0, - "T": 187.0 + "V": 0.0, + "T": 409.0 }, { - "V": 1.0, - "T": 193.0 + "V": 0.0, + "T": 413.0 }, { - "V": 5.0, - "T": 198.0 + "V": 0.0, + "T": 417.0 }, { - "V": 5.0, - "T": 202.0 + "V": 0.0, + "T": 421.0 }, { - "V": 5.0, - "T": 206.0 + "V": 64.0, + "T": 425.0 }, { - "V": 5.0, - "T": 210.0 + "V": 0.0, + "T": 429.0 }, { - "V": 4.0, - "T": 214.0 + "V": 0.0, + "T": 433.0 }, { - "V": 5.0, - "T": 218.0 + "V": 0.0, + "T": 437.0 }, { - "V": 6.0, - "T": 222.0 + "V": 0.0, + "T": 441.0 }, { - "V": 7.0, - "T": 226.0 + "V": 0.0, + "T": 445.0 }, { - "V": 4.0, - "T": 230.0 + "V": 0.0, + "T": 449.0 }, { - "V": 5.0, - "T": 234.0 + "V": 64.0, + "T": 453.0 }, { - "V": 4.0, - "T": 238.0 + "V": 0.0, + "T": 457.0 }, { - "V": 6.0, - "T": 242.0 + "V": 0.0, + "T": 461.0 }, { - "V": 5.0, - "T": 246.0 + "V": 0.0, + "T": 465.0 }, { - "V": 5.0, - "T": 250.0 + "V": 0.0, + "T": 469.0 }, { - "V": 4.0, - "T": 254.0 + "V": 0.0, + "T": 473.0 }, { - "V": 3.0, - "T": 258.0 + "V": 0.0, + "T": 477.0 }, { - "V": 5.0, - "T": 262.0 + "V": 64.0, + "T": 481.0 }, { - "V": 5.0, - "T": 266.0 + "V": 0.0, + "T": 485.0 }, { - "V": 3.0, - "T": 270.0 + "V": 0.0, + "T": 489.0 }, { - "V": 2.0, - "T": 274.0 + "V": 0.0, + "T": 493.0 }, { - "V": 3.0, - "T": 278.0 + "V": 0.0, + "T": 497.0 }, { - "V": 1.0, - "T": 282.0 + "V": 0.0, + "T": 501.0 }, { - "V": 1.0, - "T": 286.0 + "V": 0.0, + "T": 505.0 }, { - "V": 4.0, - "T": 290.0 + "V": 0.0, + "T": 509.0 }, { - "V": 3.0, - "T": 294.0 + "V": 0.0, + "T": 513.0 }, { - "V": 4.0, - "T": 298.0 + "V": 64.0, + "T": 517.0 }, { - "V": 6.0, - "T": 302.0 + "V": 0.0, + "T": 521.0 }, { - "V": 5.0, - "T": 306.0 + "V": 0.0, + "T": 525.0 }, { - "V": 5.0, - "T": 310.0 + "V": 0.0, + "T": 529.0 }, { - "V": 4.0, - "T": 314.0 + "V": 0.0, + "T": 533.0 }, { - "V": 3.0, - "T": 318.0 + "V": 0.0, + "T": 537.0 }, { - "V": 5.0, - "T": 322.0 + "V": 0.0, + "T": 541.0 }, { - "V": 5.0, - "T": 326.0 + "V": 64.0, + "T": 545.0 }, { - "V": 5.0, - "T": 330.0 + "V": 0.0, + "T": 549.0 }, { - "V": 5.0, - "T": 334.0 + "V": 0.0, + "T": 553.0 }, { - "V": 3.0, - "T": 338.0 + "V": 1601.95, + "T": 557.0 }, { - "V": 5.0, - "T": 342.0 + "V": 0.0, + "T": 561.0 }, { - "V": 2.0, - "T": 346.0 + "V": 0.0, + "T": 565.0 }, { - "V": 5.0, - "T": 350.0 + "V": 0.0, + "T": 569.0 }, { - "V": 5.0, - "T": 354.0 + "V": 0.0, + "T": 573.0 }, { - "V": 4.0, - "T": 358.0 + "V": 0.0, + "T": 577.0 }, { - "V": 6.0, - "T": 362.0 + "V": 0.0, + "T": 581.0 }, { - "V": 5.0, - "T": 366.0 + "V": 64.0, + "T": 585.0 }, { - "V": 5.0, - "T": 370.0 + "V": 0.0, + "T": 589.0 }, { - "V": 5.0, - "T": 374.0 - }, + "V": 0.0, + "T": 593.0 + } + ], + "OpsPerSec": [ { - "V": 4.0, - "T": 378.0 + "V": 64.0, + "T": 0.0 }, { - "V": 1.0, - "T": 382.0 + "V": 63.0, + "T": 4.0 }, { - "V": 5.0, - "T": 386.0 + "V": 63.0, + "T": 8.0 }, { - "V": 5.0, - "T": 390.0 + "V": 64.0, + "T": 12.0 }, { - "V": 6.0, - "T": 394.0 + "V": 63.0, + "T": 16.0 }, { - "V": 3.0, - "T": 398.0 + "V": 64.0, + "T": 20.0 }, { - "V": 6.0, - "T": 402.0 + "V": 63.0, + "T": 24.0 }, { - "V": 6.0, - "T": 406.0 + "V": 63.0, + "T": 28.0 }, { - "V": 2.0, - "T": 410.0 + "V": 63.0, + "T": 32.0 }, { - "V": 4.0, - "T": 414.0 + "V": 63.0, + "T": 36.0 }, { - "V": 5.0, - "T": 418.0 + "V": 63.0, + "T": 40.0 }, { - "V": 6.0, - "T": 422.0 + "V": 63.0, + "T": 44.0 }, { - "V": 6.0, - "T": 426.0 + "V": 63.0, + "T": 48.0 }, { - "V": 5.0, - "T": 430.0 + "V": 63.0, + "T": 52.0 }, { - "V": 4.0, - "T": 434.0 + "V": 63.0, + "T": 56.0 }, { - "V": 5.0, - "T": 438.0 + "V": 65.0, + "T": 60.0 }, { - "V": 3.0, - "T": 442.0 + "V": 63.0, + "T": 64.0 }, { - "V": 5.0, - "T": 446.0 + "V": 63.0, + "T": 68.0 }, { - "V": 6.0, - "T": 450.0 + "V": 63.0, + "T": 72.0 }, { - "V": 5.0, - "T": 454.0 + "V": 63.0, + "T": 76.0 }, { - "V": 4.0, - "T": 458.0 + "V": 64.0, + "T": 80.0 }, { - "V": 6.0, - "T": 462.0 + "V": 63.0, + "T": 84.0 }, { - "V": 7.0, - "T": 466.0 + "V": 63.0, + "T": 88.0 }, { - "V": 6.0, - "T": 470.0 + "V": 63.0, + "T": 92.0 }, { - "V": 4.0, - "T": 474.0 + "V": 63.0, + "T": 96.0 }, { - "V": 5.0, - "T": 478.0 + "V": 63.0, + "T": 100.0 }, { - "V": 5.0, - "T": 482.0 + "V": 63.0, + "T": 104.0 }, { - "V": 6.0, - "T": 486.0 + "V": 63.0, + "T": 108.0 }, { - "V": 5.0, - "T": 490.0 + "V": 63.0, + "T": 112.0 }, { - "V": 5.0, - "T": 494.0 + "V": 63.0, + "T": 116.0 }, { - "V": 5.0, - "T": 498.0 + "V": 63.0, + "T": 120.0 }, { - "V": 6.0, - "T": 502.0 + "V": 64.0, + "T": 124.0 }, { - "V": 6.0, - "T": 506.0 + "V": 63.0, + "T": 128.0 }, { - "V": 6.0, - "T": 510.0 + "V": 63.0, + "T": 132.0 }, { - "V": 5.0, - "T": 514.0 + "V": 63.0, + "T": 136.0 }, { - "V": 4.0, - "T": 518.0 + "V": 63.0, + "T": 140.0 }, { - "V": 5.0, - "T": 522.0 + "V": 63.0, + "T": 144.0 }, { - "V": 6.0, - "T": 526.0 + "V": 63.0, + "T": 148.0 }, { - "V": 6.0, - "T": 530.0 + "V": 63.0, + "T": 152.0 }, { - "V": 5.0, - "T": 534.0 + "V": 64.0, + "T": 156.0 }, { - "V": 5.0, - "T": 538.0 + "V": 63.0, + "T": 160.0 }, { - "V": 1.0, - "T": 542.0 + "V": 63.0, + "T": 164.0 }, { - "V": 6.0, - "T": 546.0 + "V": 63.0, + "T": 168.0 }, { - "V": 5.0, - "T": 550.0 + "V": 63.0, + "T": 172.0 }, { - "V": 5.0, - "T": 554.0 + "V": 64.0, + "T": 176.0 }, { - "V": 5.0, - "T": 558.0 + "V": 63.0, + "T": 180.0 }, { - "V": 5.0, - "T": 562.0 + "V": 63.0, + "T": 184.0 }, { - "V": 5.0, - "T": 566.0 + "V": 63.0, + "T": 188.0 }, { - "V": 5.0, - "T": 570.0 + "V": 63.0, + "T": 192.0 }, { - "V": 5.0, - "T": 574.0 + "V": 63.0, + "T": 196.0 }, { - "V": 4.0, - "T": 578.0 + "V": 64.0, + "T": 200.0 }, { - "V": 6.0, - "T": 582.0 + "V": 63.0, + "T": 204.0 }, { - "V": 5.0, - "T": 586.0 + "V": 63.0, + "T": 208.0 }, { - "V": 5.0, - "T": 590.0 + "V": 63.0, + "T": 212.0 }, { - "V": 5.0, - "T": 594.0 + "V": 63.0, + "T": 216.0 }, { - "V": 5.0, - "T": 598.0 - } - ], - "Gen0PerSec": [ + "V": 63.0, + "T": 220.0 + }, { - "V": 0.0, - "T": 1.0 + "V": 64.0, + "T": 224.0 }, { - "V": 0.0, - "T": 6.0 + "V": 63.0, + "T": 228.0 }, { - "V": 0.0, - "T": 11.0 + "V": 63.0, + "T": 232.0 }, { - "V": 0.0, - "T": 16.0 + "V": 63.0, + "T": 236.0 }, { - "V": 0.0, - "T": 21.0 + "V": 63.0, + "T": 240.0 }, { - "V": 0.0, - "T": 26.0 + "V": 64.0, + "T": 244.0 }, { - "V": 0.0, - "T": 31.0 + "V": 63.0, + "T": 248.0 }, { - "V": 0.0, - "T": 36.0 + "V": 64.0, + "T": 252.0 }, { - "V": 0.0, - "T": 41.0 + "V": 63.0, + "T": 256.0 }, { - "V": 0.0, - "T": 46.0 + "V": 64.0, + "T": 260.0 }, { - "V": 0.0, - "T": 51.0 + "V": 63.0, + "T": 264.0 }, { - "V": 0.0, - "T": 56.0 + "V": 64.0, + "T": 268.0 }, { - "V": 0.0, - "T": 61.0 + "V": 63.0, + "T": 272.0 }, { - "V": 0.0, - "T": 66.0 + "V": 64.0, + "T": 276.0 }, { - "V": 0.0, - "T": 71.0 + "V": 63.0, + "T": 280.0 }, { - "V": 0.0, - "T": 76.0 + "V": 64.0, + "T": 284.0 }, { - "V": 0.0, - "T": 81.0 + "V": 63.0, + "T": 288.0 }, { - "V": 0.0, - "T": 86.0 + "V": 63.0, + "T": 292.0 }, { - "V": 0.0, - "T": 91.0 + "V": 63.0, + "T": 296.0 }, { - "V": 0.0, - "T": 96.0 + "V": 63.0, + "T": 300.0 }, { - "V": 0.0, - "T": 101.0 + "V": 64.0, + "T": 304.0 }, { - "V": 0.0, - "T": 106.0 + "V": 63.0, + "T": 308.0 }, { - "V": 0.0, - "T": 111.0 + "V": 63.0, + "T": 312.0 }, { - "V": 0.0, - "T": 116.0 + "V": 63.0, + "T": 316.0 }, { - "V": 0.0, - "T": 121.0 + "V": 63.0, + "T": 320.0 }, { - "V": 0.0, - "T": 126.0 + "V": 64.0, + "T": 324.0 }, { - "V": 0.0, - "T": 131.0 + "V": 63.0, + "T": 328.0 }, { - "V": 0.0, - "T": 136.0 + "V": 64.0, + "T": 332.0 }, { - "V": 0.0, - "T": 141.0 + "V": 63.0, + "T": 336.0 }, { - "V": 0.0, - "T": 146.0 + "V": 63.0, + "T": 340.0 }, { - "V": 0.0, - "T": 151.0 + "V": 63.0, + "T": 344.0 }, { - "V": 0.0, - "T": 156.0 + "V": 63.0, + "T": 348.0 }, { - "V": 0.0, - "T": 161.0 + "V": 63.0, + "T": 352.0 }, { - "V": 0.0, - "T": 166.0 + "V": 63.0, + "T": 356.0 }, { - "V": 0.0, - "T": 171.0 + "V": 63.0, + "T": 360.0 }, { - "V": 0.0, - "T": 176.0 + "V": 64.0, + "T": 364.0 }, { - "V": 0.0, - "T": 181.0 + "V": 63.0, + "T": 368.0 }, { - "V": 0.0, - "T": 186.0 + "V": 63.0, + "T": 372.0 }, { - "V": 0.0, - "T": 191.0 + "V": 63.0, + "T": 376.0 }, { - "V": 0.0, - "T": 196.0 + "V": 63.0, + "T": 380.0 }, { - "V": 0.0, - "T": 201.0 + "V": 64.0, + "T": 384.0 }, { - "V": 0.0, - "T": 206.0 + "V": 63.0, + "T": 388.0 }, { - "V": 0.0, - "T": 211.0 + "V": 64.0, + "T": 392.0 }, { - "V": 0.0, - "T": 216.0 + "V": 63.0, + "T": 396.0 }, { - "V": 0.0, - "T": 221.0 + "V": 63.0, + "T": 400.0 }, { - "V": 0.0, - "T": 226.0 + "V": 63.0, + "T": 404.0 }, { - "V": 0.0, - "T": 231.0 + "V": 64.0, + "T": 408.0 }, { - "V": 0.0, - "T": 236.0 + "V": 63.0, + "T": 412.0 }, { - "V": 0.0, - "T": 241.0 + "V": 63.0, + "T": 416.0 }, { - "V": 0.0, - "T": 246.0 + "V": 63.0, + "T": 420.0 }, { - "V": 0.0, - "T": 251.0 + "V": 63.0, + "T": 424.0 }, { - "V": 0.0, - "T": 256.0 + "V": 63.0, + "T": 428.0 }, { - "V": 0.0, - "T": 261.0 + "V": 62.0, + "T": 432.0 }, { - "V": 0.0, - "T": 266.0 + "V": 63.0, + "T": 436.0 }, { - "V": 0.0, - "T": 271.0 + "V": 63.0, + "T": 440.0 }, { - "V": 0.0, - "T": 276.0 + "V": 63.0, + "T": 444.0 }, { - "V": 0.0, - "T": 281.0 + "V": 63.0, + "T": 448.0 }, { - "V": 0.0, - "T": 286.0 + "V": 63.0, + "T": 452.0 }, { - "V": 0.0, - "T": 291.0 + "V": 63.0, + "T": 456.0 }, { - "V": 0.0, - "T": 296.0 + "V": 63.0, + "T": 460.0 }, { - "V": 0.0, - "T": 301.0 + "V": 63.0, + "T": 464.0 }, { - "V": 0.0, - "T": 306.0 + "V": 63.0, + "T": 468.0 }, { - "V": 0.0, - "T": 311.0 + "V": 63.0, + "T": 472.0 }, { - "V": 0.0, - "T": 316.0 + "V": 63.0, + "T": 476.0 }, { - "V": 0.0, - "T": 321.0 + "V": 63.0, + "T": 480.0 }, { - "V": 0.0, - "T": 326.0 + "V": 63.0, + "T": 484.0 }, { - "V": 0.0, - "T": 331.0 + "V": 63.0, + "T": 488.0 }, { - "V": 0.0, - "T": 336.0 + "V": 63.0, + "T": 492.0 }, { - "V": 0.0, - "T": 341.0 + "V": 63.0, + "T": 496.0 }, { - "V": 0.0, - "T": 346.0 + "V": 63.0, + "T": 500.0 }, { - "V": 0.0, - "T": 351.0 + "V": 63.0, + "T": 504.0 }, { - "V": 0.0, - "T": 356.0 + "V": 63.0, + "T": 508.0 }, { - "V": 0.0, - "T": 361.0 + "V": 63.0, + "T": 512.0 }, { - "V": 0.0, - "T": 366.0 + "V": 63.0, + "T": 516.0 }, { - "V": 0.0, - "T": 371.0 + "V": 63.0, + "T": 520.0 }, { - "V": 0.0, - "T": 376.0 + "V": 63.0, + "T": 524.0 }, { - "V": 0.0, - "T": 381.0 + "V": 63.0, + "T": 528.0 }, { - "V": 0.0, - "T": 386.0 + "V": 63.0, + "T": 532.0 }, { - "V": 0.0, - "T": 391.0 + "V": 64.0, + "T": 536.0 }, { - "V": 0.0, - "T": 396.0 + "V": 63.0, + "T": 540.0 }, { - "V": 0.0, - "T": 401.0 + "V": 63.0, + "T": 544.0 }, { - "V": 0.0, - "T": 406.0 + "V": 63.0, + "T": 548.0 }, { - "V": 0.0, - "T": 411.0 + "V": 63.0, + "T": 552.0 }, { - "V": 0.0, - "T": 416.0 + "V": 64.0, + "T": 556.0 }, { - "V": 0.0, - "T": 421.0 + "V": 63.0, + "T": 560.0 }, { - "V": 0.0, - "T": 426.0 + "V": 63.0, + "T": 564.0 }, { - "V": 0.0, - "T": 431.0 + "V": 63.0, + "T": 568.0 }, { - "V": 0.0, - "T": 436.0 + "V": 63.0, + "T": 572.0 }, { - "V": 0.0, - "T": 441.0 + "V": 63.0, + "T": 576.0 }, { - "V": 0.0, - "T": 446.0 + "V": 63.0, + "T": 580.0 }, { - "V": 0.0, - "T": 451.0 + "V": 63.0, + "T": 584.0 }, { - "V": 0.0, - "T": 456.0 + "V": 63.0, + "T": 588.0 }, { - "V": 0.0, - "T": 461.0 + "V": 63.0, + "T": 592.0 }, + { + "V": 63.0, + "T": 596.0 + } + ], + "Gen0PerSec": [ { "V": 0.0, - "T": 466.0 + "T": 1.0 }, { "V": 0.0, - "T": 471.0 + "T": 5.0 }, { "V": 0.0, - "T": 476.0 + "T": 9.0 }, { "V": 0.0, - "T": 481.0 + "T": 13.0 }, { "V": 0.0, - "T": 486.0 + "T": 17.0 }, { "V": 0.0, - "T": 491.0 + "T": 21.0 }, { "V": 0.0, - "T": 496.0 + "T": 25.0 }, { "V": 0.0, - "T": 501.0 + "T": 29.0 }, { "V": 0.0, - "T": 506.0 + "T": 33.0 }, { "V": 0.0, - "T": 511.0 + "T": 37.0 }, { "V": 0.0, - "T": 516.0 + "T": 41.0 }, { "V": 0.0, - "T": 521.0 + "T": 45.0 }, { "V": 0.0, - "T": 526.0 + "T": 49.0 }, { "V": 0.0, - "T": 531.0 + "T": 53.0 }, { "V": 0.0, - "T": 536.0 + "T": 57.0 }, { "V": 0.0, - "T": 541.0 + "T": 61.0 }, { "V": 0.0, - "T": 546.0 + "T": 65.0 }, { "V": 0.0, - "T": 551.0 + "T": 69.0 }, { "V": 0.0, - "T": 556.0 + "T": 73.0 }, { "V": 0.0, - "T": 561.0 + "T": 77.0 }, { "V": 0.0, - "T": 566.0 + "T": 81.0 }, { "V": 0.0, - "T": 571.0 + "T": 85.0 }, { "V": 0.0, - "T": 576.0 + "T": 89.0 }, { "V": 0.0, - "T": 581.0 + "T": 93.0 }, { "V": 0.0, - "T": 586.0 + "T": 97.0 }, { "V": 0.0, - "T": 591.0 + "T": 101.0 }, { "V": 0.0, - "T": 596.0 + "T": 105.0 }, { "V": 0.0, - "T": 601.0 - } - ] - } - }, - { - "ScenarioId": "dotllm-serve-1_5b", - "ScenarioName": "dotLLM: 1.5B model (~1GB, Q4_K_M), few-hundred-token context, zero-alloc-inference HTTP server", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 600, - "Summary": { - "OperationsTotal": 120.0, - "OpsPerSecondOverall": 0.2, - "TotalAllocatedBytes": 1542862072.0, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 2616016896.0, - "PeakWorkingSetBytes": 2616016896.0, - "HeapSizeBytes": null, - "TotalCommittedBytes": 6845104128.0, - "GcName": "ZeroGC" - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 604 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 604 - }, - "WorkingSetStats": { - "Avg": 2577211452.9322314, - "P50": 2578763776.0, - "P90": 2607702016.0, - "P99": 2615332864.0, - "Max": 2616016896.0, - "Min": 2532360192.0, - "Count": 605 - }, - "AllocRateMBStats": { - "Avg": 2.436072734807501, - "P50": 0.0, - "P90": 0.0, - "P99": 64.0, - "Max": 64.0, - "Min": 0.0, - "Count": 604 - }, - "OpsPerSecStats": { - "Avg": 1.0, - "P50": 1.0, - "P90": 1.0, - "P99": 1.0, - "Max": 1.0, - "Min": 1.0, - "Count": 120 - }, - "TimeSeries": { - "PauseTimePct": [ + "T": 109.0 + }, { "V": 0.0, - "T": 1.0 + "T": 113.0 }, { "V": 0.0, - "T": 6.0 + "T": 117.0 }, { "V": 0.0, - "T": 11.0 + "T": 121.0 }, { "V": 0.0, - "T": 16.0 + "T": 125.0 }, { "V": 0.0, - "T": 21.0 + "T": 129.0 }, { "V": 0.0, - "T": 26.0 + "T": 133.0 }, { "V": 0.0, - "T": 31.0 + "T": 137.0 }, { "V": 0.0, - "T": 36.0 + "T": 141.0 }, { "V": 0.0, - "T": 41.0 + "T": 145.0 }, { "V": 0.0, - "T": 46.0 + "T": 149.0 }, { "V": 0.0, - "T": 51.0 + "T": 153.0 }, { "V": 0.0, - "T": 56.0 + "T": 157.0 }, { "V": 0.0, - "T": 61.0 + "T": 161.0 }, { "V": 0.0, - "T": 66.0 + "T": 165.0 }, { "V": 0.0, - "T": 71.0 + "T": 169.0 }, { "V": 0.0, - "T": 76.0 + "T": 173.0 }, { "V": 0.0, - "T": 81.0 + "T": 177.0 }, { "V": 0.0, - "T": 86.0 + "T": 181.0 }, { "V": 0.0, - "T": 91.0 + "T": 185.0 }, { "V": 0.0, - "T": 96.0 + "T": 189.0 }, { "V": 0.0, - "T": 101.0 + "T": 193.0 }, { "V": 0.0, - "T": 106.0 + "T": 197.0 }, { "V": 0.0, - "T": 111.0 + "T": 201.0 }, { "V": 0.0, - "T": 116.0 + "T": 205.0 }, { "V": 0.0, - "T": 121.0 + "T": 209.0 }, { "V": 0.0, - "T": 126.0 + "T": 213.0 }, { "V": 0.0, - "T": 131.0 + "T": 217.0 }, { "V": 0.0, - "T": 136.0 + "T": 221.0 }, { "V": 0.0, - "T": 141.0 + "T": 225.0 }, { "V": 0.0, - "T": 146.0 + "T": 229.0 }, { "V": 0.0, - "T": 151.0 + "T": 233.0 }, { "V": 0.0, - "T": 156.0 + "T": 237.0 }, { "V": 0.0, - "T": 161.0 + "T": 241.0 }, { "V": 0.0, - "T": 166.0 + "T": 245.0 }, { "V": 0.0, - "T": 171.0 + "T": 249.0 }, { "V": 0.0, - "T": 176.0 + "T": 253.0 }, { "V": 0.0, - "T": 181.0 + "T": 257.0 }, { "V": 0.0, - "T": 186.0 + "T": 261.0 }, { "V": 0.0, - "T": 191.0 + "T": 265.0 }, { "V": 0.0, - "T": 196.0 + "T": 269.0 }, { "V": 0.0, - "T": 201.0 + "T": 273.0 }, { "V": 0.0, - "T": 206.0 + "T": 277.0 }, { "V": 0.0, - "T": 211.0 + "T": 281.0 }, { "V": 0.0, - "T": 216.0 + "T": 285.0 }, { "V": 0.0, - "T": 221.0 + "T": 289.0 }, { "V": 0.0, - "T": 226.0 + "T": 293.0 }, { "V": 0.0, - "T": 231.0 + "T": 297.0 }, { "V": 0.0, - "T": 236.0 + "T": 301.0 }, { "V": 0.0, - "T": 241.0 + "T": 305.0 }, { "V": 0.0, - "T": 246.0 + "T": 309.0 }, { "V": 0.0, - "T": 251.0 + "T": 313.0 }, { "V": 0.0, - "T": 256.0 + "T": 317.0 }, { "V": 0.0, - "T": 261.0 + "T": 321.0 }, { "V": 0.0, - "T": 266.0 + "T": 325.0 }, { "V": 0.0, - "T": 271.0 + "T": 329.0 }, { "V": 0.0, - "T": 276.0 + "T": 333.0 }, { "V": 0.0, - "T": 281.0 + "T": 337.0 }, { "V": 0.0, - "T": 286.0 + "T": 341.0 }, { "V": 0.0, - "T": 291.0 + "T": 345.0 }, { "V": 0.0, - "T": 296.0 + "T": 349.0 }, { "V": 0.0, - "T": 301.0 + "T": 353.0 }, { "V": 0.0, - "T": 306.0 + "T": 357.0 }, { "V": 0.0, - "T": 311.0 + "T": 361.0 }, { "V": 0.0, - "T": 316.0 + "T": 365.0 }, { "V": 0.0, - "T": 321.0 + "T": 369.0 }, { "V": 0.0, - "T": 326.0 + "T": 373.0 }, { "V": 0.0, - "T": 331.0 + "T": 377.0 }, { "V": 0.0, - "T": 336.0 + "T": 381.0 }, { "V": 0.0, - "T": 341.0 + "T": 385.0 }, { "V": 0.0, - "T": 346.0 + "T": 389.0 }, { "V": 0.0, - "T": 351.0 + "T": 393.0 }, { "V": 0.0, - "T": 356.0 + "T": 397.0 }, { "V": 0.0, - "T": 361.0 + "T": 401.0 }, { "V": 0.0, - "T": 366.0 + "T": 405.0 }, { "V": 0.0, - "T": 371.0 + "T": 409.0 }, { "V": 0.0, - "T": 376.0 + "T": 413.0 }, { "V": 0.0, - "T": 381.0 + "T": 417.0 }, { "V": 0.0, - "T": 386.0 + "T": 421.0 }, { "V": 0.0, - "T": 391.0 + "T": 425.0 }, { "V": 0.0, - "T": 396.0 + "T": 429.0 }, { "V": 0.0, - "T": 401.0 + "T": 433.0 }, { "V": 0.0, - "T": 406.0 + "T": 437.0 }, { "V": 0.0, - "T": 411.0 + "T": 441.0 }, { "V": 0.0, - "T": 416.0 + "T": 445.0 }, { "V": 0.0, - "T": 421.0 + "T": 449.0 }, { "V": 0.0, - "T": 426.0 + "T": 453.0 }, { "V": 0.0, - "T": 431.0 + "T": 457.0 }, { "V": 0.0, - "T": 436.0 + "T": 461.0 }, { "V": 0.0, - "T": 441.0 + "T": 465.0 }, { "V": 0.0, - "T": 446.0 + "T": 469.0 }, { "V": 0.0, - "T": 451.0 + "T": 473.0 }, { "V": 0.0, - "T": 456.0 + "T": 477.0 }, { "V": 0.0, - "T": 461.0 + "T": 481.0 }, { "V": 0.0, - "T": 466.0 + "T": 485.0 }, { "V": 0.0, - "T": 471.0 + "T": 489.0 }, { "V": 0.0, - "T": 476.0 + "T": 493.0 }, { "V": 0.0, - "T": 481.0 + "T": 497.0 }, { "V": 0.0, - "T": 486.0 + "T": 501.0 }, { "V": 0.0, - "T": 491.0 + "T": 505.0 }, { "V": 0.0, - "T": 496.0 + "T": 509.0 }, { "V": 0.0, - "T": 501.0 + "T": 513.0 }, { "V": 0.0, - "T": 506.0 + "T": 517.0 }, { "V": 0.0, - "T": 511.0 + "T": 521.0 }, { "V": 0.0, - "T": 516.0 + "T": 525.0 }, { "V": 0.0, - "T": 521.0 + "T": 529.0 }, { "V": 0.0, - "T": 526.0 + "T": 533.0 }, { "V": 0.0, - "T": 531.0 + "T": 537.0 }, { "V": 0.0, - "T": 536.0 + "T": 541.0 }, { "V": 0.0, - "T": 541.0 + "T": 545.0 }, { "V": 0.0, - "T": 546.0 + "T": 549.0 }, { "V": 0.0, - "T": 551.0 + "T": 553.0 }, { "V": 0.0, - "T": 556.0 + "T": 557.0 }, { "V": 0.0, @@ -68495,38 +69666,106 @@ }, { "V": 0.0, - "T": 566.0 + "T": 565.0 }, { "V": 0.0, - "T": 571.0 + "T": 569.0 }, { "V": 0.0, - "T": 576.0 + "T": 573.0 }, { "V": 0.0, - "T": 581.0 + "T": 577.0 }, { "V": 0.0, - "T": 586.0 + "T": 581.0 }, { "V": 0.0, - "T": 591.0 + "T": 585.0 }, { "V": 0.0, - "T": 596.0 + "T": 589.0 }, { "V": 0.0, - "T": 601.0 + "T": 593.0 } - ], - "PauseTimeMs": [ + ] + } + }, + { + "ScenarioId": "gcperfsim-webserver", + "ScenarioName": "GCPerfSim: web-server request simulation", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 673.7108536, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 11.551553769221561, + "TotalAllocatedBytes": 8160445360.0, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 8434221056.0, + "PeakWorkingSetBytes": 8434221056.0, + "HeapSizeBytes": 9328132096.0, + "TotalCommittedBytes": 9328132096.0, + "GcName": "ZeroGC", + "TagbUsed": 7.6 + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 671 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 671 + }, + "WorkingSetStats": { + "Avg": 4536942104.380953, + "P50": 4532551680.0, + "P90": 7666814976.0, + "P99": 8375521280.0, + "Max": 8434221056.0, + "Min": 620937216.0, + "Count": 672 + }, + "AllocRateMBStats": { + "Avg": 11.159277277802923, + "P50": 0.0, + "P90": 0.0, + "P99": 192.0, + "Max": 256.0, + "Min": 0.0, + "Count": 671 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ { "V": 0.0, "T": 1.0 @@ -69010,1462 +70249,1691 @@ { "V": 0.0, "T": 601.0 + }, + { + "V": 0.0, + "T": 606.0 + }, + { + "V": 0.0, + "T": 611.0 + }, + { + "V": 0.0, + "T": 616.0 + }, + { + "V": 0.0, + "T": 621.0 + }, + { + "V": 0.0, + "T": 626.0 + }, + { + "V": 0.0, + "T": 631.0 + }, + { + "V": 0.0, + "T": 636.0 + }, + { + "V": 0.0, + "T": 641.0 + }, + { + "V": 0.0, + "T": 646.0 + }, + { + "V": 0.0, + "T": 651.0 + }, + { + "V": 0.0, + "T": 656.0 + }, + { + "V": 0.0, + "T": 661.0 + }, + { + "V": 0.0, + "T": 666.0 + }, + { + "V": 0.0, + "T": 671.0 } ], - "WorkingSetMB": [ + "PauseTimeMs": [ { - "V": 2415.05, - "T": 0.0 + "V": 0.0, + "T": 1.0 }, { - "V": 2417.59, - "T": 5.0 + "V": 0.0, + "T": 6.0 }, { - "V": 2418.49, - "T": 10.0 + "V": 0.0, + "T": 11.0 }, { - "V": 2419.35, - "T": 15.0 + "V": 0.0, + "T": 16.0 }, { - "V": 2420.15, - "T": 20.0 + "V": 0.0, + "T": 21.0 }, { - "V": 2421.24, - "T": 25.0 + "V": 0.0, + "T": 26.0 }, { - "V": 2421.85, - "T": 30.0 + "V": 0.0, + "T": 31.0 }, { - "V": 2422.71, - "T": 35.0 + "V": 0.0, + "T": 36.0 }, { - "V": 2423.55, - "T": 40.0 + "V": 0.0, + "T": 41.0 }, { - "V": 2424.23, - "T": 45.0 + "V": 0.0, + "T": 46.0 }, { - "V": 2424.93, - "T": 50.0 + "V": 0.0, + "T": 51.0 }, { - "V": 2425.56, - "T": 55.0 + "V": 0.0, + "T": 56.0 }, { - "V": 2426.37, - "T": 60.0 + "V": 0.0, + "T": 61.0 }, { - "V": 2427.17, - "T": 65.0 + "V": 0.0, + "T": 66.0 }, { - "V": 2427.89, - "T": 70.0 + "V": 0.0, + "T": 71.0 }, { - "V": 2428.63, - "T": 75.0 + "V": 0.0, + "T": 76.0 }, { - "V": 2429.26, - "T": 80.0 + "V": 0.0, + "T": 81.0 }, { - "V": 2429.83, - "T": 85.0 + "V": 0.0, + "T": 86.0 + }, + { + "V": 0.0, + "T": 91.0 + }, + { + "V": 0.0, + "T": 96.0 + }, + { + "V": 0.0, + "T": 101.0 + }, + { + "V": 0.0, + "T": 106.0 + }, + { + "V": 0.0, + "T": 111.0 + }, + { + "V": 0.0, + "T": 116.0 + }, + { + "V": 0.0, + "T": 121.0 + }, + { + "V": 0.0, + "T": 126.0 + }, + { + "V": 0.0, + "T": 131.0 + }, + { + "V": 0.0, + "T": 136.0 + }, + { + "V": 0.0, + "T": 141.0 + }, + { + "V": 0.0, + "T": 146.0 + }, + { + "V": 0.0, + "T": 151.0 + }, + { + "V": 0.0, + "T": 156.0 + }, + { + "V": 0.0, + "T": 161.0 + }, + { + "V": 0.0, + "T": 166.0 + }, + { + "V": 0.0, + "T": 171.0 + }, + { + "V": 0.0, + "T": 176.0 + }, + { + "V": 0.0, + "T": 181.0 + }, + { + "V": 0.0, + "T": 186.0 + }, + { + "V": 0.0, + "T": 191.0 + }, + { + "V": 0.0, + "T": 196.0 + }, + { + "V": 0.0, + "T": 201.0 + }, + { + "V": 0.0, + "T": 206.0 + }, + { + "V": 0.0, + "T": 211.0 + }, + { + "V": 0.0, + "T": 216.0 + }, + { + "V": 0.0, + "T": 221.0 }, { - "V": 2430.41, - "T": 90.0 + "V": 0.0, + "T": 226.0 }, { - "V": 2431.06, - "T": 95.0 + "V": 0.0, + "T": 231.0 }, { - "V": 2431.7, - "T": 100.0 + "V": 0.0, + "T": 236.0 }, { - "V": 2432.29, - "T": 105.0 + "V": 0.0, + "T": 241.0 }, { - "V": 2433.04, - "T": 110.0 + "V": 0.0, + "T": 246.0 }, { - "V": 2433.82, - "T": 115.0 + "V": 0.0, + "T": 251.0 }, { - "V": 2434.16, - "T": 120.0 + "V": 0.0, + "T": 256.0 }, { - "V": 2434.67, - "T": 125.0 + "V": 0.0, + "T": 261.0 }, { - "V": 2435.41, - "T": 130.0 + "V": 0.0, + "T": 266.0 }, { - "V": 2436.0, - "T": 135.0 + "V": 0.0, + "T": 271.0 }, { - "V": 2437.98, - "T": 140.0 + "V": 0.0, + "T": 276.0 }, { - "V": 2438.72, - "T": 145.0 + "V": 0.0, + "T": 281.0 }, { - "V": 2439.33, - "T": 150.0 + "V": 0.0, + "T": 286.0 }, { - "V": 2440.1, - "T": 155.0 + "V": 0.0, + "T": 291.0 }, { - "V": 2440.87, - "T": 160.0 + "V": 0.0, + "T": 296.0 }, { - "V": 2441.61, - "T": 165.0 + "V": 0.0, + "T": 301.0 }, { - "V": 2442.14, - "T": 170.0 + "V": 0.0, + "T": 306.0 }, { - "V": 2442.85, - "T": 175.0 + "V": 0.0, + "T": 311.0 }, { - "V": 2443.39, - "T": 180.0 + "V": 0.0, + "T": 316.0 }, { - "V": 2443.95, - "T": 185.0 + "V": 0.0, + "T": 321.0 }, { - "V": 2444.51, - "T": 190.0 + "V": 0.0, + "T": 326.0 }, { - "V": 2445.37, - "T": 195.0 + "V": 0.0, + "T": 331.0 }, { - "V": 2446.0, - "T": 200.0 + "V": 0.0, + "T": 336.0 }, { - "V": 2446.64, - "T": 205.0 + "V": 0.0, + "T": 341.0 }, { - "V": 2447.2, - "T": 210.0 + "V": 0.0, + "T": 346.0 }, { - "V": 2447.9, - "T": 215.0 + "V": 0.0, + "T": 351.0 }, { - "V": 2448.52, - "T": 220.0 + "V": 0.0, + "T": 356.0 }, { - "V": 2449.11, - "T": 225.0 + "V": 0.0, + "T": 361.0 }, { - "V": 2450.16, - "T": 230.0 + "V": 0.0, + "T": 366.0 }, { - "V": 2450.81, - "T": 235.0 + "V": 0.0, + "T": 371.0 }, { - "V": 2451.62, - "T": 240.0 + "V": 0.0, + "T": 376.0 }, { - "V": 2452.16, - "T": 245.0 + "V": 0.0, + "T": 381.0 }, { - "V": 2452.64, - "T": 250.0 + "V": 0.0, + "T": 386.0 }, { - "V": 2452.94, - "T": 255.0 + "V": 0.0, + "T": 391.0 }, { - "V": 2453.68, - "T": 260.0 + "V": 0.0, + "T": 396.0 }, { - "V": 2454.4, - "T": 265.0 + "V": 0.0, + "T": 401.0 }, { - "V": 2455.12, - "T": 270.0 + "V": 0.0, + "T": 406.0 }, { - "V": 2455.75, - "T": 275.0 + "V": 0.0, + "T": 411.0 }, { - "V": 2456.73, - "T": 280.0 + "V": 0.0, + "T": 416.0 }, { - "V": 2457.43, - "T": 285.0 + "V": 0.0, + "T": 421.0 }, { - "V": 2457.96, - "T": 290.0 + "V": 0.0, + "T": 426.0 }, { - "V": 2458.23, - "T": 295.0 + "V": 0.0, + "T": 431.0 }, { - "V": 2458.86, - "T": 300.0 + "V": 0.0, + "T": 436.0 }, { - "V": 2459.53, - "T": 305.0 + "V": 0.0, + "T": 441.0 }, { - "V": 2460.16, - "T": 310.0 + "V": 0.0, + "T": 446.0 }, { - "V": 2460.75, - "T": 315.0 + "V": 0.0, + "T": 451.0 }, { - "V": 2461.54, - "T": 320.0 + "V": 0.0, + "T": 456.0 }, { - "V": 2462.07, - "T": 325.0 + "V": 0.0, + "T": 461.0 }, { - "V": 2462.66, - "T": 330.0 + "V": 0.0, + "T": 466.0 }, { - "V": 2463.19, - "T": 335.0 + "V": 0.0, + "T": 471.0 }, { - "V": 2464.02, - "T": 340.0 + "V": 0.0, + "T": 476.0 }, { - "V": 2464.66, - "T": 345.0 + "V": 0.0, + "T": 481.0 }, { - "V": 2465.17, - "T": 350.0 + "V": 0.0, + "T": 486.0 }, { - "V": 2465.75, - "T": 355.0 + "V": 0.0, + "T": 491.0 }, { - "V": 2466.32, - "T": 360.0 + "V": 0.0, + "T": 496.0 }, { - "V": 2466.95, - "T": 365.0 + "V": 0.0, + "T": 501.0 }, { - "V": 2467.53, - "T": 370.0 + "V": 0.0, + "T": 506.0 }, { - "V": 2468.08, - "T": 375.0 + "V": 0.0, + "T": 511.0 }, { - "V": 2468.66, - "T": 380.0 + "V": 0.0, + "T": 516.0 }, { - "V": 2469.19, - "T": 385.0 + "V": 0.0, + "T": 521.0 }, { - "V": 2469.85, - "T": 390.0 + "V": 0.0, + "T": 526.0 }, { - "V": 2470.42, - "T": 395.0 + "V": 0.0, + "T": 531.0 }, { - "V": 2471.25, - "T": 400.0 + "V": 0.0, + "T": 536.0 }, { - "V": 2472.0, - "T": 405.0 + "V": 0.0, + "T": 541.0 }, { - "V": 2472.58, - "T": 410.0 + "V": 0.0, + "T": 546.0 }, { - "V": 2473.14, - "T": 415.0 + "V": 0.0, + "T": 551.0 }, { - "V": 2473.71, - "T": 420.0 + "V": 0.0, + "T": 556.0 }, { - "V": 2474.34, - "T": 425.0 + "V": 0.0, + "T": 561.0 }, { - "V": 2474.59, - "T": 430.0 + "V": 0.0, + "T": 566.0 }, { - "V": 2475.07, - "T": 435.0 + "V": 0.0, + "T": 571.0 }, { - "V": 2475.31, - "T": 440.0 + "V": 0.0, + "T": 576.0 }, { - "V": 2475.8, - "T": 445.0 + "V": 0.0, + "T": 581.0 }, { - "V": 2476.27, - "T": 450.0 + "V": 0.0, + "T": 586.0 }, { - "V": 2476.5, - "T": 455.0 + "V": 0.0, + "T": 591.0 }, { - "V": 2476.96, - "T": 460.0 + "V": 0.0, + "T": 596.0 }, { - "V": 2477.45, - "T": 465.0 + "V": 0.0, + "T": 601.0 }, { - "V": 2478.03, - "T": 470.0 + "V": 0.0, + "T": 606.0 }, { - "V": 2478.65, - "T": 475.0 + "V": 0.0, + "T": 611.0 }, { - "V": 2479.36, - "T": 480.0 + "V": 0.0, + "T": 616.0 }, { - "V": 2479.91, - "T": 485.0 + "V": 0.0, + "T": 621.0 }, { - "V": 2480.26, - "T": 490.0 + "V": 0.0, + "T": 626.0 }, { - "V": 2480.9, - "T": 495.0 + "V": 0.0, + "T": 631.0 }, { - "V": 2481.54, - "T": 500.0 + "V": 0.0, + "T": 636.0 }, { - "V": 2482.28, - "T": 505.0 + "V": 0.0, + "T": 641.0 }, { - "V": 2482.85, - "T": 510.0 + "V": 0.0, + "T": 646.0 }, { - "V": 2483.42, - "T": 515.0 + "V": 0.0, + "T": 651.0 }, { - "V": 2483.96, - "T": 520.0 + "V": 0.0, + "T": 656.0 }, { - "V": 2484.6, - "T": 525.0 + "V": 0.0, + "T": 661.0 }, { - "V": 2485.12, - "T": 530.0 + "V": 0.0, + "T": 666.0 }, { - "V": 2485.7, - "T": 535.0 + "V": 0.0, + "T": 671.0 + } + ], + "WorkingSetMB": [ + { + "V": 592.17, + "T": 0.0 }, { - "V": 2486.36, - "T": 540.0 + "V": 650.43, + "T": 5.0 }, { - "V": 2486.96, - "T": 545.0 + "V": 705.64, + "T": 10.0 }, { - "V": 2487.63, - "T": 550.0 + "V": 761.38, + "T": 15.0 }, { - "V": 2488.2, - "T": 555.0 + "V": 817.58, + "T": 20.0 }, { - "V": 2489.18, - "T": 560.0 + "V": 873.09, + "T": 25.0 }, { - "V": 2489.77, - "T": 565.0 + "V": 928.9, + "T": 30.0 }, { - "V": 2490.41, - "T": 570.0 + "V": 985.05, + "T": 35.0 }, { - "V": 2491.05, - "T": 575.0 + "V": 1041.55, + "T": 40.0 }, { - "V": 2491.61, - "T": 580.0 + "V": 1097.6, + "T": 45.0 }, { - "V": 2492.3, - "T": 585.0 + "V": 1152.91, + "T": 50.0 }, { - "V": 2493.12, - "T": 590.0 + "V": 1207.84, + "T": 55.0 }, { - "V": 2493.93, - "T": 595.0 + "V": 1263.15, + "T": 60.0 }, { - "V": 2494.46, - "T": 600.0 - } - ], - "AllocRateMB": [ + "V": 1318.48, + "T": 65.0 + }, { - "V": 0.0, - "T": 1.0 + "V": 1374.91, + "T": 70.0 }, { - "V": 0.0, - "T": 6.0 + "V": 1429.72, + "T": 75.0 }, { - "V": 0.0, - "T": 11.0 + "V": 1485.03, + "T": 80.0 }, { - "V": 0.0, - "T": 16.0 + "V": 1540.89, + "T": 85.0 }, { - "V": 0.0, - "T": 21.0 + "V": 1597.13, + "T": 90.0 }, { - "V": 0.0, - "T": 26.0 + "V": 1652.75, + "T": 95.0 }, { - "V": 0.0, - "T": 31.0 + "V": 1707.75, + "T": 100.0 }, { - "V": 0.0, - "T": 36.0 + "V": 1764.11, + "T": 105.0 }, { - "V": 0.0, - "T": 41.0 + "V": 1819.61, + "T": 110.0 }, { - "V": 0.0, - "T": 46.0 + "V": 1875.35, + "T": 115.0 }, { - "V": 0.0, - "T": 51.0 + "V": 1930.78, + "T": 120.0 }, { - "V": 0.0, - "T": 56.0 + "V": 1987.02, + "T": 125.0 }, { - "V": 0.0, - "T": 61.0 + "V": 2043.51, + "T": 130.0 }, { - "V": 0.0, - "T": 66.0 + "V": 2099.59, + "T": 135.0 }, { - "V": 0.0, - "T": 71.0 + "V": 2155.46, + "T": 140.0 }, { - "V": 0.0, - "T": 76.0 + "V": 2211.39, + "T": 145.0 }, { - "V": 0.0, - "T": 81.0 + "V": 2267.45, + "T": 150.0 }, { - "V": 0.0, - "T": 86.0 + "V": 2323.38, + "T": 155.0 }, { - "V": 0.0, - "T": 91.0 + "V": 2379.0, + "T": 160.0 }, { - "V": 0.0, - "T": 96.0 + "V": 2433.86, + "T": 165.0 }, { - "V": 0.0, - "T": 101.0 + "V": 2488.86, + "T": 170.0 }, { - "V": 0.0, - "T": 106.0 + "V": 2544.07, + "T": 175.0 }, { - "V": 0.0, - "T": 111.0 + "V": 2599.65, + "T": 180.0 }, { - "V": 0.0, - "T": 116.0 + "V": 2655.84, + "T": 185.0 }, { - "V": 0.0, - "T": 121.0 + "V": 2710.64, + "T": 190.0 }, { - "V": 0.0, - "T": 126.0 + "V": 2766.34, + "T": 195.0 }, { - "V": 0.0, - "T": 131.0 + "V": 2821.92, + "T": 200.0 }, { - "V": 0.0, - "T": 136.0 + "V": 2878.43, + "T": 205.0 }, { - "V": 0.0, - "T": 141.0 + "V": 2933.67, + "T": 210.0 }, { - "V": 0.0, - "T": 146.0 + "V": 2988.85, + "T": 215.0 }, { - "V": 0.0, - "T": 151.0 + "V": 3045.41, + "T": 220.0 }, { - "V": 0.0, - "T": 156.0 + "V": 3100.27, + "T": 225.0 }, { - "V": 0.0, - "T": 161.0 + "V": 3156.14, + "T": 230.0 }, { - "V": 0.0, - "T": 166.0 + "V": 3211.82, + "T": 235.0 }, { - "V": 0.0, - "T": 171.0 + "V": 3268.07, + "T": 240.0 }, { - "V": 0.0, - "T": 176.0 + "V": 3324.25, + "T": 245.0 }, { - "V": 0.0, - "T": 181.0 + "V": 3379.77, + "T": 250.0 }, { - "V": 0.0, - "T": 186.0 + "V": 3435.17, + "T": 255.0 }, { - "V": 0.0, - "T": 191.0 + "V": 3490.6, + "T": 260.0 }, { - "V": 0.0, - "T": 196.0 + "V": 3546.75, + "T": 265.0 }, { - "V": 0.0, - "T": 201.0 + "V": 3602.46, + "T": 270.0 }, { - "V": 0.0, - "T": 206.0 + "V": 3657.95, + "T": 275.0 }, { - "V": 0.0, - "T": 211.0 + "V": 3711.98, + "T": 280.0 }, { - "V": 0.0, - "T": 216.0 + "V": 3766.68, + "T": 285.0 }, { - "V": 0.0, - "T": 221.0 + "V": 3821.8, + "T": 290.0 }, { - "V": 0.0, - "T": 226.0 + "V": 3877.48, + "T": 295.0 }, { - "V": 0.0, - "T": 231.0 + "V": 3933.4, + "T": 300.0 }, { - "V": 0.0, - "T": 236.0 + "V": 3988.38, + "T": 305.0 }, { - "V": 64.0, - "T": 241.0 + "V": 4043.82, + "T": 310.0 }, { - "V": 64.0, - "T": 246.0 + "V": 4099.78, + "T": 315.0 }, { - "V": 0.0, - "T": 251.0 + "V": 4155.48, + "T": 320.0 }, { - "V": 0.0, - "T": 256.0 + "V": 4210.28, + "T": 325.0 }, { - "V": 0.0, - "T": 261.0 + "V": 4266.21, + "T": 330.0 }, { - "V": 0.0, - "T": 266.0 + "V": 4322.58, + "T": 335.0 }, { - "V": 0.0, - "T": 271.0 + "V": 4377.45, + "T": 340.0 }, { - "V": 0.0, - "T": 276.0 + "V": 4433.59, + "T": 345.0 }, { - "V": 0.0, - "T": 281.0 + "V": 4489.59, + "T": 350.0 }, { - "V": 0.0, - "T": 286.0 + "V": 4545.67, + "T": 355.0 }, { - "V": 0.0, - "T": 291.0 + "V": 4601.2, + "T": 360.0 }, { - "V": 0.0, - "T": 296.0 + "V": 4656.61, + "T": 365.0 }, { - "V": 0.0, - "T": 301.0 + "V": 4712.59, + "T": 370.0 }, { - "V": 0.0, - "T": 306.0 + "V": 4768.62, + "T": 375.0 }, { - "V": 0.0, - "T": 311.0 + "V": 4824.46, + "T": 380.0 }, { - "V": 0.0, - "T": 316.0 + "V": 4879.82, + "T": 385.0 }, { - "V": 63.88, - "T": 321.0 + "V": 4935.48, + "T": 390.0 }, { - "V": 0.0, - "T": 326.0 + "V": 4990.2, + "T": 395.0 }, { - "V": 0.0, - "T": 331.0 + "V": 5045.19, + "T": 400.0 }, { - "V": 64.0, - "T": 336.0 + "V": 5100.41, + "T": 405.0 }, { - "V": 0.0, - "T": 341.0 + "V": 5156.33, + "T": 410.0 }, { - "V": 0.0, - "T": 346.0 + "V": 5210.53, + "T": 415.0 }, { - "V": 0.0, - "T": 351.0 + "V": 5265.09, + "T": 420.0 }, { - "V": 0.0, - "T": 356.0 + "V": 5319.96, + "T": 425.0 }, { - "V": 0.0, - "T": 361.0 + "V": 5375.27, + "T": 430.0 }, { - "V": 0.0, - "T": 366.0 + "V": 5430.37, + "T": 435.0 }, { - "V": 0.0, - "T": 371.0 + "V": 5484.62, + "T": 440.0 }, { - "V": 0.0, - "T": 376.0 + "V": 5541.24, + "T": 445.0 }, { - "V": 0.0, - "T": 381.0 + "V": 5596.61, + "T": 450.0 }, { - "V": 0.0, - "T": 386.0 + "V": 5651.66, + "T": 455.0 }, { - "V": 63.88, - "T": 391.0 + "V": 5707.84, + "T": 460.0 }, { - "V": 0.0, - "T": 396.0 + "V": 5763.84, + "T": 465.0 }, { - "V": 0.0, - "T": 401.0 + "V": 5820.27, + "T": 470.0 }, { - "V": 0.0, - "T": 406.0 + "V": 5876.26, + "T": 475.0 }, { - "V": 0.0, - "T": 411.0 + "V": 5931.62, + "T": 480.0 }, { - "V": 0.0, - "T": 416.0 + "V": 5988.19, + "T": 485.0 }, { - "V": 0.0, - "T": 421.0 + "V": 6043.93, + "T": 490.0 }, { - "V": 0.0, - "T": 426.0 + "V": 6100.11, + "T": 495.0 }, { - "V": 0.0, - "T": 431.0 + "V": 6155.29, + "T": 500.0 }, { - "V": 64.0, - "T": 436.0 + "V": 6210.47, + "T": 505.0 }, { - "V": 0.0, - "T": 441.0 + "V": 6265.34, + "T": 510.0 }, { - "V": 0.0, - "T": 446.0 + "V": 6320.33, + "T": 515.0 }, { - "V": 0.0, - "T": 451.0 + "V": 6375.88, + "T": 520.0 }, { - "V": 0.0, - "T": 456.0 + "V": 6431.95, + "T": 525.0 }, { - "V": 0.0, - "T": 461.0 + "V": 6486.66, + "T": 530.0 }, { - "V": 0.0, - "T": 466.0 + "V": 6542.11, + "T": 535.0 }, { - "V": 0.0, - "T": 471.0 + "V": 6597.48, + "T": 540.0 }, { - "V": 0.0, - "T": 476.0 + "V": 6653.02, + "T": 545.0 }, { - "V": 0.0, - "T": 481.0 + "V": 6708.53, + "T": 550.0 }, { - "V": 0.0, - "T": 486.0 + "V": 6763.64, + "T": 555.0 }, { - "V": 0.0, - "T": 491.0 + "V": 6820.07, + "T": 560.0 }, { - "V": 0.0, - "T": 496.0 + "V": 6875.32, + "T": 565.0 }, { - "V": 0.0, - "T": 501.0 + "V": 6931.0, + "T": 570.0 }, { - "V": 0.0, - "T": 506.0 + "V": 6987.24, + "T": 575.0 }, { - "V": 0.0, - "T": 511.0 + "V": 7043.48, + "T": 580.0 }, { - "V": 0.0, - "T": 516.0 + "V": 7099.6, + "T": 585.0 }, { - "V": 0.0, - "T": 521.0 + "V": 7155.03, + "T": 590.0 }, { - "V": 0.0, - "T": 526.0 + "V": 7210.58, + "T": 595.0 }, { - "V": 0.0, - "T": 531.0 + "V": 7266.8, + "T": 600.0 }, { - "V": 0.0, - "T": 536.0 + "V": 7322.92, + "T": 605.0 }, { - "V": 0.0, - "T": 541.0 + "V": 7378.66, + "T": 610.0 }, { - "V": 0.0, - "T": 546.0 + "V": 7433.97, + "T": 615.0 }, { - "V": 0.0, - "T": 551.0 + "V": 7488.9, + "T": 620.0 }, { - "V": 0.0, - "T": 556.0 + "V": 7544.14, + "T": 625.0 }, { - "V": 64.0, - "T": 561.0 + "V": 7599.47, + "T": 630.0 }, { - "V": 0.0, - "T": 566.0 + "V": 7655.24, + "T": 635.0 }, { - "V": 0.0, - "T": 571.0 + "V": 7710.52, + "T": 640.0 }, { - "V": 0.0, - "T": 576.0 + "V": 7765.67, + "T": 645.0 }, { - "V": 0.0, - "T": 581.0 + "V": 7820.98, + "T": 650.0 }, { - "V": 0.0, - "T": 586.0 + "V": 7877.0, + "T": 655.0 }, { - "V": 0.0, - "T": 591.0 + "V": 7932.71, + "T": 660.0 }, { - "V": 0.0, - "T": 596.0 + "V": 7987.52, + "T": 665.0 }, { - "V": 0.0, - "T": 601.0 + "V": 8040.27, + "T": 670.0 } ], - "OpsPerSec": [ + "AllocRateMB": [ { - "V": 1.0, - "T": 5.0 + "V": 0.0, + "T": 1.0 }, { - "V": 1.0, - "T": 9.0 + "V": 0.0, + "T": 6.0 }, { - "V": 1.0, - "T": 14.0 + "V": 0.0, + "T": 11.0 }, { - "V": 1.0, - "T": 19.0 + "V": 0.0, + "T": 16.0 }, { - "V": 1.0, - "T": 24.0 + "V": 0.0, + "T": 21.0 }, { - "V": 1.0, - "T": 30.0 + "V": 0.0, + "T": 26.0 }, { - "V": 1.0, - "T": 34.0 + "V": 0.0, + "T": 31.0 }, { - "V": 1.0, - "T": 39.0 + "V": 0.0, + "T": 36.0 }, { - "V": 1.0, - "T": 43.0 + "V": 0.0, + "T": 41.0 }, { - "V": 1.0, - "T": 47.0 + "V": 0.0, + "T": 46.0 }, { - "V": 1.0, - "T": 52.0 + "V": 0.0, + "T": 51.0 }, { - "V": 1.0, - "T": 57.0 + "V": 0.0, + "T": 56.0 }, { - "V": 1.0, + "V": 0.0, "T": 61.0 }, { - "V": 1.0, + "V": 256.0, "T": 66.0 }, { - "V": 1.0, - "T": 72.0 + "V": 0.0, + "T": 71.0 }, { - "V": 1.0, - "T": 77.0 + "V": 0.0, + "T": 76.0 }, { - "V": 1.0, - "T": 83.0 + "V": 0.0, + "T": 81.0 }, { - "V": 1.0, - "T": 88.0 + "V": 0.0, + "T": 86.0 }, { - "V": 1.0, - "T": 94.0 + "V": 0.0, + "T": 91.0 }, { - "V": 1.0, - "T": 99.0 + "V": 0.0, + "T": 96.0 }, { - "V": 1.0, - "T": 104.0 + "V": 0.0, + "T": 101.0 }, { - "V": 1.0, - "T": 109.0 + "V": 0.0, + "T": 106.0 }, { - "V": 1.0, - "T": 115.0 + "V": 0.0, + "T": 111.0 }, { - "V": 1.0, + "V": 0.0, + "T": 116.0 + }, + { + "V": 0.0, "T": 121.0 }, { - "V": 1.0, + "V": 0.0, "T": 126.0 }, { - "V": 1.0, - "T": 132.0 + "V": 0.0, + "T": 131.0 }, { - "V": 1.0, - "T": 137.0 + "V": 0.0, + "T": 136.0 }, { - "V": 1.0, - "T": 143.0 + "V": 0.0, + "T": 141.0 }, { - "V": 1.0, - "T": 148.0 + "V": 0.0, + "T": 146.0 }, { - "V": 1.0, - "T": 154.0 + "V": 0.0, + "T": 151.0 }, { - "V": 1.0, - "T": 159.0 + "V": 0.0, + "T": 156.0 }, { - "V": 1.0, - "T": 163.0 + "V": 0.0, + "T": 161.0 }, { - "V": 1.0, - "T": 168.0 + "V": 0.0, + "T": 166.0 }, { - "V": 1.0, - "T": 172.0 + "V": 0.0, + "T": 171.0 }, { - "V": 1.0, - "T": 177.0 + "V": 0.0, + "T": 176.0 }, { - "V": 1.0, + "V": 192.0, "T": 181.0 }, { - "V": 1.0, + "V": 0.0, "T": 186.0 }, { - "V": 1.0, + "V": 0.0, "T": 191.0 }, { - "V": 1.0, - "T": 195.0 - }, - { - "V": 1.0, - "T": 199.0 + "V": 0.0, + "T": 196.0 }, { - "V": 1.0, - "T": 204.0 + "V": 0.0, + "T": 201.0 }, { - "V": 1.0, - "T": 208.0 + "V": 0.0, + "T": 206.0 }, { - "V": 1.0, - "T": 213.0 + "V": 0.0, + "T": 211.0 }, { - "V": 1.0, - "T": 217.0 + "V": 0.0, + "T": 216.0 }, { - "V": 1.0, + "V": 0.0, "T": 221.0 }, { - "V": 1.0, + "V": 0.0, "T": 226.0 }, { - "V": 1.0, - "T": 230.0 + "V": 0.0, + "T": 231.0 }, { - "V": 1.0, - "T": 235.0 + "V": 0.0, + "T": 236.0 }, { - "V": 1.0, - "T": 239.0 + "V": 0.0, + "T": 241.0 }, { - "V": 1.0, - "T": 244.0 + "V": 0.0, + "T": 246.0 }, { - "V": 1.0, - "T": 249.0 + "V": 64.0, + "T": 251.0 }, { - "V": 1.0, + "V": 0.0, "T": 256.0 }, { - "V": 1.0, - "T": 260.0 + "V": 0.0, + "T": 261.0 }, { - "V": 1.0, - "T": 265.0 + "V": 0.0, + "T": 266.0 }, { - "V": 1.0, - "T": 269.0 + "V": 0.0, + "T": 271.0 }, { - "V": 1.0, - "T": 274.0 + "V": 0.0, + "T": 276.0 }, { - "V": 1.0, - "T": 278.0 + "V": 0.0, + "T": 281.0 }, { - "V": 1.0, - "T": 284.0 + "V": 0.0, + "T": 286.0 }, { - "V": 1.0, - "T": 289.0 + "V": 0.0, + "T": 291.0 }, { - "V": 1.0, + "V": 128.0, "T": 296.0 }, { - "V": 1.0, - "T": 302.0 + "V": 0.0, + "T": 301.0 }, { - "V": 1.0, - "T": 307.0 + "V": 0.0, + "T": 306.0 }, { - "V": 1.0, - "T": 312.0 + "V": 0.0, + "T": 311.0 }, { - "V": 1.0, - "T": 317.0 + "V": 0.0, + "T": 316.0 }, { - "V": 1.0, + "V": 0.0, "T": 321.0 }, { - "V": 1.0, + "V": 0.0, "T": 326.0 }, { - "V": 1.0, + "V": 0.0, "T": 331.0 }, { - "V": 1.0, + "V": 0.0, "T": 336.0 }, { - "V": 1.0, - "T": 340.0 + "V": 0.0, + "T": 341.0 }, { - "V": 1.0, - "T": 345.0 + "V": 0.0, + "T": 346.0 }, { - "V": 1.0, - "T": 350.0 + "V": 0.0, + "T": 351.0 }, { - "V": 1.0, - "T": 355.0 + "V": 0.0, + "T": 356.0 }, { - "V": 1.0, - "T": 359.0 + "V": 0.0, + "T": 361.0 }, { - "V": 1.0, - "T": 364.0 + "V": 192.0, + "T": 366.0 }, { - "V": 1.0, - "T": 369.0 + "V": 0.0, + "T": 371.0 }, { - "V": 1.0, - "T": 374.0 + "V": 0.0, + "T": 376.0 }, { - "V": 1.0, - "T": 380.0 + "V": 0.0, + "T": 381.0 }, { - "V": 1.0, + "V": 0.0, "T": 386.0 }, { - "V": 1.0, + "V": 0.0, "T": 391.0 }, { - "V": 1.0, + "V": 0.0, "T": 396.0 }, { - "V": 1.0, + "V": 0.0, "T": 401.0 }, { - "V": 1.0, + "V": 0.0, "T": 406.0 }, { - "V": 1.0, - "T": 413.0 + "V": 64.0, + "T": 411.0 }, { - "V": 1.0, - "T": 418.0 + "V": 0.0, + "T": 416.0 }, { - "V": 1.0, - "T": 423.0 + "V": 0.0, + "T": 421.0 }, { - "V": 1.0, - "T": 432.0 + "V": 0.0, + "T": 426.0 }, { - "V": 1.0, + "V": 0.0, + "T": 431.0 + }, + { + "V": 64.0, + "T": 436.0 + }, + { + "V": 0.0, "T": 441.0 }, { - "V": 1.0, - "T": 449.0 + "V": 0.0, + "T": 446.0 }, { - "V": 1.0, - "T": 457.0 + "V": 0.0, + "T": 451.0 }, { - "V": 1.0, - "T": 464.0 + "V": 0.0, + "T": 456.0 }, { - "V": 1.0, - "T": 470.0 + "V": 0.0, + "T": 461.0 }, { - "V": 1.0, - "T": 474.0 + "V": 0.0, + "T": 466.0 }, { - "V": 1.0, - "T": 479.0 + "V": 0.0, + "T": 471.0 }, { - "V": 1.0, - "T": 484.0 + "V": 0.0, + "T": 476.0 }, { - "V": 1.0, + "V": 192.0, + "T": 481.0 + }, + { + "V": 0.0, + "T": 486.0 + }, + { + "V": 0.0, "T": 491.0 }, { - "V": 1.0, + "V": 0.0, "T": 496.0 }, { - "V": 1.0, + "V": 0.0, "T": 501.0 }, { - "V": 1.0, - "T": 505.0 - }, - { - "V": 1.0, - "T": 510.0 + "V": 0.0, + "T": 506.0 }, { - "V": 1.0, - "T": 514.0 + "V": 0.0, + "T": 511.0 }, { - "V": 1.0, - "T": 519.0 + "V": 0.0, + "T": 516.0 }, { - "V": 1.0, - "T": 524.0 + "V": 0.0, + "T": 521.0 }, { - "V": 1.0, - "T": 528.0 + "V": 0.0, + "T": 526.0 }, { - "V": 1.0, - "T": 533.0 + "V": 0.0, + "T": 531.0 }, { - "V": 1.0, - "T": 537.0 + "V": 0.0, + "T": 536.0 }, { - "V": 1.0, - "T": 542.0 + "V": 0.0, + "T": 541.0 }, { - "V": 1.0, - "T": 547.0 + "V": 0.0, + "T": 546.0 }, { - "V": 1.0, + "V": 64.0, "T": 551.0 }, { - "V": 1.0, + "V": 0.0, "T": 556.0 }, { - "V": 1.0, - "T": 560.0 - }, - { - "V": 1.0, - "T": 564.0 + "V": 0.0, + "T": 561.0 }, { - "V": 1.0, - "T": 569.0 + "V": 0.0, + "T": 566.0 }, { - "V": 1.0, - "T": 574.0 + "V": 0.0, + "T": 571.0 }, { - "V": 1.0, - "T": 578.0 + "V": 0.0, + "T": 576.0 }, { - "V": 1.0, - "T": 582.0 + "V": 0.0, + "T": 581.0 }, { - "V": 1.0, + "V": 0.0, "T": 586.0 }, { - "V": 1.0, + "V": 0.0, "T": 591.0 }, { - "V": 1.0, - "T": 595.0 + "V": 128.0, + "T": 596.0 }, { - "V": 1.0, - "T": 599.0 + "V": 0.0, + "T": 601.0 }, { - "V": 1.0, - "T": 604.0 + "V": 0.0, + "T": 606.0 + }, + { + "V": 0.0, + "T": 611.0 + }, + { + "V": 0.0, + "T": 616.0 + }, + { + "V": 64.0, + "T": 621.0 + }, + { + "V": 0.0, + "T": 626.0 + }, + { + "V": 0.0, + "T": 631.0 + }, + { + "V": 0.0, + "T": 636.0 + }, + { + "V": 0.0, + "T": 641.0 + }, + { + "V": 0.0, + "T": 646.0 + }, + { + "V": 0.0, + "T": 651.0 + }, + { + "V": 0.0, + "T": 656.0 + }, + { + "V": 0.0, + "T": 661.0 + }, + { + "V": 128.0, + "T": 666.0 + }, + { + "V": 0.0, + "T": 671.0 } ], + "OpsPerSec": null, "Gen0PerSec": [ { "V": 0.0, @@ -70950,34 +72418,85 @@ { "V": 0.0, "T": 601.0 + }, + { + "V": 0.0, + "T": 606.0 + }, + { + "V": 0.0, + "T": 611.0 + }, + { + "V": 0.0, + "T": 616.0 + }, + { + "V": 0.0, + "T": 621.0 + }, + { + "V": 0.0, + "T": 626.0 + }, + { + "V": 0.0, + "T": 631.0 + }, + { + "V": 0.0, + "T": 636.0 + }, + { + "V": 0.0, + "T": 641.0 + }, + { + "V": 0.0, + "T": 646.0 + }, + { + "V": 0.0, + "T": 651.0 + }, + { + "V": 0.0, + "T": 656.0 + }, + { + "V": 0.0, + "T": 661.0 + }, + { + "V": 0.0, + "T": 666.0 + }, + { + "V": 0.0, + "T": 671.0 } ] } }, { - "ScenarioId": "growing-cache", - "ScenarioName": "Console: growing in-memory cache with real request workload (naturally escalating gen2 GCs)", + "ScenarioId": "gcperfsim-cache", + "ScenarioName": "GCPerfSim: cache / large-object-heavy workload", "GcModeId": "zerogc", "GcModeName": "ZeroGC", - "DurationSeconds": 600.0095562, + "DurationSeconds": 601.0550611, "Summary": { - "OperationsTotal": 37871, - "OpsPerSecondOverall": 63.11732806364926, - "TotalAllocatedBytes": 9798537392, + "OperationsTotal": null, + "OpsPerSecondOverall": 9.029460997931066, + "TotalAllocatedBytes": 5690835056.0, "Gen0Collections": 0, "Gen1Collections": 0, "Gen2Collections": 0, - "WorkingSetBytes": 8232902656, - "PeakWorkingSetBytes": 8232902656, - "HeapSizeBytes": 9798668408, - "TotalCommittedBytes": 9798668408, - "GcName": "ZeroGC.dll", - "FinalCacheEntryCount": 30840149, - "ObservedGen2Events": 0, - "ObservedGen2PauseAvgMs": 0, - "ObservedGen2PauseMaxMs": 0, - "ObservedGen2PauseMinMs": 0, - "ObservedGen2PauseSamplesMs": null + "WorkingSetBytes": 5942902784.0, + "PeakWorkingSetBytes": 5942902784.0, + "HeapSizeBytes": 6710886400.0, + "TotalCommittedBytes": 6710886400.0, + "GcName": "ZeroGC", + "TagbUsed": 5.3 }, "PauseTimePctStats": { "Avg": 0.0, @@ -70986,7 +72505,7 @@ "P99": 0.0, "Max": 0.0, "Min": 0.0, - "Count": 596 + "Count": 598 }, "PauseTimeMsStats": { "Avg": 0.0, @@ -70995,34 +72514,34 @@ "P99": 0.0, "Max": 0.0, "Min": 0.0, - "Count": 596 + "Count": 598 }, "WorkingSetStats": { - "Avg": 3963313496.763819, - "P50": 4155899904.0, - "P90": 6777135104.0, - "P99": 8175767552.0, - "Max": 8230592512.0, - "Min": 102879232.0, - "Count": 597 + "Avg": 3175654832.5075126, + "P50": 3175104512.0, + "P90": 5400920064.0, + "P99": 5896589312.0, + "Max": 5942902784.0, + "Min": 397508608.0, + "Count": 599 }, "AllocRateMBStats": { - "Avg": 14.605056122645436, + "Avg": 9.096781025762143, "P50": 0.0, - "P90": 64.0, - "P99": 64.0, - "Max": 1601.9541702270508, + "P90": 0.0, + "P99": 128.0, + "Max": 128.0, "Min": 0.0, - "Count": 596 + "Count": 598 }, "OpsPerSecStats": { - "Avg": 63.117252931323286, - "P50": 63.0, - "P90": 64.0, - "P99": 64.0, - "Max": 66.0, - "Min": 49.0, - "Count": 597 + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 }, "TimeSeries": { "PauseTimePct": [ @@ -71621,6 +73140,10 @@ { "V": 0.0, "T": 593.0 + }, + { + "V": 0.0, + "T": 597.0 } ], "PauseTimeMs": [ @@ -72219,607 +73742,611 @@ { "V": 0.0, "T": 593.0 + }, + { + "V": 0.0, + "T": 597.0 } ], "WorkingSetMB": [ { - "V": 98.11, + "V": 379.09, "T": 0.0 }, { - "V": 151.76, + "V": 417.79, "T": 4.0 }, { - "V": 194.05, + "V": 454.04, "T": 8.0 }, { - "V": 257.68, + "V": 488.73, "T": 12.0 }, { - "V": 299.47, + "V": 524.96, "T": 16.0 }, { - "V": 341.48, + "V": 559.41, "T": 20.0 }, { - "V": 383.21, + "V": 596.55, "T": 24.0 }, { - "V": 425.05, + "V": 631.8, "T": 28.0 }, { - "V": 511.95, + "V": 666.36, "T": 32.0 }, { - "V": 553.71, + "V": 703.05, "T": 36.0 }, { - "V": 595.5, + "V": 738.79, "T": 40.0 }, { - "V": 637.33, + "V": 775.71, "T": 44.0 }, { - "V": 679.25, + "V": 810.18, "T": 48.0 }, { - "V": 721.06, + "V": 844.87, "T": 52.0 }, { - "V": 762.89, + "V": 880.09, "T": 56.0 }, { - "V": 804.84, + "V": 915.25, "T": 60.0 }, { - "V": 939.46, + "V": 950.69, "T": 64.0 }, { - "V": 981.17, + "V": 983.89, "T": 68.0 }, { - "V": 1023.02, + "V": 1019.13, "T": 72.0 }, { - "V": 1064.79, + "V": 1053.83, "T": 76.0 }, { - "V": 1106.74, + "V": 1089.24, "T": 80.0 }, { - "V": 1148.42, + "V": 1125.73, "T": 84.0 }, { - "V": 1190.4, + "V": 1160.73, "T": 88.0 }, { - "V": 1232.12, + "V": 1196.33, "T": 92.0 }, { - "V": 1274.1, + "V": 1234.08, "T": 96.0 }, { - "V": 1315.89, + "V": 1271.93, "T": 100.0 }, { - "V": 1357.51, + "V": 1306.32, "T": 104.0 }, { - "V": 1399.46, + "V": 1340.53, "T": 108.0 }, { - "V": 1441.32, + "V": 1375.85, "T": 112.0 }, { - "V": 1483.15, + "V": 1410.96, "T": 116.0 }, { - "V": 1524.95, + "V": 1445.32, "T": 120.0 }, { - "V": 1566.79, + "V": 1481.48, "T": 124.0 }, { - "V": 1608.51, + "V": 1519.36, "T": 128.0 }, { - "V": 1650.43, + "V": 1554.61, "T": 132.0 }, { - "V": 1692.15, + "V": 1591.14, "T": 136.0 }, { - "V": 1926.34, + "V": 1627.51, "T": 140.0 }, { - "V": 1968.23, + "V": 1663.1, "T": 144.0 }, { - "V": 2009.93, + "V": 1698.33, "T": 148.0 }, { - "V": 2051.93, + "V": 1731.98, "T": 152.0 }, { - "V": 2093.78, + "V": 1766.82, "T": 156.0 }, { - "V": 2135.63, + "V": 1800.1, "T": 160.0 }, { - "V": 2177.41, + "V": 1835.8, "T": 164.0 }, { - "V": 2219.2, + "V": 1869.52, "T": 168.0 }, { - "V": 2261.05, + "V": 1906.46, "T": 172.0 }, { - "V": 2302.96, + "V": 1943.4, "T": 176.0 }, { - "V": 2344.56, + "V": 1979.66, "T": 180.0 }, { - "V": 2386.47, + "V": 2012.87, "T": 184.0 }, { - "V": 2428.38, + "V": 2048.18, "T": 188.0 }, { - "V": 2470.16, + "V": 2083.17, "T": 192.0 }, { - "V": 2511.91, + "V": 2116.55, "T": 196.0 }, { - "V": 2553.84, + "V": 2151.51, "T": 200.0 }, { - "V": 2595.57, + "V": 2186.32, "T": 204.0 }, { - "V": 2637.44, + "V": 2221.7, "T": 208.0 }, { - "V": 2679.34, + "V": 2257.09, "T": 212.0 }, { - "V": 2721.06, + "V": 2292.95, "T": 216.0 }, { - "V": 2762.91, + "V": 2328.61, "T": 220.0 }, { - "V": 2804.77, + "V": 2365.91, "T": 224.0 }, { - "V": 2846.61, + "V": 2404.0, "T": 228.0 }, { - "V": 2888.32, + "V": 2437.26, "T": 232.0 }, { - "V": 2930.12, + "V": 2472.09, "T": 236.0 }, { - "V": 2972.04, + "V": 2507.04, "T": 240.0 }, { - "V": 3013.89, + "V": 2541.02, "T": 244.0 }, { - "V": 3055.6, + "V": 2576.45, "T": 248.0 }, { - "V": 3097.64, + "V": 2612.93, "T": 252.0 }, { - "V": 3139.3, + "V": 2649.84, "T": 256.0 }, { - "V": 3181.21, + "V": 2684.58, "T": 260.0 }, { - "V": 3222.93, + "V": 2722.32, "T": 264.0 }, { - "V": 3264.85, + "V": 2758.56, "T": 268.0 }, { - "V": 3306.57, + "V": 2794.57, "T": 272.0 }, { - "V": 3348.5, + "V": 2829.16, "T": 276.0 }, { - "V": 3774.82, + "V": 2863.96, "T": 280.0 }, { - "V": 3816.89, + "V": 2898.13, "T": 284.0 }, { - "V": 3858.6, + "V": 2931.56, "T": 288.0 }, { - "V": 3900.48, + "V": 2967.04, "T": 292.0 }, { - "V": 3942.24, + "V": 3000.75, "T": 296.0 }, { - "V": 3984.3, + "V": 3038.09, "T": 300.0 }, { - "V": 4026.14, + "V": 3074.77, "T": 304.0 }, { - "V": 4067.88, + "V": 3110.05, "T": 308.0 }, { - "V": 4109.83, + "V": 3144.97, "T": 312.0 }, { - "V": 4151.54, + "V": 3180.32, "T": 316.0 }, { - "V": 4193.32, + "V": 3215.12, "T": 320.0 }, { - "V": 4235.21, + "V": 3248.64, "T": 324.0 }, { - "V": 4277.06, + "V": 3282.86, "T": 328.0 }, { - "V": 4319.05, + "V": 3318.23, "T": 332.0 }, { - "V": 4360.73, + "V": 3352.85, "T": 336.0 }, { - "V": 4402.48, + "V": 3387.96, "T": 340.0 }, { - "V": 4444.45, + "V": 3423.84, "T": 344.0 }, { - "V": 4486.33, + "V": 3459.41, "T": 348.0 }, { - "V": 4528.11, + "V": 3496.94, "T": 352.0 }, { - "V": 4570.06, + "V": 3533.89, "T": 356.0 }, { - "V": 4611.77, + "V": 3569.28, "T": 360.0 }, { - "V": 4653.78, + "V": 3603.96, "T": 364.0 }, { - "V": 4695.46, + "V": 3638.28, "T": 368.0 }, { - "V": 4737.44, + "V": 3673.18, "T": 372.0 }, { - "V": 4779.12, + "V": 3708.54, "T": 376.0 }, { - "V": 4821.09, + "V": 3744.69, "T": 380.0 }, { - "V": 4862.91, + "V": 3780.94, "T": 384.0 }, { - "V": 4904.68, + "V": 3816.56, "T": 388.0 }, { - "V": 4946.62, + "V": 3853.16, "T": 392.0 }, { - "V": 4988.34, + "V": 3889.27, "T": 396.0 }, { - "V": 5030.24, + "V": 3926.43, "T": 400.0 }, { - "V": 5071.93, + "V": 3959.64, "T": 404.0 }, { - "V": 5113.78, + "V": 3995.46, "T": 408.0 }, { - "V": 5155.64, + "V": 4029.49, "T": 412.0 }, { - "V": 5197.61, + "V": 4063.26, "T": 416.0 }, { - "V": 5239.29, + "V": 4097.84, "T": 420.0 }, { - "V": 5281.15, + "V": 4132.52, "T": 424.0 }, { - "V": 5323.02, + "V": 4167.95, "T": 428.0 }, { - "V": 5364.7, + "V": 4206.7, "T": 432.0 }, { - "V": 5406.62, + "V": 4241.11, "T": 436.0 }, { - "V": 5448.47, + "V": 4277.3, "T": 440.0 }, { - "V": 5490.27, + "V": 4312.27, "T": 444.0 }, { - "V": 5532.15, + "V": 4345.88, "T": 448.0 }, { - "V": 5573.98, + "V": 4380.15, "T": 452.0 }, { - "V": 5615.8, + "V": 4415.05, "T": 456.0 }, { - "V": 5657.73, + "V": 4449.6, "T": 460.0 }, { - "V": 5699.48, + "V": 4485.05, "T": 464.0 }, { - "V": 5741.46, + "V": 4518.89, "T": 468.0 }, { - "V": 5783.11, + "V": 4555.53, "T": 472.0 }, { - "V": 5825.01, + "V": 4590.88, "T": 476.0 }, { - "V": 5866.83, + "V": 4627.9, "T": 480.0 }, { - "V": 5908.64, + "V": 4665.12, "T": 484.0 }, { - "V": 5950.66, + "V": 4701.02, "T": 488.0 }, { - "V": 5992.38, + "V": 4735.36, "T": 492.0 }, { - "V": 6034.25, + "V": 4770.11, "T": 496.0 }, { - "V": 6075.96, + "V": 4804.72, "T": 500.0 }, { - "V": 6117.91, + "V": 4840.34, "T": 504.0 }, { - "V": 6159.68, + "V": 4875.07, "T": 508.0 }, { - "V": 6201.56, + "V": 4910.26, "T": 512.0 }, { - "V": 6243.34, + "V": 4947.71, "T": 516.0 }, { - "V": 6285.25, + "V": 4983.44, "T": 520.0 }, { - "V": 6327.04, + "V": 5019.73, "T": 524.0 }, { - "V": 6368.81, + "V": 5055.1, "T": 528.0 }, { - "V": 6410.69, + "V": 5090.11, "T": 532.0 }, { - "V": 6452.66, + "V": 5125.33, "T": 536.0 }, { - "V": 6494.41, + "V": 5159.31, "T": 540.0 }, { - "V": 6536.14, + "V": 5193.23, "T": 544.0 }, { - "V": 6578.06, + "V": 5227.87, "T": 548.0 }, { - "V": 6619.91, + "V": 5262.79, "T": 552.0 }, { - "V": 6661.84, + "V": 5298.12, "T": 556.0 }, { - "V": 7472.89, + "V": 5335.41, "T": 560.0 }, { - "V": 7514.62, + "V": 5370.52, "T": 564.0 }, { - "V": 7556.5, + "V": 5406.79, "T": 568.0 }, { - "V": 7598.42, + "V": 5441.39, "T": 572.0 }, { - "V": 7640.21, + "V": 5475.29, "T": 576.0 }, { - "V": 7681.99, + "V": 5509.86, "T": 580.0 }, { - "V": 7723.83, + "V": 5545.53, "T": 584.0 }, { - "V": 7765.57, + "V": 5579.48, "T": 588.0 }, { - "V": 7807.54, + "V": 5614.77, "T": 592.0 }, { - "V": 7849.3, + "V": 5649.0, "T": 596.0 } ], @@ -72829,7 +74356,7 @@ "T": 1.0 }, { - "V": 0.0, + "V": 128.0, "T": 5.0 }, { @@ -72845,7 +74372,7 @@ "T": 17.0 }, { - "V": 64.0, + "V": 0.0, "T": 21.0 }, { @@ -72853,11 +74380,11 @@ "T": 25.0 }, { - "V": 143.47, + "V": 0.0, "T": 29.0 }, { - "V": 0.0, + "V": 127.88, "T": 33.0 }, { @@ -72873,7 +74400,7 @@ "T": 45.0 }, { - "V": 64.0, + "V": 0.0, "T": 49.0 }, { @@ -72913,7 +74440,7 @@ "T": 85.0 }, { - "V": 64.0, + "V": 0.0, "T": 89.0 }, { @@ -72949,7 +74476,7 @@ "T": 121.0 }, { - "V": 64.0, + "V": 0.0, "T": 125.0 }, { @@ -72957,11 +74484,11 @@ "T": 129.0 }, { - "V": 0.0, + "V": 128.0, "T": 133.0 }, { - "V": 393.56, + "V": 0.0, "T": 137.0 }, { @@ -72969,7 +74496,7 @@ "T": 141.0 }, { - "V": 64.0, + "V": 0.0, "T": 145.0 }, { @@ -72985,7 +74512,7 @@ "T": 157.0 }, { - "V": 0.0, + "V": 64.0, "T": 161.0 }, { @@ -72997,7 +74524,7 @@ "T": 169.0 }, { - "V": 64.0, + "V": 0.0, "T": 173.0 }, { @@ -73025,11 +74552,11 @@ "T": 197.0 }, { - "V": 64.0, + "V": 0.0, "T": 201.0 }, { - "V": 0.0, + "V": 128.0, "T": 205.0 }, { @@ -73053,11 +74580,11 @@ "T": 225.0 }, { - "V": 64.0, + "V": 0.0, "T": 229.0 }, { - "V": 0.0, + "V": 128.0, "T": 233.0 }, { @@ -73085,11 +74612,11 @@ "T": 257.0 }, { - "V": 0.0, + "V": 128.0, "T": 261.0 }, { - "V": 64.0, + "V": 0.0, "T": 265.0 }, { @@ -73101,7 +74628,7 @@ "T": 273.0 }, { - "V": 832.98, + "V": 0.0, "T": 277.0 }, { @@ -73129,7 +74656,7 @@ "T": 301.0 }, { - "V": 64.0, + "V": 0.0, "T": 305.0 }, { @@ -73157,7 +74684,7 @@ "T": 329.0 }, { - "V": 64.0, + "V": 128.0, "T": 333.0 }, { @@ -73173,11 +74700,11 @@ "T": 345.0 }, { - "V": 64.0, + "V": 0.0, "T": 349.0 }, { - "V": 0.0, + "V": 64.0, "T": 353.0 }, { @@ -73221,7 +74748,7 @@ "T": 393.0 }, { - "V": 64.0, + "V": 0.0, "T": 397.0 }, { @@ -73249,7 +74776,7 @@ "T": 421.0 }, { - "V": 64.0, + "V": 0.0, "T": 425.0 }, { @@ -73257,7 +74784,7 @@ "T": 429.0 }, { - "V": 0.0, + "V": 128.0, "T": 433.0 }, { @@ -73277,7 +74804,7 @@ "T": 449.0 }, { - "V": 64.0, + "V": 0.0, "T": 453.0 }, { @@ -73305,7 +74832,7 @@ "T": 477.0 }, { - "V": 64.0, + "V": 0.0, "T": 481.0 }, { @@ -73341,7 +74868,7 @@ "T": 513.0 }, { - "V": 64.0, + "V": 0.0, "T": 517.0 }, { @@ -73357,7 +74884,7 @@ "T": 529.0 }, { - "V": 0.0, + "V": 128.0, "T": 533.0 }, { @@ -73368,1041 +74895,1038 @@ "V": 0.0, "T": 541.0 }, - { - "V": 64.0, - "T": 545.0 - }, - { - "V": 0.0, - "T": 549.0 - }, - { - "V": 0.0, - "T": 553.0 - }, - { - "V": 1601.95, - "T": 557.0 - }, - { - "V": 0.0, - "T": 561.0 - }, - { - "V": 0.0, - "T": 565.0 - }, { "V": 0.0, - "T": 569.0 - }, - { - "V": 0.0, - "T": 573.0 - }, - { - "V": 0.0, - "T": 577.0 - }, - { - "V": 0.0, - "T": 581.0 - }, - { - "V": 64.0, - "T": 585.0 - }, - { - "V": 0.0, - "T": 589.0 - }, - { - "V": 0.0, - "T": 593.0 - } - ], - "OpsPerSec": [ - { - "V": 64.0, - "T": 0.0 - }, - { - "V": 63.0, - "T": 4.0 - }, - { - "V": 63.0, - "T": 8.0 - }, - { - "V": 64.0, - "T": 12.0 - }, - { - "V": 63.0, - "T": 16.0 - }, - { - "V": 64.0, - "T": 20.0 - }, - { - "V": 63.0, - "T": 24.0 + "T": 545.0 }, { - "V": 63.0, - "T": 28.0 + "V": 0.0, + "T": 549.0 }, { - "V": 63.0, - "T": 32.0 + "V": 0.0, + "T": 553.0 }, { - "V": 63.0, - "T": 36.0 + "V": 0.0, + "T": 557.0 }, { - "V": 63.0, - "T": 40.0 + "V": 128.0, + "T": 561.0 }, { - "V": 63.0, - "T": 44.0 + "V": 0.0, + "T": 565.0 }, { - "V": 63.0, - "T": 48.0 + "V": 0.0, + "T": 569.0 }, { - "V": 63.0, - "T": 52.0 + "V": 0.0, + "T": 573.0 }, { - "V": 63.0, - "T": 56.0 + "V": 0.0, + "T": 577.0 }, { - "V": 65.0, - "T": 60.0 + "V": 0.0, + "T": 581.0 }, { - "V": 63.0, - "T": 64.0 + "V": 0.0, + "T": 585.0 }, { - "V": 63.0, - "T": 68.0 + "V": 0.0, + "T": 589.0 }, { - "V": 63.0, - "T": 72.0 + "V": 0.0, + "T": 593.0 }, { - "V": 63.0, - "T": 76.0 + "V": 0.0, + "T": 597.0 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ + { + "V": 0.0, + "T": 1.0 }, { - "V": 64.0, - "T": 80.0 + "V": 0.0, + "T": 5.0 }, { - "V": 63.0, - "T": 84.0 + "V": 0.0, + "T": 9.0 }, { - "V": 63.0, - "T": 88.0 + "V": 0.0, + "T": 13.0 }, { - "V": 63.0, - "T": 92.0 + "V": 0.0, + "T": 17.0 }, { - "V": 63.0, - "T": 96.0 + "V": 0.0, + "T": 21.0 }, { - "V": 63.0, - "T": 100.0 + "V": 0.0, + "T": 25.0 }, { - "V": 63.0, - "T": 104.0 + "V": 0.0, + "T": 29.0 }, { - "V": 63.0, - "T": 108.0 + "V": 0.0, + "T": 33.0 }, { - "V": 63.0, - "T": 112.0 + "V": 0.0, + "T": 37.0 }, { - "V": 63.0, - "T": 116.0 + "V": 0.0, + "T": 41.0 }, { - "V": 63.0, - "T": 120.0 + "V": 0.0, + "T": 45.0 }, { - "V": 64.0, - "T": 124.0 + "V": 0.0, + "T": 49.0 }, { - "V": 63.0, - "T": 128.0 + "V": 0.0, + "T": 53.0 }, { - "V": 63.0, - "T": 132.0 + "V": 0.0, + "T": 57.0 }, { - "V": 63.0, - "T": 136.0 + "V": 0.0, + "T": 61.0 }, { - "V": 63.0, - "T": 140.0 + "V": 0.0, + "T": 65.0 }, { - "V": 63.0, - "T": 144.0 + "V": 0.0, + "T": 69.0 }, { - "V": 63.0, - "T": 148.0 + "V": 0.0, + "T": 73.0 }, { - "V": 63.0, - "T": 152.0 + "V": 0.0, + "T": 77.0 }, { - "V": 64.0, - "T": 156.0 + "V": 0.0, + "T": 81.0 }, { - "V": 63.0, - "T": 160.0 + "V": 0.0, + "T": 85.0 }, { - "V": 63.0, - "T": 164.0 + "V": 0.0, + "T": 89.0 }, { - "V": 63.0, - "T": 168.0 + "V": 0.0, + "T": 93.0 }, { - "V": 63.0, - "T": 172.0 + "V": 0.0, + "T": 97.0 }, { - "V": 64.0, - "T": 176.0 + "V": 0.0, + "T": 101.0 }, { - "V": 63.0, - "T": 180.0 + "V": 0.0, + "T": 105.0 }, { - "V": 63.0, - "T": 184.0 + "V": 0.0, + "T": 109.0 }, { - "V": 63.0, - "T": 188.0 + "V": 0.0, + "T": 113.0 }, { - "V": 63.0, - "T": 192.0 + "V": 0.0, + "T": 117.0 }, { - "V": 63.0, - "T": 196.0 + "V": 0.0, + "T": 121.0 }, { - "V": 64.0, - "T": 200.0 + "V": 0.0, + "T": 125.0 }, { - "V": 63.0, - "T": 204.0 + "V": 0.0, + "T": 129.0 }, { - "V": 63.0, - "T": 208.0 + "V": 0.0, + "T": 133.0 }, { - "V": 63.0, - "T": 212.0 + "V": 0.0, + "T": 137.0 }, { - "V": 63.0, - "T": 216.0 + "V": 0.0, + "T": 141.0 }, { - "V": 63.0, - "T": 220.0 + "V": 0.0, + "T": 145.0 }, { - "V": 64.0, - "T": 224.0 + "V": 0.0, + "T": 149.0 }, { - "V": 63.0, - "T": 228.0 + "V": 0.0, + "T": 153.0 }, { - "V": 63.0, - "T": 232.0 + "V": 0.0, + "T": 157.0 }, { - "V": 63.0, - "T": 236.0 + "V": 0.0, + "T": 161.0 }, { - "V": 63.0, - "T": 240.0 + "V": 0.0, + "T": 165.0 }, { - "V": 64.0, - "T": 244.0 + "V": 0.0, + "T": 169.0 }, { - "V": 63.0, - "T": 248.0 + "V": 0.0, + "T": 173.0 }, { - "V": 64.0, - "T": 252.0 + "V": 0.0, + "T": 177.0 }, { - "V": 63.0, - "T": 256.0 + "V": 0.0, + "T": 181.0 }, { - "V": 64.0, - "T": 260.0 + "V": 0.0, + "T": 185.0 }, { - "V": 63.0, - "T": 264.0 + "V": 0.0, + "T": 189.0 }, { - "V": 64.0, - "T": 268.0 + "V": 0.0, + "T": 193.0 }, { - "V": 63.0, - "T": 272.0 + "V": 0.0, + "T": 197.0 }, { - "V": 64.0, - "T": 276.0 + "V": 0.0, + "T": 201.0 }, { - "V": 63.0, - "T": 280.0 + "V": 0.0, + "T": 205.0 }, { - "V": 64.0, - "T": 284.0 + "V": 0.0, + "T": 209.0 }, { - "V": 63.0, - "T": 288.0 + "V": 0.0, + "T": 213.0 }, { - "V": 63.0, - "T": 292.0 + "V": 0.0, + "T": 217.0 }, { - "V": 63.0, - "T": 296.0 + "V": 0.0, + "T": 221.0 }, { - "V": 63.0, - "T": 300.0 + "V": 0.0, + "T": 225.0 }, { - "V": 64.0, - "T": 304.0 + "V": 0.0, + "T": 229.0 }, { - "V": 63.0, - "T": 308.0 + "V": 0.0, + "T": 233.0 }, { - "V": 63.0, - "T": 312.0 + "V": 0.0, + "T": 237.0 }, { - "V": 63.0, - "T": 316.0 + "V": 0.0, + "T": 241.0 }, { - "V": 63.0, - "T": 320.0 + "V": 0.0, + "T": 245.0 }, { - "V": 64.0, - "T": 324.0 + "V": 0.0, + "T": 249.0 }, { - "V": 63.0, - "T": 328.0 + "V": 0.0, + "T": 253.0 }, { - "V": 64.0, - "T": 332.0 + "V": 0.0, + "T": 257.0 }, { - "V": 63.0, - "T": 336.0 + "V": 0.0, + "T": 261.0 }, { - "V": 63.0, - "T": 340.0 + "V": 0.0, + "T": 265.0 }, { - "V": 63.0, - "T": 344.0 + "V": 0.0, + "T": 269.0 }, { - "V": 63.0, - "T": 348.0 + "V": 0.0, + "T": 273.0 }, { - "V": 63.0, - "T": 352.0 + "V": 0.0, + "T": 277.0 }, { - "V": 63.0, - "T": 356.0 + "V": 0.0, + "T": 281.0 }, { - "V": 63.0, - "T": 360.0 + "V": 0.0, + "T": 285.0 }, { - "V": 64.0, - "T": 364.0 + "V": 0.0, + "T": 289.0 }, { - "V": 63.0, - "T": 368.0 + "V": 0.0, + "T": 293.0 }, { - "V": 63.0, - "T": 372.0 + "V": 0.0, + "T": 297.0 }, { - "V": 63.0, - "T": 376.0 + "V": 0.0, + "T": 301.0 }, { - "V": 63.0, - "T": 380.0 + "V": 0.0, + "T": 305.0 }, { - "V": 64.0, - "T": 384.0 + "V": 0.0, + "T": 309.0 }, { - "V": 63.0, - "T": 388.0 + "V": 0.0, + "T": 313.0 }, { - "V": 64.0, - "T": 392.0 + "V": 0.0, + "T": 317.0 }, { - "V": 63.0, - "T": 396.0 + "V": 0.0, + "T": 321.0 }, { - "V": 63.0, - "T": 400.0 + "V": 0.0, + "T": 325.0 }, { - "V": 63.0, - "T": 404.0 + "V": 0.0, + "T": 329.0 }, { - "V": 64.0, - "T": 408.0 + "V": 0.0, + "T": 333.0 }, { - "V": 63.0, - "T": 412.0 + "V": 0.0, + "T": 337.0 }, { - "V": 63.0, - "T": 416.0 + "V": 0.0, + "T": 341.0 }, { - "V": 63.0, - "T": 420.0 + "V": 0.0, + "T": 345.0 }, { - "V": 63.0, - "T": 424.0 + "V": 0.0, + "T": 349.0 }, { - "V": 63.0, - "T": 428.0 + "V": 0.0, + "T": 353.0 }, { - "V": 62.0, - "T": 432.0 + "V": 0.0, + "T": 357.0 }, { - "V": 63.0, - "T": 436.0 + "V": 0.0, + "T": 361.0 }, { - "V": 63.0, - "T": 440.0 + "V": 0.0, + "T": 365.0 }, { - "V": 63.0, - "T": 444.0 + "V": 0.0, + "T": 369.0 }, { - "V": 63.0, - "T": 448.0 + "V": 0.0, + "T": 373.0 }, { - "V": 63.0, - "T": 452.0 + "V": 0.0, + "T": 377.0 }, { - "V": 63.0, - "T": 456.0 + "V": 0.0, + "T": 381.0 }, { - "V": 63.0, - "T": 460.0 + "V": 0.0, + "T": 385.0 }, { - "V": 63.0, - "T": 464.0 + "V": 0.0, + "T": 389.0 }, { - "V": 63.0, - "T": 468.0 + "V": 0.0, + "T": 393.0 }, { - "V": 63.0, - "T": 472.0 + "V": 0.0, + "T": 397.0 }, { - "V": 63.0, - "T": 476.0 + "V": 0.0, + "T": 401.0 }, { - "V": 63.0, - "T": 480.0 + "V": 0.0, + "T": 405.0 }, { - "V": 63.0, - "T": 484.0 + "V": 0.0, + "T": 409.0 }, { - "V": 63.0, - "T": 488.0 + "V": 0.0, + "T": 413.0 }, { - "V": 63.0, - "T": 492.0 + "V": 0.0, + "T": 417.0 }, { - "V": 63.0, - "T": 496.0 + "V": 0.0, + "T": 421.0 }, { - "V": 63.0, - "T": 500.0 + "V": 0.0, + "T": 425.0 }, { - "V": 63.0, - "T": 504.0 + "V": 0.0, + "T": 429.0 }, { - "V": 63.0, - "T": 508.0 + "V": 0.0, + "T": 433.0 }, { - "V": 63.0, - "T": 512.0 + "V": 0.0, + "T": 437.0 }, { - "V": 63.0, - "T": 516.0 + "V": 0.0, + "T": 441.0 }, { - "V": 63.0, - "T": 520.0 + "V": 0.0, + "T": 445.0 }, { - "V": 63.0, - "T": 524.0 + "V": 0.0, + "T": 449.0 }, { - "V": 63.0, - "T": 528.0 + "V": 0.0, + "T": 453.0 }, { - "V": 63.0, - "T": 532.0 + "V": 0.0, + "T": 457.0 }, { - "V": 64.0, - "T": 536.0 + "V": 0.0, + "T": 461.0 }, { - "V": 63.0, - "T": 540.0 + "V": 0.0, + "T": 465.0 }, { - "V": 63.0, - "T": 544.0 + "V": 0.0, + "T": 469.0 }, { - "V": 63.0, - "T": 548.0 + "V": 0.0, + "T": 473.0 }, { - "V": 63.0, - "T": 552.0 + "V": 0.0, + "T": 477.0 }, { - "V": 64.0, - "T": 556.0 + "V": 0.0, + "T": 481.0 }, { - "V": 63.0, - "T": 560.0 + "V": 0.0, + "T": 485.0 }, { - "V": 63.0, - "T": 564.0 + "V": 0.0, + "T": 489.0 }, { - "V": 63.0, - "T": 568.0 + "V": 0.0, + "T": 493.0 }, { - "V": 63.0, - "T": 572.0 + "V": 0.0, + "T": 497.0 }, { - "V": 63.0, - "T": 576.0 + "V": 0.0, + "T": 501.0 }, { - "V": 63.0, - "T": 580.0 + "V": 0.0, + "T": 505.0 }, { - "V": 63.0, - "T": 584.0 + "V": 0.0, + "T": 509.0 }, { - "V": 63.0, - "T": 588.0 + "V": 0.0, + "T": 513.0 }, { - "V": 63.0, - "T": 592.0 + "V": 0.0, + "T": 517.0 }, - { - "V": 63.0, - "T": 596.0 - } - ], - "Gen0PerSec": [ { "V": 0.0, - "T": 1.0 + "T": 521.0 }, { "V": 0.0, - "T": 5.0 + "T": 525.0 }, { "V": 0.0, - "T": 9.0 + "T": 529.0 }, { "V": 0.0, - "T": 13.0 + "T": 533.0 }, { "V": 0.0, - "T": 17.0 + "T": 537.0 }, { "V": 0.0, - "T": 21.0 + "T": 541.0 }, { "V": 0.0, - "T": 25.0 + "T": 545.0 }, { "V": 0.0, - "T": 29.0 + "T": 549.0 }, { "V": 0.0, - "T": 33.0 + "T": 553.0 }, { "V": 0.0, - "T": 37.0 + "T": 557.0 }, { "V": 0.0, - "T": 41.0 + "T": 561.0 }, { "V": 0.0, - "T": 45.0 + "T": 565.0 }, { "V": 0.0, - "T": 49.0 + "T": 569.0 }, { "V": 0.0, - "T": 53.0 + "T": 573.0 }, { "V": 0.0, - "T": 57.0 + "T": 577.0 }, { "V": 0.0, - "T": 61.0 + "T": 581.0 }, { "V": 0.0, - "T": 65.0 + "T": 585.0 }, { "V": 0.0, - "T": 69.0 + "T": 589.0 }, { "V": 0.0, - "T": 73.0 + "T": 593.0 }, { "V": 0.0, - "T": 77.0 + "T": 597.0 + } + ] + } + }, + { + "ScenarioId": "gcperfsim-churn", + "ScenarioName": "GCPerfSim: high-throughput transient object churn", + "GcModeId": "zerogc", + "GcModeName": "ZeroGC", + "DurationSeconds": 649.7468116, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 5.358395787637145, + "TotalAllocatedBytes": 3650722808.0, + "Gen0Collections": 0, + "Gen1Collections": 0, + "Gen2Collections": 0, + "WorkingSetBytes": 3975884800.0, + "PeakWorkingSetBytes": 3975884800.0, + "HeapSizeBytes": 5033164800.0, + "TotalCommittedBytes": 5033164800.0, + "GcName": "ZeroGC", + "TagbUsed": 3.4 + }, + "PauseTimePctStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 647 + }, + "PauseTimeMsStats": { + "Avg": 0.0, + "P50": 0.0, + "P90": 0.0, + "P99": 0.0, + "Max": 0.0, + "Min": 0.0, + "Count": 647 + }, + "WorkingSetStats": { + "Avg": 2077921280.0, + "P50": 2074501120.0, + "P90": 3605893120.0, + "P99": 3948503040.0, + "Max": 3975884800.0, + "Min": 171859968.0, + "Count": 648 + }, + "AllocRateMBStats": { + "Avg": 5.638137640503496, + "P50": 0.0, + "P90": 0.0, + "P99": 192.0, + "Max": 511.8750534057617, + "Min": 0.0, + "Count": 647 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ + { + "V": 0.0, + "T": 1.0 }, { "V": 0.0, - "T": 81.0 + "T": 6.0 }, { "V": 0.0, - "T": 85.0 + "T": 11.0 }, { "V": 0.0, - "T": 89.0 + "T": 16.0 }, { "V": 0.0, - "T": 93.0 + "T": 21.0 }, { "V": 0.0, - "T": 97.0 + "T": 26.0 }, { "V": 0.0, - "T": 101.0 + "T": 31.0 }, { "V": 0.0, - "T": 105.0 + "T": 36.0 }, { "V": 0.0, - "T": 109.0 + "T": 41.0 }, { "V": 0.0, - "T": 113.0 + "T": 46.0 }, { "V": 0.0, - "T": 117.0 + "T": 51.0 }, { "V": 0.0, - "T": 121.0 + "T": 56.0 }, { "V": 0.0, - "T": 125.0 + "T": 61.0 }, { "V": 0.0, - "T": 129.0 + "T": 66.0 }, { "V": 0.0, - "T": 133.0 + "T": 71.0 }, { "V": 0.0, - "T": 137.0 + "T": 76.0 }, { "V": 0.0, - "T": 141.0 + "T": 81.0 }, { "V": 0.0, - "T": 145.0 + "T": 86.0 }, { "V": 0.0, - "T": 149.0 + "T": 91.0 }, { "V": 0.0, - "T": 153.0 + "T": 96.0 }, { "V": 0.0, - "T": 157.0 + "T": 101.0 }, { "V": 0.0, - "T": 161.0 + "T": 106.0 }, { "V": 0.0, - "T": 165.0 + "T": 111.0 }, { "V": 0.0, - "T": 169.0 + "T": 116.0 }, { "V": 0.0, - "T": 173.0 + "T": 121.0 }, { "V": 0.0, - "T": 177.0 + "T": 126.0 }, { "V": 0.0, - "T": 181.0 + "T": 131.0 }, { "V": 0.0, - "T": 185.0 + "T": 136.0 }, { "V": 0.0, - "T": 189.0 + "T": 141.0 }, { "V": 0.0, - "T": 193.0 + "T": 146.0 }, { "V": 0.0, - "T": 197.0 + "T": 151.0 }, { "V": 0.0, - "T": 201.0 + "T": 156.0 }, { "V": 0.0, - "T": 205.0 + "T": 161.0 }, { "V": 0.0, - "T": 209.0 + "T": 166.0 }, { "V": 0.0, - "T": 213.0 + "T": 171.0 }, { "V": 0.0, - "T": 217.0 + "T": 176.0 }, { "V": 0.0, - "T": 221.0 + "T": 181.0 }, { "V": 0.0, - "T": 225.0 + "T": 186.0 }, { "V": 0.0, - "T": 229.0 + "T": 191.0 }, { "V": 0.0, - "T": 233.0 + "T": 196.0 }, { "V": 0.0, - "T": 237.0 + "T": 201.0 }, { "V": 0.0, - "T": 241.0 + "T": 206.0 }, { "V": 0.0, - "T": 245.0 + "T": 211.0 }, { "V": 0.0, - "T": 249.0 + "T": 216.0 }, { "V": 0.0, - "T": 253.0 + "T": 221.0 }, { "V": 0.0, - "T": 257.0 + "T": 226.0 }, { "V": 0.0, - "T": 261.0 + "T": 231.0 }, { "V": 0.0, - "T": 265.0 + "T": 236.0 }, { "V": 0.0, - "T": 269.0 + "T": 241.0 }, { "V": 0.0, - "T": 273.0 + "T": 246.0 }, { "V": 0.0, - "T": 277.0 + "T": 251.0 }, { "V": 0.0, - "T": 281.0 + "T": 256.0 }, { "V": 0.0, - "T": 285.0 + "T": 261.0 }, { "V": 0.0, - "T": 289.0 + "T": 266.0 }, { "V": 0.0, - "T": 293.0 + "T": 271.0 }, { "V": 0.0, - "T": 297.0 + "T": 276.0 }, { "V": 0.0, - "T": 301.0 + "T": 281.0 }, { "V": 0.0, - "T": 305.0 + "T": 286.0 }, { "V": 0.0, - "T": 309.0 + "T": 291.0 }, { "V": 0.0, - "T": 313.0 + "T": 296.0 }, { "V": 0.0, - "T": 317.0 + "T": 301.0 }, { "V": 0.0, - "T": 321.0 + "T": 306.0 }, { "V": 0.0, - "T": 325.0 + "T": 311.0 }, { "V": 0.0, - "T": 329.0 + "T": 316.0 }, { "V": 0.0, - "T": 333.0 + "T": 321.0 }, { "V": 0.0, - "T": 337.0 + "T": 326.0 }, { "V": 0.0, - "T": 341.0 + "T": 331.0 }, { "V": 0.0, - "T": 345.0 + "T": 336.0 }, { "V": 0.0, - "T": 349.0 + "T": 341.0 }, { "V": 0.0, - "T": 353.0 + "T": 346.0 }, { "V": 0.0, - "T": 357.0 + "T": 351.0 }, { "V": 0.0, - "T": 361.0 + "T": 356.0 }, { "V": 0.0, - "T": 365.0 + "T": 361.0 }, { "V": 0.0, - "T": 369.0 + "T": 366.0 }, { "V": 0.0, - "T": 373.0 + "T": 371.0 }, { "V": 0.0, - "T": 377.0 + "T": 376.0 }, { "V": 0.0, @@ -74410,286 +75934,218 @@ }, { "V": 0.0, - "T": 385.0 + "T": 386.0 }, { "V": 0.0, - "T": 389.0 + "T": 391.0 }, { "V": 0.0, - "T": 393.0 + "T": 396.0 }, { "V": 0.0, - "T": 397.0 + "T": 401.0 }, { "V": 0.0, - "T": 401.0 + "T": 406.0 }, { "V": 0.0, - "T": 405.0 + "T": 411.0 }, { "V": 0.0, - "T": 409.0 + "T": 416.0 }, { "V": 0.0, - "T": 413.0 + "T": 421.0 }, { "V": 0.0, - "T": 417.0 + "T": 426.0 }, { "V": 0.0, - "T": 421.0 + "T": 431.0 }, { "V": 0.0, - "T": 425.0 + "T": 436.0 }, { "V": 0.0, - "T": 429.0 + "T": 441.0 }, { "V": 0.0, - "T": 433.0 + "T": 446.0 }, { "V": 0.0, - "T": 437.0 + "T": 451.0 }, { "V": 0.0, - "T": 441.0 + "T": 456.0 }, { "V": 0.0, - "T": 445.0 + "T": 461.0 }, { "V": 0.0, - "T": 449.0 + "T": 466.0 }, { "V": 0.0, - "T": 453.0 + "T": 471.0 }, { "V": 0.0, - "T": 457.0 + "T": 476.0 }, { "V": 0.0, - "T": 461.0 + "T": 481.0 }, { "V": 0.0, - "T": 465.0 + "T": 486.0 }, { "V": 0.0, - "T": 469.0 + "T": 491.0 }, { "V": 0.0, - "T": 473.0 + "T": 496.0 }, { "V": 0.0, - "T": 477.0 + "T": 501.0 }, { "V": 0.0, - "T": 481.0 + "T": 506.0 }, { "V": 0.0, - "T": 485.0 + "T": 511.0 }, { "V": 0.0, - "T": 489.0 + "T": 516.0 }, { "V": 0.0, - "T": 493.0 + "T": 521.0 }, { "V": 0.0, - "T": 497.0 + "T": 526.0 }, { "V": 0.0, - "T": 501.0 + "T": 531.0 }, { "V": 0.0, - "T": 505.0 + "T": 536.0 }, { "V": 0.0, - "T": 509.0 + "T": 541.0 }, { "V": 0.0, - "T": 513.0 + "T": 546.0 }, { "V": 0.0, - "T": 517.0 + "T": 551.0 }, { "V": 0.0, - "T": 521.0 + "T": 556.0 }, { "V": 0.0, - "T": 525.0 + "T": 561.0 }, { "V": 0.0, - "T": 529.0 + "T": 566.0 }, { "V": 0.0, - "T": 533.0 + "T": 571.0 }, { "V": 0.0, - "T": 537.0 + "T": 576.0 }, { "V": 0.0, - "T": 541.0 + "T": 581.0 }, { "V": 0.0, - "T": 545.0 + "T": 586.0 }, { "V": 0.0, - "T": 549.0 + "T": 591.0 }, { "V": 0.0, - "T": 553.0 + "T": 596.0 }, { "V": 0.0, - "T": 557.0 + "T": 601.0 }, { "V": 0.0, - "T": 561.0 + "T": 606.0 }, { "V": 0.0, - "T": 565.0 + "T": 611.0 }, { "V": 0.0, - "T": 569.0 + "T": 616.0 }, { "V": 0.0, - "T": 573.0 + "T": 621.0 }, { "V": 0.0, - "T": 577.0 + "T": 626.0 }, { "V": 0.0, - "T": 581.0 + "T": 631.0 }, { "V": 0.0, - "T": 585.0 + "T": 636.0 }, { "V": 0.0, - "T": 589.0 + "T": 641.0 }, { "V": 0.0, - "T": 593.0 + "T": 646.0 } - ] - } - }, - { - "ScenarioId": "gcperfsim-webserver", - "ScenarioName": "GCPerfSim: web-server request simulation", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 673.7108536, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 11.551553769221561, - "TotalAllocatedBytes": 8160445360.0, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 8434221056.0, - "PeakWorkingSetBytes": 8434221056.0, - "HeapSizeBytes": 9328132096.0, - "TotalCommittedBytes": 9328132096.0, - "GcName": "ZeroGC", - "TagbUsed": 7.6 - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 671 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 671 - }, - "WorkingSetStats": { - "Avg": 4536942104.380953, - "P50": 4532551680.0, - "P90": 7666814976.0, - "P99": 8375521280.0, - "Max": 8434221056.0, - "Min": 620937216.0, - "Count": 672 - }, - "AllocRateMBStats": { - "Avg": 11.159277277802923, - "P50": 0.0, - "P90": 0.0, - "P99": 192.0, - "Max": 256.0, - "Min": 0.0, - "Count": 671 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ + ], + "PauseTimeMs": [ { "V": 0.0, "T": 1.0 @@ -75209,1113 +76665,1054 @@ { "V": 0.0, "T": 646.0 - }, - { - "V": 0.0, - "T": 651.0 - }, - { - "V": 0.0, - "T": 656.0 - }, - { - "V": 0.0, - "T": 661.0 - }, - { - "V": 0.0, - "T": 666.0 - }, - { - "V": 0.0, - "T": 671.0 } ], - "PauseTimeMs": [ - { - "V": 0.0, - "T": 1.0 - }, - { - "V": 0.0, - "T": 6.0 - }, - { - "V": 0.0, - "T": 11.0 - }, - { - "V": 0.0, - "T": 16.0 - }, - { - "V": 0.0, - "T": 21.0 - }, - { - "V": 0.0, - "T": 26.0 - }, - { - "V": 0.0, - "T": 31.0 - }, - { - "V": 0.0, - "T": 36.0 - }, - { - "V": 0.0, - "T": 41.0 - }, - { - "V": 0.0, - "T": 46.0 - }, - { - "V": 0.0, - "T": 51.0 - }, + "WorkingSetMB": [ { - "V": 0.0, - "T": 56.0 + "V": 163.9, + "T": 0.0 }, { - "V": 0.0, - "T": 61.0 + "V": 194.41, + "T": 5.0 }, { - "V": 0.0, - "T": 66.0 + "V": 222.77, + "T": 10.0 }, { - "V": 0.0, - "T": 71.0 + "V": 250.81, + "T": 15.0 }, { - "V": 0.0, - "T": 76.0 + "V": 279.07, + "T": 20.0 }, { - "V": 0.0, - "T": 81.0 + "V": 307.3, + "T": 25.0 }, { - "V": 0.0, - "T": 86.0 + "V": 335.24, + "T": 30.0 }, { - "V": 0.0, - "T": 91.0 + "V": 363.58, + "T": 35.0 }, { - "V": 0.0, - "T": 96.0 + "V": 390.76, + "T": 40.0 }, { - "V": 0.0, - "T": 101.0 + "V": 419.01, + "T": 45.0 }, { - "V": 0.0, - "T": 106.0 + "V": 446.53, + "T": 50.0 }, { - "V": 0.0, - "T": 111.0 + "V": 474.93, + "T": 55.0 }, { - "V": 0.0, - "T": 116.0 + "V": 503.75, + "T": 60.0 }, { - "V": 0.0, - "T": 121.0 + "V": 531.89, + "T": 65.0 }, { - "V": 0.0, - "T": 126.0 + "V": 560.63, + "T": 70.0 }, { - "V": 0.0, - "T": 131.0 + "V": 588.81, + "T": 75.0 }, { - "V": 0.0, - "T": 136.0 + "V": 616.94, + "T": 80.0 }, { - "V": 0.0, - "T": 141.0 + "V": 644.92, + "T": 85.0 }, { - "V": 0.0, - "T": 146.0 + "V": 673.16, + "T": 90.0 }, { - "V": 0.0, - "T": 151.0 + "V": 701.09, + "T": 95.0 }, { - "V": 0.0, - "T": 156.0 + "V": 729.26, + "T": 100.0 }, { - "V": 0.0, - "T": 161.0 + "V": 757.35, + "T": 105.0 }, { - "V": 0.0, - "T": 166.0 + "V": 785.43, + "T": 110.0 }, { - "V": 0.0, - "T": 171.0 + "V": 813.5, + "T": 115.0 }, { - "V": 0.0, - "T": 176.0 + "V": 841.68, + "T": 120.0 }, { - "V": 0.0, - "T": 181.0 + "V": 869.93, + "T": 125.0 }, { - "V": 0.0, - "T": 186.0 + "V": 897.36, + "T": 130.0 }, { - "V": 0.0, - "T": 191.0 + "V": 924.94, + "T": 135.0 }, { - "V": 0.0, - "T": 196.0 + "V": 953.18, + "T": 140.0 }, { - "V": 0.0, - "T": 201.0 + "V": 981.23, + "T": 145.0 }, { - "V": 0.0, - "T": 206.0 + "V": 1008.85, + "T": 150.0 }, { - "V": 0.0, - "T": 211.0 + "V": 1035.94, + "T": 155.0 }, { - "V": 0.0, - "T": 216.0 + "V": 1063.34, + "T": 160.0 }, { - "V": 0.0, - "T": 221.0 + "V": 1091.02, + "T": 165.0 }, { - "V": 0.0, - "T": 226.0 + "V": 1119.52, + "T": 170.0 }, { - "V": 0.0, - "T": 231.0 + "V": 1147.48, + "T": 175.0 }, { - "V": 0.0, - "T": 236.0 + "V": 1175.75, + "T": 180.0 }, { - "V": 0.0, - "T": 241.0 + "V": 1204.14, + "T": 185.0 }, { - "V": 0.0, - "T": 246.0 + "V": 1232.29, + "T": 190.0 }, { - "V": 0.0, - "T": 251.0 + "V": 1260.42, + "T": 195.0 }, { - "V": 0.0, - "T": 256.0 + "V": 1288.41, + "T": 200.0 }, { - "V": 0.0, - "T": 261.0 + "V": 1316.46, + "T": 205.0 }, { - "V": 0.0, - "T": 266.0 + "V": 1344.52, + "T": 210.0 }, { - "V": 0.0, - "T": 271.0 + "V": 1372.16, + "T": 215.0 }, { - "V": 0.0, - "T": 276.0 + "V": 1400.69, + "T": 220.0 }, { - "V": 0.0, - "T": 281.0 + "V": 1428.93, + "T": 225.0 }, { - "V": 0.0, - "T": 286.0 + "V": 1457.01, + "T": 230.0 }, { - "V": 0.0, - "T": 291.0 + "V": 1485.46, + "T": 235.0 }, { - "V": 0.0, - "T": 296.0 + "V": 1512.97, + "T": 240.0 }, { - "V": 0.0, - "T": 301.0 + "V": 1540.9, + "T": 245.0 }, { - "V": 0.0, - "T": 306.0 + "V": 1568.96, + "T": 250.0 }, { - "V": 0.0, - "T": 311.0 + "V": 1597.57, + "T": 255.0 }, { - "V": 0.0, - "T": 316.0 + "V": 1625.57, + "T": 260.0 }, { - "V": 0.0, - "T": 321.0 + "V": 1653.75, + "T": 265.0 }, { - "V": 0.0, - "T": 326.0 + "V": 1681.8, + "T": 270.0 }, { - "V": 0.0, - "T": 331.0 + "V": 1709.6, + "T": 275.0 }, { - "V": 0.0, - "T": 336.0 + "V": 1737.16, + "T": 280.0 }, { - "V": 0.0, - "T": 341.0 + "V": 1765.29, + "T": 285.0 }, { - "V": 0.0, - "T": 346.0 + "V": 1793.73, + "T": 290.0 }, { - "V": 0.0, - "T": 351.0 + "V": 1821.36, + "T": 295.0 }, { - "V": 0.0, - "T": 356.0 + "V": 1850.04, + "T": 300.0 }, { - "V": 0.0, - "T": 361.0 + "V": 1878.16, + "T": 305.0 }, { - "V": 0.0, - "T": 366.0 + "V": 1906.09, + "T": 310.0 }, { - "V": 0.0, - "T": 371.0 + "V": 1934.1, + "T": 315.0 }, { - "V": 0.0, - "T": 376.0 + "V": 1961.95, + "T": 320.0 }, { - "V": 0.0, - "T": 381.0 + "V": 1989.14, + "T": 325.0 }, { - "V": 0.0, - "T": 386.0 + "V": 2016.93, + "T": 330.0 }, { - "V": 0.0, - "T": 391.0 + "V": 2044.24, + "T": 335.0 }, { - "V": 0.0, - "T": 396.0 + "V": 2071.98, + "T": 340.0 }, { - "V": 0.0, - "T": 401.0 + "V": 2099.39, + "T": 345.0 }, { - "V": 0.0, - "T": 406.0 + "V": 2127.78, + "T": 350.0 }, { - "V": 0.0, - "T": 411.0 + "V": 2156.27, + "T": 355.0 }, { - "V": 0.0, - "T": 416.0 + "V": 2184.3, + "T": 360.0 }, { - "V": 0.0, - "T": 421.0 + "V": 2212.27, + "T": 365.0 }, { - "V": 0.0, - "T": 426.0 + "V": 2240.19, + "T": 370.0 }, { - "V": 0.0, - "T": 431.0 + "V": 2267.85, + "T": 375.0 }, { - "V": 0.0, - "T": 436.0 + "V": 2295.82, + "T": 380.0 }, { - "V": 0.0, - "T": 441.0 + "V": 2324.29, + "T": 385.0 }, { - "V": 0.0, - "T": 446.0 + "V": 2352.36, + "T": 390.0 }, { - "V": 0.0, - "T": 451.0 + "V": 2380.3, + "T": 395.0 }, { - "V": 0.0, - "T": 456.0 + "V": 2408.54, + "T": 400.0 }, { - "V": 0.0, - "T": 461.0 + "V": 2436.3, + "T": 405.0 }, { - "V": 0.0, - "T": 466.0 + "V": 2464.85, + "T": 410.0 }, { - "V": 0.0, - "T": 471.0 + "V": 2493.43, + "T": 415.0 }, { - "V": 0.0, - "T": 476.0 + "V": 2521.95, + "T": 420.0 }, { - "V": 0.0, - "T": 481.0 + "V": 2550.17, + "T": 425.0 }, { - "V": 0.0, - "T": 486.0 + "V": 2578.11, + "T": 430.0 }, { - "V": 0.0, - "T": 491.0 + "V": 2606.3, + "T": 435.0 }, { - "V": 0.0, - "T": 496.0 + "V": 2634.73, + "T": 440.0 }, { - "V": 0.0, - "T": 501.0 + "V": 2663.1, + "T": 445.0 }, { - "V": 0.0, - "T": 506.0 + "V": 2691.42, + "T": 450.0 }, { - "V": 0.0, - "T": 511.0 + "V": 2719.7, + "T": 455.0 }, { - "V": 0.0, - "T": 516.0 + "V": 2747.57, + "T": 460.0 }, { - "V": 0.0, - "T": 521.0 + "V": 2775.57, + "T": 465.0 }, { - "V": 0.0, - "T": 526.0 + "V": 2803.93, + "T": 470.0 }, { - "V": 0.0, - "T": 531.0 + "V": 2832.07, + "T": 475.0 }, { - "V": 0.0, - "T": 536.0 + "V": 2860.48, + "T": 480.0 }, { - "V": 0.0, - "T": 541.0 + "V": 2888.54, + "T": 485.0 }, { - "V": 0.0, - "T": 546.0 + "V": 2916.81, + "T": 490.0 }, { - "V": 0.0, - "T": 551.0 + "V": 2944.8, + "T": 495.0 }, { - "V": 0.0, - "T": 556.0 + "V": 2972.83, + "T": 500.0 }, { - "V": 0.0, - "T": 561.0 + "V": 2999.98, + "T": 505.0 }, { - "V": 0.0, - "T": 566.0 + "V": 3027.7, + "T": 510.0 }, { - "V": 0.0, - "T": 571.0 + "V": 3055.93, + "T": 515.0 }, { - "V": 0.0, - "T": 576.0 + "V": 3083.93, + "T": 520.0 }, { - "V": 0.0, - "T": 581.0 + "V": 3112.23, + "T": 525.0 }, { - "V": 0.0, - "T": 586.0 + "V": 3140.79, + "T": 530.0 }, { - "V": 0.0, - "T": 591.0 + "V": 3168.49, + "T": 535.0 }, { - "V": 0.0, - "T": 596.0 + "V": 3196.54, + "T": 540.0 }, { - "V": 0.0, - "T": 601.0 + "V": 3224.7, + "T": 545.0 }, { - "V": 0.0, - "T": 606.0 + "V": 3252.95, + "T": 550.0 }, { - "V": 0.0, - "T": 611.0 + "V": 3281.25, + "T": 555.0 }, { - "V": 0.0, - "T": 616.0 + "V": 3309.43, + "T": 560.0 }, { - "V": 0.0, - "T": 621.0 + "V": 3337.55, + "T": 565.0 }, { - "V": 0.0, - "T": 626.0 + "V": 3365.41, + "T": 570.0 }, { - "V": 0.0, - "T": 631.0 + "V": 3393.2, + "T": 575.0 }, { - "V": 0.0, - "T": 636.0 + "V": 3421.33, + "T": 580.0 }, { - "V": 0.0, - "T": 641.0 + "V": 3449.64, + "T": 585.0 }, { - "V": 0.0, - "T": 646.0 + "V": 3477.64, + "T": 590.0 }, { - "V": 0.0, - "T": 651.0 + "V": 3505.86, + "T": 595.0 }, { - "V": 0.0, - "T": 656.0 + "V": 3533.93, + "T": 600.0 }, { - "V": 0.0, - "T": 661.0 + "V": 3562.04, + "T": 605.0 }, { - "V": 0.0, - "T": 666.0 + "V": 3590.34, + "T": 610.0 }, { - "V": 0.0, - "T": 671.0 - } - ], - "WorkingSetMB": [ + "V": 3618.64, + "T": 615.0 + }, { - "V": 592.17, - "T": 0.0 + "V": 3647.32, + "T": 620.0 }, { - "V": 650.43, - "T": 5.0 + "V": 3675.38, + "T": 625.0 }, { - "V": 705.64, - "T": 10.0 + "V": 3703.62, + "T": 630.0 }, { - "V": 761.38, - "T": 15.0 + "V": 3731.8, + "T": 635.0 }, { - "V": 817.58, - "T": 20.0 + "V": 3760.1, + "T": 640.0 }, { - "V": 873.09, - "T": 25.0 + "V": 3787.44, + "T": 645.0 + } + ], + "AllocRateMB": [ + { + "V": 0.0, + "T": 1.0 }, { - "V": 928.9, - "T": 30.0 + "V": 0.0, + "T": 6.0 }, { - "V": 985.05, - "T": 35.0 + "V": 0.0, + "T": 11.0 }, { - "V": 1041.55, - "T": 40.0 + "V": 0.0, + "T": 16.0 }, { - "V": 1097.6, - "T": 45.0 + "V": 0.0, + "T": 21.0 }, { - "V": 1152.91, - "T": 50.0 + "V": 0.0, + "T": 26.0 }, { - "V": 1207.84, - "T": 55.0 + "V": 0.0, + "T": 31.0 }, { - "V": 1263.15, - "T": 60.0 + "V": 0.0, + "T": 36.0 }, { - "V": 1318.48, - "T": 65.0 + "V": 0.0, + "T": 41.0 }, { - "V": 1374.91, - "T": 70.0 + "V": 0.0, + "T": 46.0 }, { - "V": 1429.72, - "T": 75.0 + "V": 0.0, + "T": 51.0 }, { - "V": 1485.03, - "T": 80.0 + "V": 0.0, + "T": 56.0 }, { - "V": 1540.89, - "T": 85.0 + "V": 0.0, + "T": 61.0 }, { - "V": 1597.13, - "T": 90.0 + "V": 0.0, + "T": 66.0 }, { - "V": 1652.75, - "T": 95.0 + "V": 0.0, + "T": 71.0 }, { - "V": 1707.75, - "T": 100.0 + "V": 0.0, + "T": 76.0 }, { - "V": 1764.11, - "T": 105.0 + "V": 0.0, + "T": 81.0 }, { - "V": 1819.61, - "T": 110.0 + "V": 0.0, + "T": 86.0 }, { - "V": 1875.35, - "T": 115.0 + "V": 0.0, + "T": 91.0 }, { - "V": 1930.78, - "T": 120.0 + "V": 0.0, + "T": 96.0 }, { - "V": 1987.02, - "T": 125.0 + "V": 0.0, + "T": 101.0 }, { - "V": 2043.51, - "T": 130.0 + "V": 0.0, + "T": 106.0 }, { - "V": 2099.59, - "T": 135.0 + "V": 0.0, + "T": 111.0 }, { - "V": 2155.46, - "T": 140.0 + "V": 0.0, + "T": 116.0 }, { - "V": 2211.39, - "T": 145.0 + "V": 0.0, + "T": 121.0 }, { - "V": 2267.45, - "T": 150.0 + "V": 0.0, + "T": 126.0 }, { - "V": 2323.38, - "T": 155.0 + "V": 0.0, + "T": 131.0 }, { - "V": 2379.0, - "T": 160.0 + "V": 0.0, + "T": 136.0 }, { - "V": 2433.86, - "T": 165.0 + "V": 0.0, + "T": 141.0 }, { - "V": 2488.86, - "T": 170.0 + "V": 0.0, + "T": 146.0 }, { - "V": 2544.07, - "T": 175.0 + "V": 0.0, + "T": 151.0 }, { - "V": 2599.65, - "T": 180.0 + "V": 0.0, + "T": 156.0 }, { - "V": 2655.84, - "T": 185.0 + "V": 0.0, + "T": 161.0 }, { - "V": 2710.64, - "T": 190.0 + "V": 0.0, + "T": 166.0 }, { - "V": 2766.34, - "T": 195.0 + "V": 0.0, + "T": 171.0 }, { - "V": 2821.92, - "T": 200.0 + "V": 0.0, + "T": 176.0 }, { - "V": 2878.43, - "T": 205.0 + "V": 0.0, + "T": 181.0 }, { - "V": 2933.67, - "T": 210.0 + "V": 0.0, + "T": 186.0 }, { - "V": 2988.85, - "T": 215.0 + "V": 0.0, + "T": 191.0 }, { - "V": 3045.41, - "T": 220.0 + "V": 0.0, + "T": 196.0 }, { - "V": 3100.27, - "T": 225.0 + "V": 0.0, + "T": 201.0 }, { - "V": 3156.14, - "T": 230.0 + "V": 0.0, + "T": 206.0 }, { - "V": 3211.82, - "T": 235.0 + "V": 0.0, + "T": 211.0 }, { - "V": 3268.07, - "T": 240.0 + "V": 0.0, + "T": 216.0 }, { - "V": 3324.25, - "T": 245.0 + "V": 0.0, + "T": 221.0 }, { - "V": 3379.77, - "T": 250.0 + "V": 0.0, + "T": 226.0 }, { - "V": 3435.17, - "T": 255.0 + "V": 0.0, + "T": 231.0 }, { - "V": 3490.6, - "T": 260.0 + "V": 0.0, + "T": 236.0 }, { - "V": 3546.75, - "T": 265.0 + "V": 0.0, + "T": 241.0 }, { - "V": 3602.46, - "T": 270.0 + "V": 0.0, + "T": 246.0 }, { - "V": 3657.95, - "T": 275.0 + "V": 0.0, + "T": 251.0 }, { - "V": 3711.98, - "T": 280.0 + "V": 0.0, + "T": 256.0 }, { - "V": 3766.68, - "T": 285.0 + "V": 0.0, + "T": 261.0 }, { - "V": 3821.8, - "T": 290.0 + "V": 0.0, + "T": 266.0 }, { - "V": 3877.48, - "T": 295.0 + "V": 0.0, + "T": 271.0 }, { - "V": 3933.4, - "T": 300.0 + "V": 0.0, + "T": 276.0 }, { - "V": 3988.38, - "T": 305.0 + "V": 0.0, + "T": 281.0 }, { - "V": 4043.82, - "T": 310.0 + "V": 0.0, + "T": 286.0 }, { - "V": 4099.78, - "T": 315.0 + "V": 0.0, + "T": 291.0 }, { - "V": 4155.48, - "T": 320.0 + "V": 0.0, + "T": 296.0 }, { - "V": 4210.28, - "T": 325.0 + "V": 0.0, + "T": 301.0 }, { - "V": 4266.21, - "T": 330.0 + "V": 0.0, + "T": 306.0 }, { - "V": 4322.58, - "T": 335.0 + "V": 0.0, + "T": 311.0 }, { - "V": 4377.45, - "T": 340.0 + "V": 0.0, + "T": 316.0 }, { - "V": 4433.59, - "T": 345.0 + "V": 0.0, + "T": 321.0 }, { - "V": 4489.59, - "T": 350.0 + "V": 0.0, + "T": 326.0 }, { - "V": 4545.67, - "T": 355.0 + "V": 0.0, + "T": 331.0 }, { - "V": 4601.2, - "T": 360.0 + "V": 0.0, + "T": 336.0 }, { - "V": 4656.61, - "T": 365.0 + "V": 0.0, + "T": 341.0 }, { - "V": 4712.59, - "T": 370.0 + "V": 192.0, + "T": 346.0 }, { - "V": 4768.62, - "T": 375.0 + "V": 0.0, + "T": 351.0 }, { - "V": 4824.46, - "T": 380.0 + "V": 0.0, + "T": 356.0 }, { - "V": 4879.82, - "T": 385.0 + "V": 0.0, + "T": 361.0 }, { - "V": 4935.48, - "T": 390.0 + "V": 0.0, + "T": 366.0 }, { - "V": 4990.2, - "T": 395.0 + "V": 0.0, + "T": 371.0 }, { - "V": 5045.19, - "T": 400.0 + "V": 0.0, + "T": 376.0 }, { - "V": 5100.41, - "T": 405.0 + "V": 0.0, + "T": 381.0 }, { - "V": 5156.33, - "T": 410.0 + "V": 0.0, + "T": 386.0 }, { - "V": 5210.53, - "T": 415.0 + "V": 0.0, + "T": 391.0 }, { - "V": 5265.09, - "T": 420.0 + "V": 0.0, + "T": 396.0 }, { - "V": 5319.96, - "T": 425.0 + "V": 0.0, + "T": 401.0 }, { - "V": 5375.27, - "T": 430.0 + "V": 0.0, + "T": 406.0 }, { - "V": 5430.37, - "T": 435.0 + "V": 0.0, + "T": 411.0 }, { - "V": 5484.62, - "T": 440.0 + "V": 0.0, + "T": 416.0 }, { - "V": 5541.24, - "T": 445.0 + "V": 0.0, + "T": 421.0 }, { - "V": 5596.61, - "T": 450.0 + "V": 0.0, + "T": 426.0 }, { - "V": 5651.66, - "T": 455.0 + "V": 0.0, + "T": 431.0 }, { - "V": 5707.84, - "T": 460.0 + "V": 192.0, + "T": 436.0 }, { - "V": 5763.84, - "T": 465.0 + "V": 0.0, + "T": 441.0 }, { - "V": 5820.27, - "T": 470.0 + "V": 0.0, + "T": 446.0 }, { - "V": 5876.26, - "T": 475.0 + "V": 0.0, + "T": 451.0 }, { - "V": 5931.62, - "T": 480.0 + "V": 0.0, + "T": 456.0 }, { - "V": 5988.19, - "T": 485.0 + "V": 0.0, + "T": 461.0 }, { - "V": 6043.93, - "T": 490.0 + "V": 0.0, + "T": 466.0 }, { - "V": 6100.11, - "T": 495.0 + "V": 0.0, + "T": 471.0 }, { - "V": 6155.29, - "T": 500.0 + "V": 0.0, + "T": 476.0 }, { - "V": 6210.47, - "T": 505.0 + "V": 0.0, + "T": 481.0 }, { - "V": 6265.34, - "T": 510.0 + "V": 0.0, + "T": 486.0 }, { - "V": 6320.33, - "T": 515.0 + "V": 0.0, + "T": 491.0 }, { - "V": 6375.88, - "T": 520.0 + "V": 0.0, + "T": 496.0 }, { - "V": 6431.95, - "T": 525.0 + "V": 0.0, + "T": 501.0 }, { - "V": 6486.66, - "T": 530.0 + "V": 0.0, + "T": 506.0 }, { - "V": 6542.11, - "T": 535.0 + "V": 0.0, + "T": 511.0 }, { - "V": 6597.48, - "T": 540.0 + "V": 0.0, + "T": 516.0 }, { - "V": 6653.02, - "T": 545.0 + "V": 0.0, + "T": 521.0 }, { - "V": 6708.53, - "T": 550.0 + "V": 0.0, + "T": 526.0 }, { - "V": 6763.64, - "T": 555.0 + "V": 0.0, + "T": 531.0 }, { - "V": 6820.07, - "T": 560.0 + "V": 0.0, + "T": 536.0 }, { - "V": 6875.32, - "T": 565.0 + "V": 0.0, + "T": 541.0 }, { - "V": 6931.0, - "T": 570.0 + "V": 0.0, + "T": 546.0 }, { - "V": 6987.24, - "T": 575.0 + "V": 0.0, + "T": 551.0 }, { - "V": 7043.48, - "T": 580.0 + "V": 0.0, + "T": 556.0 }, { - "V": 7099.6, - "T": 585.0 + "V": 0.0, + "T": 561.0 }, { - "V": 7155.03, - "T": 590.0 + "V": 0.0, + "T": 566.0 }, { - "V": 7210.58, - "T": 595.0 + "V": 0.0, + "T": 571.0 }, { - "V": 7266.8, - "T": 600.0 + "V": 0.0, + "T": 576.0 }, { - "V": 7322.92, - "T": 605.0 + "V": 0.0, + "T": 581.0 }, { - "V": 7378.66, - "T": 610.0 + "V": 0.0, + "T": 586.0 }, { - "V": 7433.97, - "T": 615.0 + "V": 0.0, + "T": 591.0 }, { - "V": 7488.9, - "T": 620.0 + "V": 0.0, + "T": 596.0 }, { - "V": 7544.14, - "T": 625.0 + "V": 0.0, + "T": 601.0 }, { - "V": 7599.47, - "T": 630.0 + "V": 0.0, + "T": 606.0 }, { - "V": 7655.24, - "T": 635.0 + "V": 0.0, + "T": 611.0 }, { - "V": 7710.52, - "T": 640.0 + "V": 0.0, + "T": 616.0 }, { - "V": 7765.67, - "T": 645.0 + "V": 128.0, + "T": 621.0 }, { - "V": 7820.98, - "T": 650.0 + "V": 0.0, + "T": 626.0 }, { - "V": 7877.0, - "T": 655.0 + "V": 0.0, + "T": 631.0 }, { - "V": 7932.71, - "T": 660.0 + "V": 0.0, + "T": 636.0 }, { - "V": 7987.52, - "T": 665.0 + "V": 0.0, + "T": 641.0 }, { - "V": 8040.27, - "T": 670.0 + "V": 0.0, + "T": 646.0 } ], - "AllocRateMB": [ + "OpsPerSec": null, + "Gen0PerSec": [ { "V": 0.0, "T": 1.0 @@ -76369,7 +77766,7 @@ "T": 61.0 }, { - "V": 256.0, + "V": 0.0, "T": 66.0 }, { @@ -76461,7 +77858,7 @@ "T": 176.0 }, { - "V": 192.0, + "V": 0.0, "T": 181.0 }, { @@ -76517,7 +77914,7 @@ "T": 246.0 }, { - "V": 64.0, + "V": 0.0, "T": 251.0 }, { @@ -76553,7 +77950,7 @@ "T": 291.0 }, { - "V": 128.0, + "V": 0.0, "T": 296.0 }, { @@ -76609,7 +78006,7 @@ "T": 361.0 }, { - "V": 192.0, + "V": 0.0, "T": 366.0 }, { @@ -76645,7 +78042,7 @@ "T": 406.0 }, { - "V": 64.0, + "V": 0.0, "T": 411.0 }, { @@ -76665,7 +78062,7 @@ "T": 431.0 }, { - "V": 64.0, + "V": 0.0, "T": 436.0 }, { @@ -76701,7 +78098,7 @@ "T": 476.0 }, { - "V": 192.0, + "V": 0.0, "T": 481.0 }, { @@ -76757,7 +78154,7 @@ "T": 546.0 }, { - "V": 64.0, + "V": 0.0, "T": 551.0 }, { @@ -76793,7 +78190,7 @@ "T": 591.0 }, { - "V": 128.0, + "V": 0.0, "T": 596.0 }, { @@ -76813,7 +78210,7 @@ "T": 616.0 }, { - "V": 64.0, + "V": 0.0, "T": 621.0 }, { @@ -76835,93 +78232,156 @@ { "V": 0.0, "T": 646.0 - }, + } + ] + } + }, + { + "ScenarioId": "gcperfsim-cache", + "ScenarioName": "GCPerfSim: cache / large-object-heavy workload", + "GcModeId": "workstation", + "GcModeName": "Workstation GC", + "DurationSeconds": 596.1648982, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 9.103526974160793, + "TotalAllocatedBytes": 5690835056.0, + "Gen0Collections": 359, + "Gen1Collections": 134, + "Gen2Collections": 12, + "WorkingSetBytes": 1149558784.0, + "PeakWorkingSetBytes": 1149558784.0, + "HeapSizeBytes": 998493264.0, + "TotalCommittedBytes": 1107705856.0, + "GcName": "Workstation GC", + "TagbUsed": 5.3 + }, + "PauseTimePctStats": { + "Avg": 0.11952057335581784, + "P50": 0.14650000000000218, + "P90": 0.3502000000000005, + "P99": 0.4343999999999987, + "Max": 0.4749000000000003, + "Min": 0.0, + "Count": 593 + }, + "PauseTimeMsStats": { + "Avg": 1.1952057335581785, + "P50": 1.4650000000000218, + "P90": 3.502000000000005, + "P99": 4.343999999999987, + "Max": 4.749000000000003, + "Min": 0.0, + "Count": 593 + }, + "WorkingSetStats": { + "Avg": 865903054.006734, + "P50": 921845760.0, + "P90": 1105965056.0, + "P99": 1137049600.0, + "Max": 1149558784.0, + "Min": 404971520.0, + "Count": 594 + }, + "AllocRateMBStats": { + "Avg": 8.715903348102538, + "P50": 8.658790588378906, + "P90": 9.420021057128906, + "P99": 9.982276916503906, + "Max": 10.575729370117188, + "Min": 6.7716217041015625, + "Count": 593 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ { - "V": 0.0, - "T": 651.0 + "V": 0.3419, + "T": 1.0 }, { "V": 0.0, - "T": 656.0 + "T": 5.0 }, { "V": 0.0, - "T": 661.0 + "T": 9.0 }, { - "V": 128.0, - "T": 666.0 + "V": 0.1407, + "T": 13.0 }, { - "V": 0.0, - "T": 671.0 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ - { - "V": 0.0, - "T": 1.0 + "V": 0.1666, + "T": 17.0 }, { - "V": 0.0, - "T": 6.0 + "V": 0.1287, + "T": 21.0 }, { "V": 0.0, - "T": 11.0 + "T": 25.0 }, { "V": 0.0, - "T": 16.0 + "T": 29.0 }, { - "V": 0.0, - "T": 21.0 + "V": 0.1482, + "T": 33.0 }, { - "V": 0.0, - "T": 26.0 + "V": 0.135, + "T": 37.0 }, { "V": 0.0, - "T": 31.0 + "T": 41.0 }, { "V": 0.0, - "T": 36.0 + "T": 45.0 }, { "V": 0.0, - "T": 41.0 + "T": 49.0 }, { - "V": 0.0, - "T": 46.0 + "V": 0.3145, + "T": 53.0 }, { - "V": 0.0, - "T": 51.0 + "V": 0.1301, + "T": 57.0 }, { "V": 0.0, - "T": 56.0 + "T": 61.0 }, { "V": 0.0, - "T": 61.0 + "T": 65.0 }, { "V": 0.0, - "T": 66.0 + "T": 69.0 }, { - "V": 0.0, - "T": 71.0 + "V": 0.1351, + "T": 73.0 }, { - "V": 0.0, - "T": 76.0 + "V": 0.3231, + "T": 77.0 }, { "V": 0.0, @@ -76929,15 +78389,19 @@ }, { "V": 0.0, - "T": 86.0 + "T": 85.0 }, { - "V": 0.0, - "T": 91.0 + "V": 0.1454, + "T": 89.0 + }, + { + "V": 0.1458, + "T": 93.0 }, { "V": 0.0, - "T": 96.0 + "T": 97.0 }, { "V": 0.0, @@ -76945,15 +78409,19 @@ }, { "V": 0.0, - "T": 106.0 + "T": 105.0 }, { - "V": 0.0, - "T": 111.0 + "V": 0.3866, + "T": 109.0 }, { - "V": 0.0, - "T": 116.0 + "V": 0.146, + "T": 113.0 + }, + { + "V": 0.3891, + "T": 117.0 }, { "V": 0.0, @@ -76961,31 +78429,39 @@ }, { "V": 0.0, - "T": 126.0 + "T": 125.0 }, { - "V": 0.0, - "T": 131.0 + "V": 0.1508, + "T": 129.0 + }, + { + "V": 0.1913, + "T": 133.0 }, { "V": 0.0, - "T": 136.0 + "T": 137.0 }, { "V": 0.0, "T": 141.0 }, { - "V": 0.0, - "T": 146.0 + "V": 0.1585, + "T": 145.0 }, { - "V": 0.0, - "T": 151.0 + "V": 0.3539, + "T": 149.0 + }, + { + "V": 0.1521, + "T": 153.0 }, { "V": 0.0, - "T": 156.0 + "T": 157.0 }, { "V": 0.0, @@ -76993,15 +78469,19 @@ }, { "V": 0.0, - "T": 166.0 + "T": 165.0 }, { - "V": 0.0, - "T": 171.0 + "V": 0.159, + "T": 169.0 + }, + { + "V": 0.1663, + "T": 173.0 }, { "V": 0.0, - "T": 176.0 + "T": 177.0 }, { "V": 0.0, @@ -77009,15 +78489,19 @@ }, { "V": 0.0, - "T": 186.0 + "T": 185.0 }, { - "V": 0.0, - "T": 191.0 + "V": 0.3555, + "T": 189.0 }, { - "V": 0.0, - "T": 196.0 + "V": 0.2213, + "T": 193.0 + }, + { + "V": 0.3476, + "T": 197.0 }, { "V": 0.0, @@ -77025,452 +78509,400 @@ }, { "V": 0.0, - "T": 206.0 + "T": 205.0 }, { - "V": 0.0, - "T": 211.0 + "V": 0.1723, + "T": 209.0 + }, + { + "V": 0.1569, + "T": 213.0 }, { "V": 0.0, - "T": 216.0 + "T": 217.0 }, { "V": 0.0, "T": 221.0 }, { - "V": 0.0, - "T": 226.0 + "V": 0.3837, + "T": 225.0 }, { - "V": 0.0, - "T": 231.0 + "V": 0.1698, + "T": 229.0 + }, + { + "V": 0.4431, + "T": 233.0 }, { "V": 0.0, - "T": 236.0 + "T": 237.0 }, { "V": 0.0, "T": 241.0 }, { - "V": 0.0, - "T": 246.0 + "V": 0.172, + "T": 245.0 }, { - "V": 0.0, - "T": 251.0 + "V": 0.4416, + "T": 249.0 + }, + { + "V": 0.1674, + "T": 253.0 }, { "V": 0.0, - "T": 256.0 + "T": 257.0 }, { "V": 0.0, "T": 261.0 }, { - "V": 0.0, - "T": 266.0 + "V": 0.1634, + "T": 265.0 }, { - "V": 0.0, - "T": 271.0 + "V": 0.1785, + "T": 269.0 + }, + { + "V": 0.241, + "T": 273.0 }, { "V": 0.0, - "T": 276.0 + "T": 277.0 }, { "V": 0.0, "T": 281.0 }, { - "V": 0.0, - "T": 286.0 + "V": 0.2008, + "T": 285.0 }, { - "V": 0.0, - "T": 291.0 + "V": 0.1705, + "T": 289.0 }, { - "V": 0.0, - "T": 296.0 + "V": 0.186, + "T": 293.0 }, { "V": 0.0, - "T": 301.0 + "T": 297.0 }, { "V": 0.0, - "T": 306.0 + "T": 301.0 }, { - "V": 0.0, - "T": 311.0 + "V": 0.1677, + "T": 305.0 }, { - "V": 0.0, - "T": 316.0 + "V": 0.3965, + "T": 309.0 }, { - "V": 0.0, - "T": 321.0 + "V": 0.1607, + "T": 313.0 }, { "V": 0.0, - "T": 326.0 + "T": 317.0 }, { "V": 0.0, - "T": 331.0 + "T": 321.0 }, { - "V": 0.0, - "T": 336.0 + "V": 0.1546, + "T": 325.0 }, { - "V": 0.0, - "T": 341.0 + "V": 0.1722, + "T": 329.0 }, { - "V": 0.0, - "T": 346.0 + "V": 0.2285, + "T": 333.0 }, { "V": 0.0, - "T": 351.0 + "T": 337.0 }, { "V": 0.0, - "T": 356.0 + "T": 341.0 }, { - "V": 0.0, - "T": 361.0 + "V": 0.2961, + "T": 345.0 }, { - "V": 0.0, - "T": 366.0 + "V": 0.1591, + "T": 349.0 }, { "V": 0.0, - "T": 371.0 + "T": 353.0 }, { "V": 0.0, - "T": 376.0 + "T": 357.0 }, { "V": 0.0, - "T": 381.0 + "T": 361.0 }, { - "V": 0.0, - "T": 386.0 + "V": 0.1518, + "T": 365.0 }, { - "V": 0.0, - "T": 391.0 + "V": 0.1562, + "T": 369.0 }, { - "V": 0.0, - "T": 396.0 + "V": 0.1973, + "T": 373.0 }, { "V": 0.0, - "T": 401.0 + "T": 377.0 }, { "V": 0.0, - "T": 406.0 + "T": 381.0 }, { - "V": 0.0, - "T": 411.0 + "V": 0.1522, + "T": 385.0 }, { - "V": 0.0, - "T": 416.0 + "V": 0.1546, + "T": 389.0 }, { - "V": 0.0, - "T": 421.0 + "V": 0.1513, + "T": 393.0 }, { "V": 0.0, - "T": 426.0 + "T": 397.0 }, { "V": 0.0, - "T": 431.0 + "T": 401.0 }, { - "V": 0.0, - "T": 436.0 + "V": 0.1997, + "T": 405.0 }, { - "V": 0.0, - "T": 441.0 + "V": 0.1533, + "T": 409.0 }, { "V": 0.0, - "T": 446.0 + "T": 413.0 }, { "V": 0.0, - "T": 451.0 + "T": 417.0 }, { "V": 0.0, - "T": 456.0 + "T": 421.0 }, { - "V": 0.0, - "T": 461.0 + "V": 0.1565, + "T": 425.0 }, { - "V": 0.0, - "T": 466.0 + "V": 0.1602, + "T": 429.0 }, { "V": 0.0, - "T": 471.0 + "T": 433.0 }, { "V": 0.0, - "T": 476.0 + "T": 437.0 }, { "V": 0.0, - "T": 481.0 + "T": 441.0 }, { - "V": 0.0, - "T": 486.0 + "V": 0.1915, + "T": 445.0 }, { - "V": 0.0, - "T": 491.0 + "V": 0.1563, + "T": 449.0 }, { - "V": 0.0, - "T": 496.0 + "V": 0.3757, + "T": 453.0 }, { "V": 0.0, - "T": 501.0 + "T": 457.0 }, { "V": 0.0, - "T": 506.0 + "T": 461.0 }, { - "V": 0.0, - "T": 511.0 + "V": 0.3486, + "T": 465.0 }, { - "V": 0.0, - "T": 516.0 + "V": 0.1599, + "T": 469.0 }, { "V": 0.0, - "T": 521.0 + "T": 473.0 }, { "V": 0.0, - "T": 526.0 + "T": 477.0 }, { - "V": 0.0, - "T": 531.0 + "V": 0.162, + "T": 481.0 }, { - "V": 0.0, - "T": 536.0 + "V": 0.394, + "T": 485.0 }, { - "V": 0.0, - "T": 541.0 + "V": 0.155, + "T": 489.0 }, { "V": 0.0, - "T": 546.0 + "T": 493.0 }, { "V": 0.0, - "T": 551.0 + "T": 497.0 }, { - "V": 0.0, - "T": 556.0 + "V": 0.1662, + "T": 501.0 }, { - "V": 0.0, - "T": 561.0 + "V": 0.166, + "T": 505.0 }, { - "V": 0.0, - "T": 566.0 + "V": 0.1559, + "T": 509.0 }, { "V": 0.0, - "T": 571.0 + "T": 513.0 }, { "V": 0.0, - "T": 576.0 + "T": 517.0 }, { - "V": 0.0, - "T": 581.0 + "V": 0.4112, + "T": 521.0 }, { - "V": 0.0, - "T": 586.0 + "V": 0.2485, + "T": 525.0 }, { - "V": 0.0, - "T": 591.0 + "V": 0.1759, + "T": 529.0 }, { "V": 0.0, - "T": 596.0 + "T": 533.0 }, { "V": 0.0, - "T": 601.0 + "T": 537.0 }, { - "V": 0.0, - "T": 606.0 + "V": 0.1728, + "T": 541.0 }, { - "V": 0.0, - "T": 611.0 + "V": 0.1736, + "T": 545.0 }, { - "V": 0.0, - "T": 616.0 + "V": 0.1979, + "T": 549.0 }, { "V": 0.0, - "T": 621.0 + "T": 553.0 }, { "V": 0.0, - "T": 626.0 + "T": 557.0 }, { - "V": 0.0, - "T": 631.0 + "V": 0.1768, + "T": 561.0 }, { - "V": 0.0, - "T": 636.0 + "V": 0.1614, + "T": 565.0 }, { - "V": 0.0, - "T": 641.0 + "V": 0.1828, + "T": 569.0 }, { "V": 0.0, - "T": 646.0 + "T": 573.0 }, { "V": 0.0, - "T": 651.0 + "T": 577.0 }, { "V": 0.0, - "T": 656.0 + "T": 581.0 }, { - "V": 0.0, - "T": 661.0 + "V": 0.2756, + "T": 585.0 }, { - "V": 0.0, - "T": 666.0 + "V": 0.3826, + "T": 589.0 }, { "V": 0.0, - "T": 671.0 + "T": 593.0 } - ] - } - }, - { - "ScenarioId": "gcperfsim-cache", - "ScenarioName": "GCPerfSim: cache / large-object-heavy workload", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 601.0550611, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 9.029460997931066, - "TotalAllocatedBytes": 5690835056.0, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 5942902784.0, - "PeakWorkingSetBytes": 5942902784.0, - "HeapSizeBytes": 6710886400.0, - "TotalCommittedBytes": 6710886400.0, - "GcName": "ZeroGC", - "TagbUsed": 5.3 - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 598 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 598 - }, - "WorkingSetStats": { - "Avg": 3175654832.5075126, - "P50": 3175104512.0, - "P90": 5400920064.0, - "P99": 5896589312.0, - "Max": 5942902784.0, - "Min": 397508608.0, - "Count": 599 - }, - "AllocRateMBStats": { - "Avg": 9.096781025762143, - "P50": 0.0, - "P90": 0.0, - "P99": 128.0, - "Max": 128.0, - "Min": 0.0, - "Count": 598 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ + ], + "PauseTimeMs": [ { - "V": 0.0, + "V": 3.419, "T": 1.0 }, { @@ -77482,15 +78914,15 @@ "T": 9.0 }, { - "V": 0.0, + "V": 1.407, "T": 13.0 }, { - "V": 0.0, + "V": 1.666, "T": 17.0 }, { - "V": 0.0, + "V": 1.287, "T": 21.0 }, { @@ -77502,11 +78934,11 @@ "T": 29.0 }, { - "V": 0.0, + "V": 1.482, "T": 33.0 }, { - "V": 0.0, + "V": 1.35, "T": 37.0 }, { @@ -77522,11 +78954,11 @@ "T": 49.0 }, { - "V": 0.0, + "V": 3.145, "T": 53.0 }, { - "V": 0.0, + "V": 1.301, "T": 57.0 }, { @@ -77542,11 +78974,11 @@ "T": 69.0 }, { - "V": 0.0, + "V": 1.351, "T": 73.0 }, { - "V": 0.0, + "V": 3.231, "T": 77.0 }, { @@ -77558,11 +78990,11 @@ "T": 85.0 }, { - "V": 0.0, + "V": 1.454, "T": 89.0 }, { - "V": 0.0, + "V": 1.458, "T": 93.0 }, { @@ -77578,15 +79010,15 @@ "T": 105.0 }, { - "V": 0.0, + "V": 3.866, "T": 109.0 }, { - "V": 0.0, + "V": 1.46, "T": 113.0 }, { - "V": 0.0, + "V": 3.891, "T": 117.0 }, { @@ -77598,11 +79030,11 @@ "T": 125.0 }, { - "V": 0.0, + "V": 1.508, "T": 129.0 }, { - "V": 0.0, + "V": 1.913, "T": 133.0 }, { @@ -77614,15 +79046,15 @@ "T": 141.0 }, { - "V": 0.0, + "V": 1.585, "T": 145.0 }, { - "V": 0.0, + "V": 3.539, "T": 149.0 }, { - "V": 0.0, + "V": 1.521, "T": 153.0 }, { @@ -77638,11 +79070,11 @@ "T": 165.0 }, { - "V": 0.0, + "V": 1.59, "T": 169.0 }, { - "V": 0.0, + "V": 1.663, "T": 173.0 }, { @@ -77658,15 +79090,15 @@ "T": 185.0 }, { - "V": 0.0, + "V": 3.555, "T": 189.0 }, { - "V": 0.0, + "V": 2.213, "T": 193.0 }, { - "V": 0.0, + "V": 3.476, "T": 197.0 }, { @@ -77678,11 +79110,11 @@ "T": 205.0 }, { - "V": 0.0, + "V": 1.723, "T": 209.0 }, { - "V": 0.0, + "V": 1.569, "T": 213.0 }, { @@ -77694,15 +79126,15 @@ "T": 221.0 }, { - "V": 0.0, + "V": 3.837, "T": 225.0 }, { - "V": 0.0, + "V": 1.698, "T": 229.0 }, { - "V": 0.0, + "V": 4.431, "T": 233.0 }, { @@ -77714,15 +79146,15 @@ "T": 241.0 }, { - "V": 0.0, + "V": 1.72, "T": 245.0 }, { - "V": 0.0, + "V": 4.416, "T": 249.0 }, { - "V": 0.0, + "V": 1.674, "T": 253.0 }, { @@ -77734,15 +79166,15 @@ "T": 261.0 }, { - "V": 0.0, + "V": 1.634, "T": 265.0 }, { - "V": 0.0, + "V": 1.785, "T": 269.0 }, { - "V": 0.0, + "V": 2.41, "T": 273.0 }, { @@ -77754,15 +79186,15 @@ "T": 281.0 }, { - "V": 0.0, + "V": 2.008, "T": 285.0 }, { - "V": 0.0, + "V": 1.705, "T": 289.0 }, { - "V": 0.0, + "V": 1.86, "T": 293.0 }, { @@ -77774,15 +79206,15 @@ "T": 301.0 }, { - "V": 0.0, + "V": 1.677, "T": 305.0 }, { - "V": 0.0, + "V": 3.965, "T": 309.0 }, { - "V": 0.0, + "V": 1.607, "T": 313.0 }, { @@ -77794,15 +79226,15 @@ "T": 321.0 }, { - "V": 0.0, + "V": 1.546, "T": 325.0 }, { - "V": 0.0, + "V": 1.722, "T": 329.0 }, { - "V": 0.0, + "V": 2.285, "T": 333.0 }, { @@ -77814,11 +79246,11 @@ "T": 341.0 }, { - "V": 0.0, + "V": 2.961, "T": 345.0 }, { - "V": 0.0, + "V": 1.591, "T": 349.0 }, { @@ -77834,15 +79266,15 @@ "T": 361.0 }, { - "V": 0.0, + "V": 1.518, "T": 365.0 }, { - "V": 0.0, + "V": 1.562, "T": 369.0 }, { - "V": 0.0, + "V": 1.973, "T": 373.0 }, { @@ -77854,15 +79286,15 @@ "T": 381.0 }, { - "V": 0.0, + "V": 1.522, "T": 385.0 }, { - "V": 0.0, + "V": 1.546, "T": 389.0 }, { - "V": 0.0, + "V": 1.513, "T": 393.0 }, { @@ -77874,11 +79306,11 @@ "T": 401.0 }, { - "V": 0.0, + "V": 1.997, "T": 405.0 }, { - "V": 0.0, + "V": 1.533, "T": 409.0 }, { @@ -77894,11 +79326,11 @@ "T": 421.0 }, { - "V": 0.0, + "V": 1.565, "T": 425.0 }, { - "V": 0.0, + "V": 1.602, "T": 429.0 }, { @@ -77914,15 +79346,15 @@ "T": 441.0 }, { - "V": 0.0, + "V": 1.915, "T": 445.0 }, { - "V": 0.0, + "V": 1.563, "T": 449.0 }, { - "V": 0.0, + "V": 3.757, "T": 453.0 }, { @@ -77934,11 +79366,11 @@ "T": 461.0 }, { - "V": 0.0, + "V": 3.486, "T": 465.0 }, { - "V": 0.0, + "V": 1.599, "T": 469.0 }, { @@ -77950,15 +79382,15 @@ "T": 477.0 }, { - "V": 0.0, + "V": 1.62, "T": 481.0 }, { - "V": 0.0, + "V": 3.94, "T": 485.0 }, { - "V": 0.0, + "V": 1.55, "T": 489.0 }, { @@ -77970,15 +79402,15 @@ "T": 497.0 }, { - "V": 0.0, + "V": 1.662, "T": 501.0 }, { - "V": 0.0, + "V": 1.66, "T": 505.0 }, { - "V": 0.0, + "V": 1.559, "T": 509.0 }, { @@ -77990,15 +79422,15 @@ "T": 517.0 }, { - "V": 0.0, + "V": 4.112, "T": 521.0 }, { - "V": 0.0, + "V": 2.485, "T": 525.0 }, { - "V": 0.0, + "V": 1.759, "T": 529.0 }, { @@ -78010,15 +79442,15 @@ "T": 537.0 }, { - "V": 0.0, + "V": 1.728, "T": 541.0 }, { - "V": 0.0, + "V": 1.736, "T": 545.0 }, { - "V": 0.0, + "V": 1.979, "T": 549.0 }, { @@ -78030,15 +79462,15 @@ "T": 557.0 }, { - "V": 0.0, + "V": 1.768, "T": 561.0 }, { - "V": 0.0, + "V": 1.614, "T": 565.0 }, { - "V": 0.0, + "V": 1.828, "T": 569.0 }, { @@ -78054,1233 +79486,1222 @@ "T": 581.0 }, { - "V": 0.0, + "V": 2.756, "T": 585.0 }, { - "V": 0.0, + "V": 3.826, "T": 589.0 }, { "V": 0.0, "T": 593.0 - }, - { - "V": 0.0, - "T": 597.0 } ], - "PauseTimeMs": [ - { - "V": 0.0, - "T": 1.0 - }, + "WorkingSetMB": [ { - "V": 0.0, - "T": 5.0 + "V": 386.21, + "T": 0.0 }, { - "V": 0.0, - "T": 9.0 + "V": 396.95, + "T": 4.0 }, { - "V": 0.0, - "T": 13.0 + "V": 405.12, + "T": 8.0 }, { - "V": 0.0, - "T": 17.0 + "V": 407.96, + "T": 12.0 }, { - "V": 0.0, - "T": 21.0 + "V": 424.63, + "T": 16.0 }, { - "V": 0.0, - "T": 25.0 + "V": 431.19, + "T": 20.0 }, { - "V": 0.0, - "T": 29.0 + "V": 440.0, + "T": 24.0 }, { - "V": 0.0, - "T": 33.0 + "V": 447.73, + "T": 28.0 }, { - "V": 0.0, - "T": 37.0 + "V": 454.21, + "T": 32.0 }, { - "V": 0.0, - "T": 41.0 + "V": 462.45, + "T": 36.0 }, { - "V": 0.0, - "T": 45.0 + "V": 474.3, + "T": 40.0 }, { - "V": 0.0, - "T": 49.0 + "V": 483.31, + "T": 44.0 }, { - "V": 0.0, - "T": 53.0 + "V": 486.04, + "T": 48.0 }, { - "V": 0.0, - "T": 57.0 + "V": 497.58, + "T": 52.0 }, { - "V": 0.0, - "T": 61.0 + "V": 504.41, + "T": 56.0 }, { - "V": 0.0, - "T": 65.0 + "V": 512.21, + "T": 60.0 }, { - "V": 0.0, - "T": 69.0 + "V": 515.28, + "T": 64.0 }, { - "V": 0.0, - "T": 73.0 + "V": 522.11, + "T": 68.0 }, { - "V": 0.0, - "T": 77.0 + "V": 532.94, + "T": 72.0 }, { - "V": 0.0, - "T": 81.0 + "V": 540.28, + "T": 76.0 }, { - "V": 0.0, - "T": 85.0 + "V": 550.49, + "T": 80.0 }, { - "V": 0.0, - "T": 89.0 + "V": 559.1, + "T": 84.0 }, { - "V": 0.0, - "T": 93.0 + "V": 562.5, + "T": 88.0 }, { - "V": 0.0, - "T": 97.0 + "V": 570.45, + "T": 92.0 }, { - "V": 0.0, - "T": 101.0 + "V": 574.48, + "T": 96.0 }, { - "V": 0.0, - "T": 105.0 + "V": 578.55, + "T": 100.0 }, { - "V": 0.0, - "T": 109.0 + "V": 582.54, + "T": 104.0 }, { - "V": 0.0, - "T": 113.0 + "V": 586.55, + "T": 108.0 }, { - "V": 0.0, - "T": 117.0 + "V": 590.57, + "T": 112.0 }, { - "V": 0.0, - "T": 121.0 + "V": 598.51, + "T": 116.0 }, { - "V": 0.0, - "T": 125.0 + "V": 606.61, + "T": 120.0 }, { - "V": 0.0, - "T": 129.0 + "V": 606.69, + "T": 124.0 }, { - "V": 0.0, - "T": 133.0 + "V": 614.71, + "T": 128.0 }, { - "V": 0.0, - "T": 137.0 + "V": 615.78, + "T": 132.0 }, { - "V": 0.0, - "T": 141.0 + "V": 622.78, + "T": 136.0 }, { - "V": 0.0, - "T": 145.0 + "V": 626.84, + "T": 140.0 }, { - "V": 0.0, - "T": 149.0 + "V": 630.85, + "T": 144.0 }, { - "V": 0.0, - "T": 153.0 + "V": 638.87, + "T": 148.0 }, { - "V": 0.0, - "T": 157.0 + "V": 640.89, + "T": 152.0 }, { - "V": 0.0, - "T": 161.0 + "V": 646.96, + "T": 156.0 }, { - "V": 0.0, - "T": 165.0 + "V": 655.92, + "T": 160.0 }, { - "V": 0.0, - "T": 169.0 + "V": 659.16, + "T": 164.0 }, { - "V": 0.0, - "T": 173.0 + "V": 667.31, + "T": 168.0 }, { - "V": 0.0, - "T": 177.0 + "V": 676.68, + "T": 172.0 }, { - "V": 0.0, - "T": 181.0 + "V": 687.95, + "T": 176.0 }, { - "V": 0.0, - "T": 185.0 + "V": 696.85, + "T": 180.0 }, { - "V": 0.0, - "T": 189.0 + "V": 699.86, + "T": 184.0 }, { - "V": 0.0, - "T": 193.0 + "V": 708.18, + "T": 188.0 }, { - "V": 0.0, - "T": 197.0 + "V": 717.86, + "T": 192.0 }, { - "V": 0.0, - "T": 201.0 + "V": 725.42, + "T": 196.0 }, { - "V": 0.0, - "T": 205.0 + "V": 735.57, + "T": 200.0 }, { - "V": 0.0, - "T": 209.0 + "V": 743.0, + "T": 204.0 }, { - "V": 0.0, - "T": 213.0 + "V": 749.32, + "T": 208.0 }, { - "V": 0.0, - "T": 217.0 + "V": 753.86, + "T": 212.0 }, { - "V": 0.0, - "T": 221.0 + "V": 765.59, + "T": 216.0 }, { - "V": 0.0, - "T": 225.0 + "V": 774.19, + "T": 220.0 }, { - "V": 0.0, - "T": 229.0 + "V": 777.88, + "T": 224.0 }, { - "V": 0.0, - "T": 233.0 + "V": 788.68, + "T": 228.0 }, { - "V": 0.0, - "T": 237.0 + "V": 802.02, + "T": 232.0 }, { - "V": 0.0, - "T": 241.0 + "V": 806.06, + "T": 236.0 }, { - "V": 0.0, - "T": 245.0 + "V": 812.98, + "T": 240.0 }, { - "V": 0.0, - "T": 249.0 + "V": 821.61, + "T": 244.0 }, { - "V": 0.0, - "T": 253.0 + "V": 828.13, + "T": 248.0 }, { - "V": 0.0, - "T": 257.0 + "V": 842.47, + "T": 252.0 }, { - "V": 0.0, - "T": 261.0 + "V": 849.48, + "T": 256.0 }, { - "V": 0.0, - "T": 265.0 + "V": 854.31, + "T": 260.0 }, { - "V": 0.0, - "T": 269.0 + "V": 866.09, + "T": 264.0 }, { - "V": 0.0, - "T": 273.0 + "V": 873.65, + "T": 268.0 }, { - "V": 0.0, - "T": 277.0 + "V": 880.94, + "T": 272.0 }, { - "V": 0.0, - "T": 281.0 + "V": 857.35, + "T": 276.0 }, { - "V": 0.0, - "T": 285.0 + "V": 861.38, + "T": 280.0 }, { - "V": 0.0, - "T": 289.0 + "V": 869.34, + "T": 284.0 }, { - "V": 0.0, - "T": 293.0 + "V": 869.41, + "T": 288.0 }, { - "V": 0.0, - "T": 297.0 + "V": 876.48, + "T": 292.0 }, { - "V": 0.0, - "T": 301.0 + "V": 877.43, + "T": 296.0 }, { - "V": 0.0, - "T": 305.0 + "V": 881.59, + "T": 300.0 }, { - "V": 0.0, - "T": 309.0 + "V": 885.6, + "T": 304.0 }, { - "V": 0.0, - "T": 313.0 + "V": 889.66, + "T": 308.0 }, { - "V": 0.0, - "T": 317.0 + "V": 896.14, + "T": 312.0 }, { - "V": 0.0, - "T": 321.0 + "V": 901.69, + "T": 316.0 }, { - "V": 0.0, - "T": 325.0 + "V": 901.75, + "T": 320.0 }, { - "V": 0.0, - "T": 329.0 + "V": 909.74, + "T": 324.0 }, { - "V": 0.0, - "T": 333.0 + "V": 909.8, + "T": 328.0 }, { - "V": 0.0, - "T": 337.0 + "V": 920.25, + "T": 332.0 }, { - "V": 0.0, - "T": 341.0 + "V": 925.79, + "T": 336.0 }, { - "V": 0.0, - "T": 345.0 + "V": 925.84, + "T": 340.0 }, { - "V": 0.0, - "T": 349.0 + "V": 926.92, + "T": 344.0 }, { - "V": 0.0, - "T": 353.0 + "V": 922.99, + "T": 348.0 }, { - "V": 0.0, - "T": 357.0 + "V": 927.02, + "T": 352.0 }, { - "V": 0.0, - "T": 361.0 + "V": 931.03, + "T": 356.0 }, { - "V": 0.0, - "T": 365.0 + "V": 935.05, + "T": 360.0 }, { - "V": 0.0, - "T": 369.0 + "V": 939.04, + "T": 364.0 }, { - "V": 0.0, - "T": 373.0 + "V": 943.02, + "T": 368.0 }, { - "V": 0.0, - "T": 377.0 + "V": 950.72, + "T": 372.0 }, { - "V": 0.0, - "T": 381.0 + "V": 955.08, + "T": 376.0 }, { - "V": 0.0, - "T": 385.0 + "V": 955.13, + "T": 380.0 }, { - "V": 0.0, - "T": 389.0 + "V": 963.09, + "T": 384.0 }, { - "V": 0.0, - "T": 393.0 + "V": 967.73, + "T": 388.0 }, { - "V": 0.0, - "T": 397.0 + "V": 971.18, + "T": 392.0 }, { - "V": 0.0, - "T": 401.0 + "V": 975.21, + "T": 396.0 }, { - "V": 0.0, - "T": 405.0 + "V": 979.19, + "T": 400.0 }, { - "V": 0.0, - "T": 409.0 + "V": 983.2, + "T": 404.0 }, { - "V": 0.0, - "T": 413.0 + "V": 987.21, + "T": 408.0 }, { - "V": 0.0, - "T": 417.0 + "V": 991.28, + "T": 412.0 }, { - "V": 0.0, - "T": 421.0 + "V": 983.12, + "T": 416.0 }, { - "V": 0.0, - "T": 425.0 + "V": 991.12, + "T": 420.0 }, { - "V": 0.0, - "T": 429.0 + "V": 995.12, + "T": 424.0 }, { - "V": 0.0, - "T": 433.0 + "V": 996.62, + "T": 428.0 }, { - "V": 0.0, - "T": 437.0 + "V": 1007.1, + "T": 432.0 }, { - "V": 0.0, - "T": 441.0 + "V": 1011.11, + "T": 436.0 }, { - "V": 0.0, - "T": 445.0 + "V": 1011.16, + "T": 440.0 }, { - "V": 0.0, - "T": 449.0 + "V": 1019.12, + "T": 444.0 }, { - "V": 0.0, - "T": 453.0 + "V": 1023.12, + "T": 448.0 }, { - "V": 0.0, - "T": 457.0 + "V": 1027.14, + "T": 452.0 }, { - "V": 0.0, - "T": 461.0 + "V": 1035.14, + "T": 456.0 }, { - "V": 0.0, - "T": 465.0 + "V": 1039.14, + "T": 460.0 }, { - "V": 0.0, - "T": 469.0 + "V": 1043.15, + "T": 464.0 }, { - "V": 0.0, - "T": 473.0 + "V": 1048.17, + "T": 468.0 }, { - "V": 0.0, - "T": 477.0 + "V": 1051.13, + "T": 472.0 }, { - "V": 0.0, - "T": 481.0 + "V": 1023.07, + "T": 476.0 }, { - "V": 0.0, - "T": 485.0 + "V": 1030.3, + "T": 480.0 }, { - "V": 0.0, - "T": 489.0 + "V": 1034.3, + "T": 484.0 }, { - "V": 0.0, - "T": 493.0 + "V": 1036.66, + "T": 488.0 }, { - "V": 0.0, - "T": 497.0 + "V": 1046.29, + "T": 492.0 }, { - "V": 0.0, - "T": 501.0 + "V": 1046.29, + "T": 496.0 }, { - "V": 0.0, - "T": 505.0 + "V": 1050.3, + "T": 500.0 }, { - "V": 0.0, - "T": 509.0 + "V": 1057.04, + "T": 504.0 }, { - "V": 0.0, - "T": 513.0 + "V": 1062.26, + "T": 508.0 }, { - "V": 0.0, - "T": 517.0 + "V": 1066.31, + "T": 512.0 }, { - "V": 0.0, - "T": 521.0 + "V": 1070.31, + "T": 516.0 }, { - "V": 0.0, - "T": 525.0 + "V": 1074.32, + "T": 520.0 }, { - "V": 0.0, - "T": 529.0 + "V": 1082.29, + "T": 524.0 }, { - "V": 0.0, - "T": 533.0 + "V": 1038.69, + "T": 528.0 }, { - "V": 0.0, - "T": 537.0 + "V": 1038.69, + "T": 532.0 }, { - "V": 0.0, - "T": 541.0 + "V": 1040.34, + "T": 536.0 }, { - "V": 0.0, - "T": 545.0 + "V": 1048.28, + "T": 540.0 }, { - "V": 0.0, - "T": 549.0 + "V": 1048.33, + "T": 544.0 }, { - "V": 0.0, - "T": 553.0 + "V": 1054.73, + "T": 548.0 }, { - "V": 0.0, - "T": 557.0 + "V": 1060.3, + "T": 552.0 }, { - "V": 0.0, - "T": 561.0 + "V": 1064.3, + "T": 556.0 }, { - "V": 0.0, - "T": 565.0 + "V": 1068.3, + "T": 560.0 }, { - "V": 0.0, - "T": 569.0 + "V": 1070.99, + "T": 564.0 }, { - "V": 0.0, - "T": 573.0 + "V": 1080.26, + "T": 568.0 }, { - "V": 0.0, - "T": 577.0 + "V": 1084.3, + "T": 572.0 }, { - "V": 0.0, - "T": 581.0 + "V": 1084.33, + "T": 576.0 }, { - "V": 0.0, - "T": 585.0 + "V": 1092.31, + "T": 580.0 }, { - "V": 0.0, - "T": 589.0 + "V": 1060.35, + "T": 584.0 }, { - "V": 0.0, - "T": 593.0 + "V": 1048.06, + "T": 588.0 }, { - "V": 0.0, - "T": 597.0 + "V": 1050.82, + "T": 592.0 } ], - "WorkingSetMB": [ - { - "V": 379.09, - "T": 0.0 - }, + "AllocRateMB": [ { - "V": 417.79, - "T": 4.0 + "V": 7.81, + "T": 1.0 }, { - "V": 454.04, - "T": 8.0 + "V": 8.37, + "T": 5.0 }, { - "V": 488.73, - "T": 12.0 + "V": 8.03, + "T": 9.0 }, { - "V": 524.96, - "T": 16.0 + "V": 8.94, + "T": 13.0 }, { - "V": 559.41, - "T": 20.0 + "V": 8.49, + "T": 17.0 }, { - "V": 596.55, - "T": 24.0 + "V": 8.35, + "T": 21.0 }, { - "V": 631.8, - "T": 28.0 + "V": 8.35, + "T": 25.0 }, { - "V": 666.36, - "T": 32.0 + "V": 8.48, + "T": 29.0 }, { - "V": 703.05, - "T": 36.0 + "V": 8.38, + "T": 33.0 }, { - "V": 738.79, - "T": 40.0 + "V": 8.92, + "T": 37.0 }, { - "V": 775.71, - "T": 44.0 + "V": 9.13, + "T": 41.0 }, { - "V": 810.18, - "T": 48.0 + "V": 8.34, + "T": 45.0 }, { - "V": 844.87, - "T": 52.0 + "V": 8.92, + "T": 49.0 }, { - "V": 880.09, - "T": 56.0 + "V": 8.25, + "T": 53.0 }, { - "V": 915.25, - "T": 60.0 + "V": 8.49, + "T": 57.0 }, { - "V": 950.69, - "T": 64.0 + "V": 8.35, + "T": 61.0 }, { - "V": 983.89, - "T": 68.0 + "V": 8.63, + "T": 65.0 }, { - "V": 1019.13, - "T": 72.0 + "V": 9.27, + "T": 69.0 }, { - "V": 1053.83, - "T": 76.0 + "V": 8.92, + "T": 73.0 }, { - "V": 1089.24, - "T": 80.0 + "V": 8.84, + "T": 77.0 }, { - "V": 1125.73, - "T": 84.0 + "V": 8.88, + "T": 81.0 }, { - "V": 1160.73, - "T": 88.0 + "V": 8.79, + "T": 85.0 }, { - "V": 1196.33, - "T": 92.0 + "V": 8.91, + "T": 89.0 }, { - "V": 1234.08, - "T": 96.0 + "V": 8.44, + "T": 93.0 }, { - "V": 1271.93, - "T": 100.0 + "V": 9.48, + "T": 97.0 }, { - "V": 1306.32, - "T": 104.0 + "V": 8.47, + "T": 101.0 }, { - "V": 1340.53, - "T": 108.0 + "V": 8.35, + "T": 105.0 }, { - "V": 1375.85, - "T": 112.0 + "V": 9.22, + "T": 109.0 }, { - "V": 1410.96, - "T": 116.0 + "V": 8.6, + "T": 113.0 }, { - "V": 1445.32, - "T": 120.0 + "V": 8.8, + "T": 117.0 }, { - "V": 1481.48, - "T": 124.0 + "V": 9.28, + "T": 121.0 }, { - "V": 1519.36, - "T": 128.0 + "V": 9.08, + "T": 125.0 }, { - "V": 1554.61, - "T": 132.0 + "V": 8.24, + "T": 129.0 }, { - "V": 1591.14, - "T": 136.0 + "V": 8.88, + "T": 133.0 }, { - "V": 1627.51, - "T": 140.0 + "V": 9.33, + "T": 137.0 }, { - "V": 1663.1, - "T": 144.0 + "V": 8.51, + "T": 141.0 }, { - "V": 1698.33, - "T": 148.0 + "V": 8.39, + "T": 145.0 }, { - "V": 1731.98, - "T": 152.0 + "V": 7.95, + "T": 149.0 }, { - "V": 1766.82, - "T": 156.0 + "V": 8.74, + "T": 153.0 }, { - "V": 1800.1, - "T": 160.0 + "V": 8.03, + "T": 157.0 }, { - "V": 1835.8, - "T": 164.0 + "V": 8.51, + "T": 161.0 }, { - "V": 1869.52, - "T": 168.0 + "V": 8.27, + "T": 165.0 }, { - "V": 1906.46, - "T": 172.0 + "V": 8.2, + "T": 169.0 }, { - "V": 1943.4, - "T": 176.0 + "V": 9.5, + "T": 173.0 }, { - "V": 1979.66, - "T": 180.0 + "V": 8.96, + "T": 177.0 }, { - "V": 2012.87, - "T": 184.0 + "V": 8.71, + "T": 181.0 }, { - "V": 2048.18, - "T": 188.0 + "V": 9.54, + "T": 185.0 }, { - "V": 2083.17, - "T": 192.0 + "V": 8.29, + "T": 189.0 }, { - "V": 2116.55, - "T": 196.0 + "V": 8.47, + "T": 193.0 }, { - "V": 2151.51, - "T": 200.0 + "V": 8.32, + "T": 197.0 }, { - "V": 2186.32, - "T": 204.0 + "V": 9.12, + "T": 201.0 }, { - "V": 2221.7, - "T": 208.0 + "V": 8.92, + "T": 205.0 }, { - "V": 2257.09, - "T": 212.0 + "V": 8.71, + "T": 209.0 }, { - "V": 2292.95, - "T": 216.0 + "V": 8.74, + "T": 213.0 }, { - "V": 2328.61, - "T": 220.0 + "V": 8.82, + "T": 217.0 }, { - "V": 2365.91, - "T": 224.0 + "V": 9.51, + "T": 221.0 }, { - "V": 2404.0, - "T": 228.0 + "V": 10.58, + "T": 225.0 }, { - "V": 2437.26, - "T": 232.0 + "V": 8.04, + "T": 229.0 }, { - "V": 2472.09, - "T": 236.0 + "V": 8.17, + "T": 233.0 }, { - "V": 2507.04, - "T": 240.0 + "V": 8.01, + "T": 237.0 }, { - "V": 2541.02, - "T": 244.0 + "V": 7.96, + "T": 241.0 }, { - "V": 2576.45, - "T": 248.0 + "V": 7.71, + "T": 245.0 }, { - "V": 2612.93, - "T": 252.0 + "V": 9.26, + "T": 249.0 }, { - "V": 2649.84, - "T": 256.0 + "V": 9.62, + "T": 253.0 }, { - "V": 2684.58, - "T": 260.0 + "V": 8.38, + "T": 257.0 }, { - "V": 2722.32, - "T": 264.0 + "V": 8.14, + "T": 261.0 }, { - "V": 2758.56, - "T": 268.0 + "V": 8.81, + "T": 265.0 }, { - "V": 2794.57, - "T": 272.0 + "V": 9.28, + "T": 269.0 }, { - "V": 2829.16, - "T": 276.0 + "V": 8.19, + "T": 273.0 }, { - "V": 2863.96, - "T": 280.0 + "V": 8.28, + "T": 277.0 }, { - "V": 2898.13, - "T": 284.0 + "V": 8.37, + "T": 281.0 }, { - "V": 2931.56, - "T": 288.0 + "V": 8.12, + "T": 285.0 }, { - "V": 2967.04, - "T": 292.0 + "V": 8.86, + "T": 289.0 }, { - "V": 3000.75, - "T": 296.0 + "V": 8.14, + "T": 293.0 }, { - "V": 3038.09, - "T": 300.0 + "V": 8.77, + "T": 297.0 }, { - "V": 3074.77, - "T": 304.0 + "V": 9.57, + "T": 301.0 }, { - "V": 3110.05, - "T": 308.0 + "V": 9.1, + "T": 305.0 }, { - "V": 3144.97, - "T": 312.0 + "V": 8.26, + "T": 309.0 }, { - "V": 3180.32, - "T": 316.0 + "V": 9.1, + "T": 313.0 }, { - "V": 3215.12, - "T": 320.0 + "V": 9.7, + "T": 317.0 }, { - "V": 3248.64, - "T": 324.0 + "V": 8.46, + "T": 321.0 }, { - "V": 3282.86, - "T": 328.0 + "V": 7.83, + "T": 325.0 }, { - "V": 3318.23, - "T": 332.0 + "V": 8.53, + "T": 329.0 }, { - "V": 3352.85, - "T": 336.0 + "V": 8.29, + "T": 333.0 }, { - "V": 3387.96, - "T": 340.0 + "V": 8.73, + "T": 337.0 }, { - "V": 3423.84, - "T": 344.0 + "V": 9.02, + "T": 341.0 }, { - "V": 3459.41, - "T": 348.0 + "V": 8.79, + "T": 345.0 }, { - "V": 3496.94, - "T": 352.0 + "V": 9.52, + "T": 349.0 }, { - "V": 3533.89, - "T": 356.0 + "V": 10.3, + "T": 353.0 }, { - "V": 3569.28, - "T": 360.0 + "V": 8.05, + "T": 357.0 }, { - "V": 3603.96, - "T": 364.0 + "V": 8.23, + "T": 361.0 }, { - "V": 3638.28, - "T": 368.0 + "V": 8.18, + "T": 365.0 }, { - "V": 3673.18, - "T": 372.0 + "V": 7.93, + "T": 369.0 }, { - "V": 3708.54, - "T": 376.0 + "V": 7.73, + "T": 373.0 }, { - "V": 3744.69, - "T": 380.0 + "V": 8.86, + "T": 377.0 }, { - "V": 3780.94, - "T": 384.0 + "V": 9.38, + "T": 381.0 }, { - "V": 3816.56, - "T": 388.0 + "V": 8.31, + "T": 385.0 }, { - "V": 3853.16, - "T": 392.0 + "V": 8.45, + "T": 389.0 }, { - "V": 3889.27, - "T": 396.0 + "V": 8.8, + "T": 393.0 }, { - "V": 3926.43, - "T": 400.0 + "V": 9.18, + "T": 397.0 }, { - "V": 3959.64, - "T": 404.0 + "V": 8.72, + "T": 401.0 }, { - "V": 3995.46, - "T": 408.0 + "V": 8.31, + "T": 405.0 }, { - "V": 4029.49, - "T": 412.0 + "V": 8.93, + "T": 409.0 }, { - "V": 4063.26, - "T": 416.0 + "V": 8.19, + "T": 413.0 }, { - "V": 4097.84, - "T": 420.0 + "V": 9.19, + "T": 417.0 }, { - "V": 4132.52, - "T": 424.0 + "V": 8.42, + "T": 421.0 }, { - "V": 4167.95, - "T": 428.0 + "V": 9.3, + "T": 425.0 }, { - "V": 4206.7, - "T": 432.0 + "V": 8.63, + "T": 429.0 }, { - "V": 4241.11, - "T": 436.0 + "V": 9.51, + "T": 433.0 }, { - "V": 4277.3, - "T": 440.0 + "V": 7.98, + "T": 437.0 }, { - "V": 4312.27, - "T": 444.0 + "V": 8.56, + "T": 441.0 }, { - "V": 4345.88, - "T": 448.0 + "V": 8.99, + "T": 445.0 }, { - "V": 4380.15, - "T": 452.0 + "V": 8.14, + "T": 449.0 }, { - "V": 4415.05, - "T": 456.0 + "V": 8.24, + "T": 453.0 }, { - "V": 4449.6, - "T": 460.0 + "V": 8.57, + "T": 457.0 }, { - "V": 4485.05, - "T": 464.0 + "V": 8.19, + "T": 461.0 }, { - "V": 4518.89, - "T": 468.0 + "V": 9.2, + "T": 465.0 }, { - "V": 4555.53, - "T": 472.0 + "V": 8.92, + "T": 469.0 }, { - "V": 4590.88, - "T": 476.0 + "V": 8.69, + "T": 473.0 }, { - "V": 4627.9, - "T": 480.0 + "V": 8.89, + "T": 477.0 }, { - "V": 4665.12, - "T": 484.0 + "V": 9.53, + "T": 481.0 }, { - "V": 4701.02, - "T": 488.0 + "V": 8.08, + "T": 485.0 }, { - "V": 4735.36, - "T": 492.0 + "V": 8.32, + "T": 489.0 }, { - "V": 4770.11, - "T": 496.0 + "V": 8.56, + "T": 493.0 }, { - "V": 4804.72, - "T": 500.0 + "V": 8.91, + "T": 497.0 }, { - "V": 4840.34, - "T": 504.0 + "V": 8.1, + "T": 501.0 }, { - "V": 4875.07, - "T": 508.0 + "V": 8.74, + "T": 505.0 }, { - "V": 4910.26, - "T": 512.0 + "V": 9.4, + "T": 509.0 }, { - "V": 4947.71, - "T": 516.0 + "V": 8.66, + "T": 513.0 }, { - "V": 4983.44, - "T": 520.0 + "V": 8.81, + "T": 517.0 }, { - "V": 5019.73, - "T": 524.0 + "V": 8.88, + "T": 521.0 }, { - "V": 5055.1, - "T": 528.0 + "V": 8.49, + "T": 525.0 }, { - "V": 5090.11, - "T": 532.0 + "V": 9.06, + "T": 529.0 }, { - "V": 5125.33, - "T": 536.0 + "V": 8.17, + "T": 533.0 }, { - "V": 5159.31, - "T": 540.0 + "V": 8.53, + "T": 537.0 }, { - "V": 5193.23, - "T": 544.0 + "V": 8.23, + "T": 541.0 }, { - "V": 5227.87, - "T": 548.0 + "V": 8.64, + "T": 545.0 }, { - "V": 5262.79, - "T": 552.0 + "V": 8.78, + "T": 549.0 }, { - "V": 5298.12, - "T": 556.0 + "V": 9.22, + "T": 553.0 }, { - "V": 5335.41, - "T": 560.0 + "V": 8.68, + "T": 557.0 }, { - "V": 5370.52, - "T": 564.0 + "V": 8.95, + "T": 561.0 }, { - "V": 5406.79, - "T": 568.0 + "V": 7.74, + "T": 565.0 }, { - "V": 5441.39, - "T": 572.0 + "V": 8.46, + "T": 569.0 }, { - "V": 5475.29, - "T": 576.0 + "V": 8.71, + "T": 573.0 }, { - "V": 5509.86, - "T": 580.0 + "V": 8.59, + "T": 577.0 }, { - "V": 5545.53, - "T": 584.0 + "V": 8.43, + "T": 581.0 }, { - "V": 5579.48, - "T": 588.0 + "V": 8.32, + "T": 585.0 }, { - "V": 5614.77, - "T": 592.0 + "V": 7.93, + "T": 589.0 }, { - "V": 5649.0, - "T": 596.0 + "V": 6.77, + "T": 593.0 } ], - "AllocRateMB": [ + "OpsPerSec": null, + "Gen0PerSec": [ { "V": 0.0, "T": 1.0 }, { - "V": 128.0, + "V": 0.0, "T": 5.0 }, { @@ -79288,7 +80709,7 @@ "T": 9.0 }, { - "V": 0.0, + "V": 1.0, "T": 13.0 }, { @@ -79296,7 +80717,7 @@ "T": 17.0 }, { - "V": 0.0, + "V": 1.0, "T": 21.0 }, { @@ -79308,11 +80729,11 @@ "T": 29.0 }, { - "V": 127.88, + "V": 1.0, "T": 33.0 }, { - "V": 0.0, + "V": 1.0, "T": 37.0 }, { @@ -79332,7 +80753,7 @@ "T": 53.0 }, { - "V": 0.0, + "V": 1.0, "T": 57.0 }, { @@ -79348,7 +80769,7 @@ "T": 69.0 }, { - "V": 0.0, + "V": 1.0, "T": 73.0 }, { @@ -79364,11 +80785,11 @@ "T": 85.0 }, { - "V": 0.0, + "V": 1.0, "T": 89.0 }, { - "V": 0.0, + "V": 1.0, "T": 93.0 }, { @@ -79388,7 +80809,7 @@ "T": 109.0 }, { - "V": 0.0, + "V": 1.0, "T": 113.0 }, { @@ -79404,11 +80825,11 @@ "T": 125.0 }, { - "V": 0.0, + "V": 1.0, "T": 129.0 }, { - "V": 128.0, + "V": 0.0, "T": 133.0 }, { @@ -79420,7 +80841,7 @@ "T": 141.0 }, { - "V": 0.0, + "V": 1.0, "T": 145.0 }, { @@ -79428,7 +80849,7 @@ "T": 149.0 }, { - "V": 0.0, + "V": 1.0, "T": 153.0 }, { @@ -79436,7 +80857,7 @@ "T": 157.0 }, { - "V": 64.0, + "V": 0.0, "T": 161.0 }, { @@ -79444,11 +80865,11 @@ "T": 165.0 }, { - "V": 0.0, + "V": 1.0, "T": 169.0 }, { - "V": 0.0, + "V": 1.0, "T": 173.0 }, { @@ -79468,7 +80889,7 @@ "T": 189.0 }, { - "V": 0.0, + "V": 1.0, "T": 193.0 }, { @@ -79480,15 +80901,15 @@ "T": 201.0 }, { - "V": 128.0, + "V": 0.0, "T": 205.0 }, { - "V": 0.0, + "V": 1.0, "T": 209.0 }, { - "V": 0.0, + "V": 1.0, "T": 213.0 }, { @@ -79504,11 +80925,11 @@ "T": 225.0 }, { - "V": 0.0, + "V": 1.0, "T": 229.0 }, { - "V": 128.0, + "V": 0.0, "T": 233.0 }, { @@ -79520,7 +80941,7 @@ "T": 241.0 }, { - "V": 0.0, + "V": 1.0, "T": 245.0 }, { @@ -79528,7 +80949,7 @@ "T": 249.0 }, { - "V": 0.0, + "V": 1.0, "T": 253.0 }, { @@ -79536,19 +80957,19 @@ "T": 257.0 }, { - "V": 128.0, + "V": 0.0, "T": 261.0 }, { - "V": 0.0, + "V": 1.0, "T": 265.0 }, { - "V": 0.0, + "V": 1.0, "T": 269.0 }, { - "V": 0.0, + "V": 1.0, "T": 273.0 }, { @@ -79560,15 +80981,15 @@ "T": 281.0 }, { - "V": 0.0, + "V": 1.0, "T": 285.0 }, { - "V": 0.0, + "V": 1.0, "T": 289.0 }, { - "V": 0.0, + "V": 1.0, "T": 293.0 }, { @@ -79580,7 +81001,7 @@ "T": 301.0 }, { - "V": 0.0, + "V": 1.0, "T": 305.0 }, { @@ -79588,7 +81009,7 @@ "T": 309.0 }, { - "V": 0.0, + "V": 1.0, "T": 313.0 }, { @@ -79600,15 +81021,15 @@ "T": 321.0 }, { - "V": 0.0, + "V": 1.0, "T": 325.0 }, { - "V": 0.0, + "V": 1.0, "T": 329.0 }, { - "V": 128.0, + "V": 0.0, "T": 333.0 }, { @@ -79620,15 +81041,15 @@ "T": 341.0 }, { - "V": 0.0, + "V": 1.0, "T": 345.0 }, { - "V": 0.0, + "V": 1.0, "T": 349.0 }, { - "V": 64.0, + "V": 0.0, "T": 353.0 }, { @@ -79636,15 +81057,15 @@ "T": 357.0 }, { - "V": 64.0, + "V": 0.0, "T": 361.0 }, { - "V": 0.0, + "V": 1.0, "T": 365.0 }, { - "V": 0.0, + "V": 1.0, "T": 369.0 }, { @@ -79660,15 +81081,15 @@ "T": 381.0 }, { - "V": 0.0, + "V": 1.0, "T": 385.0 }, { - "V": 0.0, + "V": 1.0, "T": 389.0 }, { - "V": 0.0, + "V": 1.0, "T": 393.0 }, { @@ -79684,7 +81105,7 @@ "T": 405.0 }, { - "V": 0.0, + "V": 1.0, "T": 409.0 }, { @@ -79700,15 +81121,15 @@ "T": 421.0 }, { - "V": 0.0, + "V": 1.0, "T": 425.0 }, { - "V": 0.0, + "V": 1.0, "T": 429.0 }, { - "V": 128.0, + "V": 0.0, "T": 433.0 }, { @@ -79724,7 +81145,7 @@ "T": 445.0 }, { - "V": 0.0, + "V": 1.0, "T": 449.0 }, { @@ -79744,7 +81165,7 @@ "T": 465.0 }, { - "V": 0.0, + "V": 1.0, "T": 469.0 }, { @@ -79756,7 +81177,7 @@ "T": 477.0 }, { - "V": 0.0, + "V": 1.0, "T": 481.0 }, { @@ -79764,7 +81185,7 @@ "T": 485.0 }, { - "V": 0.0, + "V": 1.0, "T": 489.0 }, { @@ -79776,15 +81197,15 @@ "T": 497.0 }, { - "V": 0.0, + "V": 1.0, "T": 501.0 }, { - "V": 0.0, + "V": 1.0, "T": 505.0 }, { - "V": 0.0, + "V": 1.0, "T": 509.0 }, { @@ -79800,15 +81221,15 @@ "T": 521.0 }, { - "V": 0.0, + "V": 1.0, "T": 525.0 }, { - "V": 0.0, + "V": 1.0, "T": 529.0 }, { - "V": 128.0, + "V": 0.0, "T": 533.0 }, { @@ -79816,11 +81237,11 @@ "T": 537.0 }, { - "V": 0.0, + "V": 1.0, "T": 541.0 }, { - "V": 0.0, + "V": 1.0, "T": 545.0 }, { @@ -79836,15 +81257,15 @@ "T": 557.0 }, { - "V": 128.0, + "V": 1.0, "T": 561.0 }, { - "V": 0.0, + "V": 1.0, "T": 565.0 }, { - "V": 0.0, + "V": 1.0, "T": 569.0 }, { @@ -79860,7 +81281,7 @@ "T": 581.0 }, { - "V": 0.0, + "V": 1.0, "T": 585.0 }, { @@ -79870,14 +81291,77 @@ { "V": 0.0, "T": 593.0 - }, - { - "V": 0.0, - "T": 597.0 } - ], - "OpsPerSec": null, - "Gen0PerSec": [ + ] + } + }, + { + "ScenarioId": "gcperfsim-cache", + "ScenarioName": "GCPerfSim: cache / large-object-heavy workload", + "GcModeId": "server", + "GcModeName": "Server GC", + "DurationSeconds": 601.4487108, + "Summary": { + "OperationsTotal": null, + "OpsPerSecondOverall": 9.023551192906679, + "TotalAllocatedBytes": 5690835056.0, + "Gen0Collections": 42, + "Gen1Collections": 17, + "Gen2Collections": 12, + "WorkingSetBytes": 992702464.0, + "PeakWorkingSetBytes": 992702464.0, + "HeapSizeBytes": 827685336.0, + "TotalCommittedBytes": 945811456.0, + "GcName": "Server GC", + "TagbUsed": 5.3 + }, + "PauseTimePctStats": { + "Avg": 0.029583779264214058, + "P50": 0.0, + "P90": 0.0, + "P99": 0.7839999999999986, + "Max": 2.1390000000000007, + "Min": 0.0, + "Count": 598 + }, + "PauseTimeMsStats": { + "Avg": 0.2958377926421405, + "P50": 0.0, + "P90": 0.0, + "P99": 7.839999999999986, + "Max": 21.390000000000008, + "Min": 0.0, + "Count": 598 + }, + "WorkingSetStats": { + "Avg": 867189939.4991653, + "P50": 907661312.0, + "P90": 983343104.0, + "P99": 990593024.0, + "Max": 992702464.0, + "Min": 411168768.0, + "Count": 599 + }, + "AllocRateMBStats": { + "Avg": 7.024987377051924, + "P50": 8.386573791503906, + "P90": 9.379066467285156, + "P99": 10.122840881347656, + "Max": 10.407363891601562, + "Min": 0.0, + "Count": 598 + }, + "OpsPerSecStats": { + "Avg": 0, + "P50": 0, + "P90": 0, + "P99": 0, + "Max": 0, + "Min": 0, + "Count": 0 + }, + "TimeSeries": { + "PauseTimePct": [ { "V": 0.0, "T": 1.0 @@ -80087,7 +81571,7 @@ "T": 205.0 }, { - "V": 0.0, + "V": 0.6921, "T": 209.0 }, { @@ -80147,7 +81631,7 @@ "T": 265.0 }, { - "V": 0.0, + "V": 0.1285, "T": 269.0 }, { @@ -80239,7 +81723,7 @@ "T": 357.0 }, { - "V": 0.0, + "V": 0.7205, "T": 361.0 }, { @@ -80303,7 +81787,7 @@ "T": 421.0 }, { - "V": 0.0, + "V": 0.6807, "T": 425.0 }, { @@ -80468,2494 +81952,2224 @@ }, { "V": 0.0, - "T": 589.0 - }, - { - "V": 0.0, - "T": 593.0 - }, - { - "V": 0.0, - "T": 597.0 - } - ] - } - }, - { - "ScenarioId": "gcperfsim-churn", - "ScenarioName": "GCPerfSim: high-throughput transient object churn", - "GcModeId": "zerogc", - "GcModeName": "ZeroGC", - "DurationSeconds": 649.7468116, - "Summary": { - "OperationsTotal": null, - "OpsPerSecondOverall": 5.358395787637145, - "TotalAllocatedBytes": 3650722808.0, - "Gen0Collections": 0, - "Gen1Collections": 0, - "Gen2Collections": 0, - "WorkingSetBytes": 3975884800.0, - "PeakWorkingSetBytes": 3975884800.0, - "HeapSizeBytes": 5033164800.0, - "TotalCommittedBytes": 5033164800.0, - "GcName": "ZeroGC", - "TagbUsed": 3.4 - }, - "PauseTimePctStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 647 - }, - "PauseTimeMsStats": { - "Avg": 0.0, - "P50": 0.0, - "P90": 0.0, - "P99": 0.0, - "Max": 0.0, - "Min": 0.0, - "Count": 647 - }, - "WorkingSetStats": { - "Avg": 2077921280.0, - "P50": 2074501120.0, - "P90": 3605893120.0, - "P99": 3948503040.0, - "Max": 3975884800.0, - "Min": 171859968.0, - "Count": 648 - }, - "AllocRateMBStats": { - "Avg": 5.638137640503496, - "P50": 0.0, - "P90": 0.0, - "P99": 192.0, - "Max": 511.8750534057617, - "Min": 0.0, - "Count": 647 - }, - "OpsPerSecStats": { - "Avg": 0, - "P50": 0, - "P90": 0, - "P99": 0, - "Max": 0, - "Min": 0, - "Count": 0 - }, - "TimeSeries": { - "PauseTimePct": [ - { - "V": 0.0, - "T": 1.0 - }, - { - "V": 0.0, - "T": 6.0 - }, - { - "V": 0.0, - "T": 11.0 - }, - { - "V": 0.0, - "T": 16.0 - }, - { - "V": 0.0, - "T": 21.0 - }, - { - "V": 0.0, - "T": 26.0 - }, - { - "V": 0.0, - "T": 31.0 - }, - { - "V": 0.0, - "T": 36.0 - }, - { - "V": 0.0, - "T": 41.0 - }, - { - "V": 0.0, - "T": 46.0 - }, - { - "V": 0.0, - "T": 51.0 - }, - { - "V": 0.0, - "T": 56.0 - }, - { - "V": 0.0, - "T": 61.0 - }, - { - "V": 0.0, - "T": 66.0 - }, - { - "V": 0.0, - "T": 71.0 - }, - { - "V": 0.0, - "T": 76.0 - }, - { - "V": 0.0, - "T": 81.0 - }, - { - "V": 0.0, - "T": 86.0 - }, - { - "V": 0.0, - "T": 91.0 - }, - { - "V": 0.0, - "T": 96.0 - }, - { - "V": 0.0, - "T": 101.0 - }, - { - "V": 0.0, - "T": 106.0 - }, - { - "V": 0.0, - "T": 111.0 - }, - { - "V": 0.0, - "T": 116.0 - }, - { - "V": 0.0, - "T": 121.0 - }, - { - "V": 0.0, - "T": 126.0 - }, - { - "V": 0.0, - "T": 131.0 - }, - { - "V": 0.0, - "T": 136.0 - }, - { - "V": 0.0, - "T": 141.0 - }, - { - "V": 0.0, - "T": 146.0 - }, - { - "V": 0.0, - "T": 151.0 - }, - { - "V": 0.0, - "T": 156.0 - }, - { - "V": 0.0, - "T": 161.0 - }, - { - "V": 0.0, - "T": 166.0 - }, - { - "V": 0.0, - "T": 171.0 - }, - { - "V": 0.0, - "T": 176.0 - }, - { - "V": 0.0, - "T": 181.0 - }, - { - "V": 0.0, - "T": 186.0 - }, - { - "V": 0.0, - "T": 191.0 - }, - { - "V": 0.0, - "T": 196.0 - }, - { - "V": 0.0, - "T": 201.0 - }, - { - "V": 0.0, - "T": 206.0 - }, - { - "V": 0.0, - "T": 211.0 - }, - { - "V": 0.0, - "T": 216.0 - }, - { - "V": 0.0, - "T": 221.0 - }, - { - "V": 0.0, - "T": 226.0 - }, - { - "V": 0.0, - "T": 231.0 - }, - { - "V": 0.0, - "T": 236.0 - }, - { - "V": 0.0, - "T": 241.0 - }, - { - "V": 0.0, - "T": 246.0 + "T": 589.0 }, { "V": 0.0, - "T": 251.0 + "T": 593.0 }, { "V": 0.0, - "T": 256.0 - }, + "T": 597.0 + } + ], + "PauseTimeMs": [ { "V": 0.0, - "T": 261.0 + "T": 1.0 }, { "V": 0.0, - "T": 266.0 + "T": 5.0 }, { "V": 0.0, - "T": 271.0 + "T": 9.0 }, { "V": 0.0, - "T": 276.0 + "T": 13.0 }, { "V": 0.0, - "T": 281.0 + "T": 17.0 }, { "V": 0.0, - "T": 286.0 + "T": 21.0 }, { "V": 0.0, - "T": 291.0 + "T": 25.0 }, { "V": 0.0, - "T": 296.0 + "T": 29.0 }, { "V": 0.0, - "T": 301.0 + "T": 33.0 }, { "V": 0.0, - "T": 306.0 + "T": 37.0 }, { "V": 0.0, - "T": 311.0 + "T": 41.0 }, { "V": 0.0, - "T": 316.0 + "T": 45.0 }, { "V": 0.0, - "T": 321.0 + "T": 49.0 }, { "V": 0.0, - "T": 326.0 + "T": 53.0 }, { "V": 0.0, - "T": 331.0 + "T": 57.0 }, { "V": 0.0, - "T": 336.0 + "T": 61.0 }, { "V": 0.0, - "T": 341.0 + "T": 65.0 }, { "V": 0.0, - "T": 346.0 + "T": 69.0 }, { "V": 0.0, - "T": 351.0 + "T": 73.0 }, { "V": 0.0, - "T": 356.0 + "T": 77.0 }, { "V": 0.0, - "T": 361.0 + "T": 81.0 }, { "V": 0.0, - "T": 366.0 + "T": 85.0 }, { "V": 0.0, - "T": 371.0 + "T": 89.0 }, { "V": 0.0, - "T": 376.0 + "T": 93.0 }, { "V": 0.0, - "T": 381.0 + "T": 97.0 }, { "V": 0.0, - "T": 386.0 + "T": 101.0 }, { "V": 0.0, - "T": 391.0 + "T": 105.0 }, { "V": 0.0, - "T": 396.0 + "T": 109.0 }, { "V": 0.0, - "T": 401.0 + "T": 113.0 }, { "V": 0.0, - "T": 406.0 + "T": 117.0 }, { "V": 0.0, - "T": 411.0 + "T": 121.0 }, { "V": 0.0, - "T": 416.0 + "T": 125.0 }, { "V": 0.0, - "T": 421.0 + "T": 129.0 }, { "V": 0.0, - "T": 426.0 + "T": 133.0 }, { "V": 0.0, - "T": 431.0 + "T": 137.0 }, { "V": 0.0, - "T": 436.0 + "T": 141.0 }, { "V": 0.0, - "T": 441.0 + "T": 145.0 }, { "V": 0.0, - "T": 446.0 + "T": 149.0 }, { "V": 0.0, - "T": 451.0 + "T": 153.0 }, { "V": 0.0, - "T": 456.0 + "T": 157.0 }, { "V": 0.0, - "T": 461.0 + "T": 161.0 }, { "V": 0.0, - "T": 466.0 + "T": 165.0 }, { "V": 0.0, - "T": 471.0 + "T": 169.0 }, { "V": 0.0, - "T": 476.0 + "T": 173.0 }, { "V": 0.0, - "T": 481.0 + "T": 177.0 }, { "V": 0.0, - "T": 486.0 + "T": 181.0 }, { "V": 0.0, - "T": 491.0 + "T": 185.0 }, { "V": 0.0, - "T": 496.0 + "T": 189.0 }, { "V": 0.0, - "T": 501.0 + "T": 193.0 }, { "V": 0.0, - "T": 506.0 + "T": 197.0 }, { "V": 0.0, - "T": 511.0 + "T": 201.0 }, { "V": 0.0, - "T": 516.0 + "T": 205.0 }, { - "V": 0.0, - "T": 521.0 + "V": 6.921, + "T": 209.0 }, { "V": 0.0, - "T": 526.0 + "T": 213.0 }, { "V": 0.0, - "T": 531.0 + "T": 217.0 }, { "V": 0.0, - "T": 536.0 + "T": 221.0 }, { "V": 0.0, - "T": 541.0 + "T": 225.0 }, { "V": 0.0, - "T": 546.0 + "T": 229.0 }, { "V": 0.0, - "T": 551.0 + "T": 233.0 }, { "V": 0.0, - "T": 556.0 + "T": 237.0 }, { "V": 0.0, - "T": 561.0 + "T": 241.0 }, { "V": 0.0, - "T": 566.0 + "T": 245.0 }, { "V": 0.0, - "T": 571.0 + "T": 249.0 }, { "V": 0.0, - "T": 576.0 + "T": 253.0 }, { "V": 0.0, - "T": 581.0 + "T": 257.0 }, { "V": 0.0, - "T": 586.0 + "T": 261.0 }, { "V": 0.0, - "T": 591.0 + "T": 265.0 }, { - "V": 0.0, - "T": 596.0 + "V": 1.285, + "T": 269.0 }, { "V": 0.0, - "T": 601.0 + "T": 273.0 }, { "V": 0.0, - "T": 606.0 + "T": 277.0 }, { "V": 0.0, - "T": 611.0 + "T": 281.0 }, { "V": 0.0, - "T": 616.0 + "T": 285.0 }, { "V": 0.0, - "T": 621.0 + "T": 289.0 }, { "V": 0.0, - "T": 626.0 + "T": 293.0 }, { "V": 0.0, - "T": 631.0 + "T": 297.0 }, { "V": 0.0, - "T": 636.0 + "T": 301.0 }, { "V": 0.0, - "T": 641.0 + "T": 305.0 }, { "V": 0.0, - "T": 646.0 - } - ], - "PauseTimeMs": [ + "T": 309.0 + }, { "V": 0.0, - "T": 1.0 + "T": 313.0 }, { "V": 0.0, - "T": 6.0 + "T": 317.0 }, { "V": 0.0, - "T": 11.0 + "T": 321.0 }, { "V": 0.0, - "T": 16.0 + "T": 325.0 }, { "V": 0.0, - "T": 21.0 + "T": 329.0 }, { "V": 0.0, - "T": 26.0 + "T": 333.0 }, { "V": 0.0, - "T": 31.0 + "T": 337.0 }, { "V": 0.0, - "T": 36.0 + "T": 341.0 }, { "V": 0.0, - "T": 41.0 + "T": 345.0 }, { "V": 0.0, - "T": 46.0 + "T": 349.0 }, { "V": 0.0, - "T": 51.0 + "T": 353.0 }, { "V": 0.0, - "T": 56.0 + "T": 357.0 }, { - "V": 0.0, - "T": 61.0 + "V": 7.205, + "T": 361.0 }, { "V": 0.0, - "T": 66.0 + "T": 365.0 }, { "V": 0.0, - "T": 71.0 + "T": 369.0 }, { "V": 0.0, - "T": 76.0 + "T": 373.0 }, { "V": 0.0, - "T": 81.0 + "T": 377.0 }, { "V": 0.0, - "T": 86.0 + "T": 381.0 }, { "V": 0.0, - "T": 91.0 + "T": 385.0 }, { "V": 0.0, - "T": 96.0 + "T": 389.0 }, { "V": 0.0, - "T": 101.0 + "T": 393.0 }, { "V": 0.0, - "T": 106.0 + "T": 397.0 }, { "V": 0.0, - "T": 111.0 + "T": 401.0 }, { "V": 0.0, - "T": 116.0 + "T": 405.0 }, { "V": 0.0, - "T": 121.0 + "T": 409.0 }, { "V": 0.0, - "T": 126.0 + "T": 413.0 }, { "V": 0.0, - "T": 131.0 + "T": 417.0 }, { "V": 0.0, - "T": 136.0 + "T": 421.0 }, { - "V": 0.0, - "T": 141.0 + "V": 6.807, + "T": 425.0 }, { "V": 0.0, - "T": 146.0 + "T": 429.0 }, { "V": 0.0, - "T": 151.0 + "T": 433.0 }, { "V": 0.0, - "T": 156.0 + "T": 437.0 }, { "V": 0.0, - "T": 161.0 + "T": 441.0 }, { "V": 0.0, - "T": 166.0 + "T": 445.0 }, { "V": 0.0, - "T": 171.0 + "T": 449.0 }, { "V": 0.0, - "T": 176.0 + "T": 453.0 }, { "V": 0.0, - "T": 181.0 + "T": 457.0 }, { "V": 0.0, - "T": 186.0 + "T": 461.0 }, { "V": 0.0, - "T": 191.0 + "T": 465.0 }, { "V": 0.0, - "T": 196.0 + "T": 469.0 }, { "V": 0.0, - "T": 201.0 + "T": 473.0 }, { "V": 0.0, - "T": 206.0 + "T": 477.0 }, { "V": 0.0, - "T": 211.0 + "T": 481.0 }, { "V": 0.0, - "T": 216.0 + "T": 485.0 }, { "V": 0.0, - "T": 221.0 + "T": 489.0 }, { "V": 0.0, - "T": 226.0 + "T": 493.0 }, { "V": 0.0, - "T": 231.0 + "T": 497.0 }, { "V": 0.0, - "T": 236.0 + "T": 501.0 }, { "V": 0.0, - "T": 241.0 + "T": 505.0 }, { "V": 0.0, - "T": 246.0 + "T": 509.0 }, { "V": 0.0, - "T": 251.0 + "T": 513.0 }, { "V": 0.0, - "T": 256.0 + "T": 517.0 }, { "V": 0.0, - "T": 261.0 + "T": 521.0 }, { "V": 0.0, - "T": 266.0 + "T": 525.0 }, { "V": 0.0, - "T": 271.0 + "T": 529.0 }, { "V": 0.0, - "T": 276.0 + "T": 533.0 }, { "V": 0.0, - "T": 281.0 + "T": 537.0 }, { "V": 0.0, - "T": 286.0 + "T": 541.0 }, { "V": 0.0, - "T": 291.0 + "T": 545.0 }, { "V": 0.0, - "T": 296.0 + "T": 549.0 }, { "V": 0.0, - "T": 301.0 + "T": 553.0 }, { "V": 0.0, - "T": 306.0 + "T": 557.0 }, { "V": 0.0, - "T": 311.0 + "T": 561.0 }, { "V": 0.0, - "T": 316.0 + "T": 565.0 }, { "V": 0.0, - "T": 321.0 + "T": 569.0 }, { "V": 0.0, - "T": 326.0 + "T": 573.0 }, { "V": 0.0, - "T": 331.0 + "T": 577.0 }, { "V": 0.0, - "T": 336.0 + "T": 581.0 }, { "V": 0.0, - "T": 341.0 + "T": 585.0 }, { "V": 0.0, - "T": 346.0 + "T": 589.0 }, { "V": 0.0, - "T": 351.0 + "T": 593.0 }, { "V": 0.0, - "T": 356.0 + "T": 597.0 + } + ], + "WorkingSetMB": [ + { + "V": 392.12, + "T": 0.0 }, { - "V": 0.0, - "T": 361.0 + "V": 410.41, + "T": 4.0 }, { - "V": 0.0, - "T": 366.0 + "V": 412.41, + "T": 8.0 }, { - "V": 0.0, - "T": 371.0 + "V": 462.98, + "T": 12.0 }, { - "V": 0.0, - "T": 376.0 + "V": 469.0, + "T": 16.0 }, { - "V": 0.0, - "T": 381.0 + "V": 492.54, + "T": 20.0 }, { - "V": 0.0, - "T": 386.0 + "V": 527.13, + "T": 24.0 }, { - "V": 0.0, - "T": 391.0 + "V": 550.73, + "T": 28.0 }, { - "V": 0.0, - "T": 396.0 + "V": 584.51, + "T": 32.0 }, { - "V": 0.0, - "T": 401.0 + "V": 619.0, + "T": 36.0 }, { - "V": 0.0, - "T": 406.0 + "V": 654.17, + "T": 40.0 }, { - "V": 0.0, - "T": 411.0 + "V": 663.25, + "T": 44.0 }, { - "V": 0.0, - "T": 416.0 + "V": 663.23, + "T": 48.0 }, { - "V": 0.0, - "T": 421.0 + "V": 663.24, + "T": 52.0 }, { - "V": 0.0, - "T": 426.0 + "V": 663.25, + "T": 56.0 }, { - "V": 0.0, - "T": 431.0 + "V": 665.21, + "T": 60.0 }, { - "V": 0.0, - "T": 436.0 + "V": 665.76, + "T": 64.0 }, { - "V": 0.0, - "T": 441.0 + "V": 669.14, + "T": 68.0 }, { - "V": 0.0, - "T": 446.0 + "V": 683.07, + "T": 72.0 }, { - "V": 0.0, - "T": 451.0 + "V": 699.21, + "T": 76.0 }, { - "V": 0.0, - "T": 456.0 + "V": 701.36, + "T": 80.0 }, { - "V": 0.0, - "T": 461.0 + "V": 704.39, + "T": 84.0 }, { - "V": 0.0, - "T": 466.0 + "V": 707.5, + "T": 88.0 }, { - "V": 0.0, - "T": 471.0 + "V": 710.72, + "T": 92.0 }, { - "V": 0.0, - "T": 476.0 + "V": 715.84, + "T": 96.0 }, { - "V": 0.0, - "T": 481.0 + "V": 721.7, + "T": 100.0 }, { - "V": 0.0, - "T": 486.0 + "V": 725.46, + "T": 104.0 }, { - "V": 0.0, - "T": 491.0 + "V": 752.85, + "T": 108.0 }, { - "V": 0.0, - "T": 496.0 + "V": 767.04, + "T": 112.0 }, { - "V": 0.0, - "T": 501.0 + "V": 765.26, + "T": 116.0 }, { - "V": 0.0, - "T": 506.0 + "V": 765.26, + "T": 120.0 }, { - "V": 0.0, - "T": 511.0 + "V": 765.28, + "T": 124.0 }, { - "V": 0.0, - "T": 516.0 + "V": 765.29, + "T": 128.0 }, { - "V": 0.0, - "T": 521.0 + "V": 765.27, + "T": 132.0 }, { - "V": 0.0, - "T": 526.0 + "V": 765.29, + "T": 136.0 }, { - "V": 0.0, - "T": 531.0 + "V": 766.38, + "T": 140.0 }, { - "V": 0.0, - "T": 536.0 + "V": 770.21, + "T": 144.0 }, { - "V": 0.0, - "T": 541.0 + "V": 773.7, + "T": 148.0 }, { - "V": 0.0, - "T": 546.0 + "V": 773.86, + "T": 152.0 }, { - "V": 0.0, - "T": 551.0 + "V": 774.26, + "T": 156.0 }, { - "V": 0.0, - "T": 556.0 + "V": 775.12, + "T": 160.0 }, { - "V": 0.0, - "T": 561.0 + "V": 776.37, + "T": 164.0 }, { - "V": 0.0, - "T": 566.0 + "V": 778.43, + "T": 168.0 }, { - "V": 0.0, - "T": 571.0 + "V": 782.07, + "T": 172.0 }, { - "V": 0.0, - "T": 576.0 + "V": 802.94, + "T": 176.0 }, { - "V": 0.0, - "T": 581.0 + "V": 813.59, + "T": 180.0 }, { - "V": 0.0, - "T": 586.0 + "V": 816.43, + "T": 184.0 }, { - "V": 0.0, - "T": 591.0 + "V": 820.45, + "T": 188.0 }, { - "V": 0.0, - "T": 596.0 + "V": 819.44, + "T": 192.0 }, { - "V": 0.0, - "T": 601.0 + "V": 819.42, + "T": 196.0 }, { - "V": 0.0, - "T": 606.0 + "V": 819.43, + "T": 200.0 }, { - "V": 0.0, - "T": 611.0 + "V": 819.43, + "T": 204.0 }, { - "V": 0.0, - "T": 616.0 + "V": 822.12, + "T": 208.0 }, { - "V": 0.0, - "T": 621.0 + "V": 822.24, + "T": 212.0 }, { - "V": 0.0, - "T": 626.0 + "V": 822.26, + "T": 216.0 }, { - "V": 0.0, - "T": 631.0 + "V": 822.26, + "T": 220.0 }, { - "V": 0.0, - "T": 636.0 + "V": 822.26, + "T": 224.0 }, { - "V": 0.0, - "T": 641.0 + "V": 822.4, + "T": 228.0 }, { - "V": 0.0, - "T": 646.0 - } - ], - "WorkingSetMB": [ + "V": 830.81, + "T": 232.0 + }, { - "V": 163.9, - "T": 0.0 + "V": 867.71, + "T": 236.0 }, { - "V": 194.41, - "T": 5.0 + "V": 867.72, + "T": 240.0 }, { - "V": 222.77, - "T": 10.0 + "V": 867.8, + "T": 244.0 }, { - "V": 250.81, - "T": 15.0 + "V": 867.86, + "T": 248.0 }, { - "V": 279.07, - "T": 20.0 + "V": 869.72, + "T": 252.0 }, { - "V": 307.3, - "T": 25.0 + "V": 870.59, + "T": 256.0 }, { - "V": 335.24, - "T": 30.0 + "V": 872.16, + "T": 260.0 }, { - "V": 363.58, - "T": 35.0 + "V": 874.11, + "T": 264.0 }, { - "V": 390.76, - "T": 40.0 + "V": 877.91, + "T": 268.0 }, { - "V": 419.01, - "T": 45.0 + "V": 865.2, + "T": 272.0 }, { - "V": 446.53, - "T": 50.0 + "V": 865.2, + "T": 276.0 }, { - "V": 474.93, - "T": 55.0 + "V": 865.2, + "T": 280.0 }, { - "V": 503.75, - "T": 60.0 + "V": 865.19, + "T": 284.0 }, { - "V": 531.89, - "T": 65.0 + "V": 865.2, + "T": 288.0 }, { - "V": 560.63, - "T": 70.0 + "V": 863.69, + "T": 292.0 }, { - "V": 588.81, - "T": 75.0 + "V": 863.69, + "T": 296.0 }, { - "V": 616.94, - "T": 80.0 + "V": 863.85, + "T": 300.0 }, { - "V": 644.92, - "T": 85.0 + "V": 863.86, + "T": 304.0 }, { - "V": 673.16, - "T": 90.0 + "V": 863.87, + "T": 308.0 }, { - "V": 701.09, - "T": 95.0 + "V": 863.89, + "T": 312.0 }, { - "V": 729.26, - "T": 100.0 + "V": 863.88, + "T": 316.0 }, { - "V": 757.35, - "T": 105.0 + "V": 863.91, + "T": 320.0 }, { - "V": 785.43, - "T": 110.0 + "V": 865.36, + "T": 324.0 }, { - "V": 813.5, - "T": 115.0 + "V": 865.61, + "T": 328.0 }, { - "V": 841.68, - "T": 120.0 + "V": 865.61, + "T": 332.0 }, { - "V": 869.93, - "T": 125.0 + "V": 865.63, + "T": 336.0 }, { - "V": 897.36, - "T": 130.0 + "V": 865.64, + "T": 340.0 }, { - "V": 924.94, - "T": 135.0 + "V": 865.65, + "T": 344.0 }, { - "V": 953.18, - "T": 140.0 + "V": 866.17, + "T": 348.0 }, { - "V": 981.23, - "T": 145.0 + "V": 867.87, + "T": 352.0 }, { - "V": 1008.85, - "T": 150.0 + "V": 872.61, + "T": 356.0 }, { - "V": 1035.94, - "T": 155.0 + "V": 895.25, + "T": 360.0 }, { - "V": 1063.34, - "T": 160.0 + "V": 883.58, + "T": 364.0 }, { - "V": 1091.02, - "T": 165.0 + "V": 883.58, + "T": 368.0 }, { - "V": 1119.52, - "T": 170.0 + "V": 883.58, + "T": 372.0 }, { - "V": 1147.48, - "T": 175.0 + "V": 883.59, + "T": 376.0 }, { - "V": 1175.75, - "T": 180.0 + "V": 883.59, + "T": 380.0 }, { - "V": 1204.14, - "T": 185.0 + "V": 883.59, + "T": 384.0 }, { - "V": 1232.29, - "T": 190.0 + "V": 884.48, + "T": 388.0 }, { - "V": 1260.42, - "T": 195.0 + "V": 888.84, + "T": 392.0 }, { - "V": 1288.41, - "T": 200.0 + "V": 898.93, + "T": 396.0 }, { - "V": 1316.46, - "T": 205.0 + "V": 898.89, + "T": 400.0 }, { - "V": 1344.52, - "T": 210.0 + "V": 898.89, + "T": 404.0 }, { - "V": 1372.16, - "T": 215.0 + "V": 898.9, + "T": 408.0 }, { - "V": 1400.69, - "T": 220.0 + "V": 898.9, + "T": 412.0 }, { - "V": 1428.93, - "T": 225.0 + "V": 898.91, + "T": 416.0 }, { - "V": 1457.01, - "T": 230.0 + "V": 898.91, + "T": 420.0 }, { - "V": 1485.46, - "T": 235.0 + "V": 898.91, + "T": 424.0 }, { - "V": 1512.97, - "T": 240.0 + "V": 898.91, + "T": 428.0 }, { - "V": 1540.9, - "T": 245.0 + "V": 898.93, + "T": 432.0 }, { - "V": 1568.96, - "T": 250.0 + "V": 898.93, + "T": 436.0 }, { - "V": 1597.57, - "T": 255.0 + "V": 899.39, + "T": 440.0 }, { - "V": 1625.57, - "T": 260.0 + "V": 900.16, + "T": 444.0 }, { - "V": 1653.75, - "T": 265.0 + "V": 900.64, + "T": 448.0 }, { - "V": 1681.8, - "T": 270.0 + "V": 901.88, + "T": 452.0 }, { - "V": 1709.6, - "T": 275.0 + "V": 906.49, + "T": 456.0 }, { - "V": 1737.16, - "T": 280.0 + "V": 906.49, + "T": 460.0 }, { - "V": 1765.29, - "T": 285.0 + "V": 906.49, + "T": 464.0 }, { - "V": 1793.73, - "T": 290.0 + "V": 906.49, + "T": 468.0 }, { - "V": 1821.36, - "T": 295.0 + "V": 906.49, + "T": 472.0 }, { - "V": 1850.04, - "T": 300.0 + "V": 906.5, + "T": 476.0 }, { - "V": 1878.16, - "T": 305.0 + "V": 906.49, + "T": 480.0 }, { - "V": 1906.09, - "T": 310.0 + "V": 920.93, + "T": 484.0 }, { - "V": 1934.1, - "T": 315.0 + "V": 943.68, + "T": 488.0 }, { - "V": 1961.95, - "T": 320.0 + "V": 943.69, + "T": 492.0 }, { - "V": 1989.14, - "T": 325.0 + "V": 943.69, + "T": 496.0 }, { - "V": 2016.93, - "T": 330.0 + "V": 943.69, + "T": 500.0 }, { - "V": 2044.24, - "T": 335.0 + "V": 943.7, + "T": 504.0 }, { - "V": 2071.98, - "T": 340.0 + "V": 937.83, + "T": 508.0 }, { - "V": 2099.39, - "T": 345.0 + "V": 937.79, + "T": 512.0 }, { - "V": 2127.78, - "T": 350.0 + "V": 937.79, + "T": 516.0 }, { - "V": 2156.27, - "T": 355.0 + "V": 937.79, + "T": 520.0 }, { - "V": 2184.3, - "T": 360.0 + "V": 937.79, + "T": 524.0 }, { - "V": 2212.27, - "T": 365.0 + "V": 937.79, + "T": 528.0 }, { - "V": 2240.19, - "T": 370.0 + "V": 937.79, + "T": 532.0 }, { - "V": 2267.85, - "T": 375.0 + "V": 936.4, + "T": 536.0 }, { - "V": 2295.82, - "T": 380.0 + "V": 936.41, + "T": 540.0 }, { - "V": 2324.29, - "T": 385.0 + "V": 936.41, + "T": 544.0 }, { - "V": 2352.36, - "T": 390.0 + "V": 936.41, + "T": 548.0 }, { - "V": 2380.3, - "T": 395.0 + "V": 936.41, + "T": 552.0 }, { - "V": 2408.54, - "T": 400.0 + "V": 936.41, + "T": 556.0 }, { - "V": 2436.3, - "T": 405.0 + "V": 936.43, + "T": 560.0 }, { - "V": 2464.85, - "T": 410.0 + "V": 936.43, + "T": 564.0 }, { - "V": 2493.43, - "T": 415.0 + "V": 938.17, + "T": 568.0 }, { - "V": 2521.95, - "T": 420.0 + "V": 937.62, + "T": 572.0 }, { - "V": 2550.17, - "T": 425.0 + "V": 938.99, + "T": 576.0 }, { - "V": 2578.11, - "T": 430.0 + "V": 940.47, + "T": 580.0 }, { - "V": 2606.3, - "T": 435.0 + "V": 942.35, + "T": 584.0 }, { - "V": 2634.73, - "T": 440.0 + "V": 942.96, + "T": 588.0 }, { - "V": 2663.1, - "T": 445.0 + "V": 944.37, + "T": 592.0 }, { - "V": 2691.42, - "T": 450.0 + "V": 945.3, + "T": 596.0 + } + ], + "AllocRateMB": [ + { + "V": 7.74, + "T": 1.0 }, { - "V": 2719.7, - "T": 455.0 + "V": 8.4, + "T": 5.0 }, { - "V": 2747.57, - "T": 460.0 + "V": 7.9, + "T": 9.0 }, { - "V": 2775.57, - "T": 465.0 + "V": 8.8, + "T": 13.0 }, { - "V": 2803.93, - "T": 470.0 + "V": 8.37, + "T": 17.0 }, { - "V": 2832.07, - "T": 475.0 + "V": 8.28, + "T": 21.0 }, { - "V": 2860.48, - "T": 480.0 + "V": 8.57, + "T": 25.0 }, { - "V": 2888.54, - "T": 485.0 + "V": 8.81, + "T": 29.0 }, { - "V": 2916.81, - "T": 490.0 + "V": 8.06, + "T": 33.0 }, { - "V": 2944.8, - "T": 495.0 + "V": 9.3, + "T": 37.0 }, { - "V": 2972.83, - "T": 500.0 + "V": 8.78, + "T": 41.0 }, { - "V": 2999.98, - "T": 505.0 + "V": 8.62, + "T": 45.0 }, { - "V": 3027.7, - "T": 510.0 + "V": 8.33, + "T": 49.0 }, { - "V": 3055.93, - "T": 515.0 + "V": 8.96, + "T": 53.0 }, { - "V": 3083.93, - "T": 520.0 + "V": 8.44, + "T": 57.0 }, { - "V": 3112.23, - "T": 525.0 + "V": 8.74, + "T": 61.0 }, { - "V": 3140.79, - "T": 530.0 + "V": 8.02, + "T": 65.0 }, { - "V": 3168.49, - "T": 535.0 + "V": 9.26, + "T": 69.0 }, { - "V": 3196.54, - "T": 540.0 + "V": 8.23, + "T": 73.0 }, { - "V": 3224.7, - "T": 545.0 + "V": 8.94, + "T": 77.0 }, { - "V": 3252.95, - "T": 550.0 + "V": 7.92, + "T": 81.0 }, { - "V": 3281.25, - "T": 555.0 + "V": 8.25, + "T": 85.0 }, { - "V": 3309.43, - "T": 560.0 + "V": 8.85, + "T": 89.0 }, { - "V": 3337.55, - "T": 565.0 + "V": 10.05, + "T": 93.0 }, { - "V": 3365.41, - "T": 570.0 + "V": 7.97, + "T": 97.0 }, { - "V": 3393.2, - "T": 575.0 + "V": 8.64, + "T": 101.0 }, { - "V": 3421.33, - "T": 580.0 + "V": 9.2, + "T": 105.0 }, { - "V": 3449.64, - "T": 585.0 + "V": 8.11, + "T": 109.0 }, { - "V": 3477.64, - "T": 590.0 + "V": 9.06, + "T": 113.0 }, { - "V": 3505.86, - "T": 595.0 + "V": 9.45, + "T": 117.0 }, { - "V": 3533.93, - "T": 600.0 + "V": 8.33, + "T": 121.0 }, { - "V": 3562.04, - "T": 605.0 + "V": 8.1, + "T": 125.0 }, { - "V": 3590.34, - "T": 610.0 + "V": 9.53, + "T": 129.0 }, { - "V": 3618.64, - "T": 615.0 + "V": 9.27, + "T": 133.0 }, { - "V": 3647.32, - "T": 620.0 + "V": 8.5, + "T": 137.0 }, { - "V": 3675.38, - "T": 625.0 + "V": 9.0, + "T": 141.0 }, { - "V": 3703.62, - "T": 630.0 + "V": 8.26, + "T": 145.0 }, { - "V": 3731.8, - "T": 635.0 + "V": 9.37, + "T": 149.0 }, { - "V": 3760.1, - "T": 640.0 + "V": 7.64, + "T": 153.0 }, { - "V": 3787.44, - "T": 645.0 - } - ], - "AllocRateMB": [ + "V": 8.36, + "T": 157.0 + }, { - "V": 0.0, - "T": 1.0 + "V": 8.26, + "T": 161.0 }, { - "V": 0.0, - "T": 6.0 + "V": 8.76, + "T": 165.0 }, { - "V": 0.0, - "T": 11.0 + "V": 9.53, + "T": 169.0 }, { - "V": 0.0, - "T": 16.0 + "V": 8.52, + "T": 173.0 }, { - "V": 0.0, - "T": 21.0 + "V": 8.73, + "T": 177.0 }, { - "V": 0.0, - "T": 26.0 + "V": 8.19, + "T": 181.0 }, { - "V": 0.0, - "T": 31.0 + "V": 7.9, + "T": 185.0 }, { - "V": 0.0, - "T": 36.0 + "V": 8.27, + "T": 189.0 }, { - "V": 0.0, - "T": 41.0 + "V": 7.93, + "T": 193.0 }, { - "V": 0.0, - "T": 46.0 + "V": 7.68, + "T": 197.0 }, { - "V": 0.0, - "T": 51.0 + "V": 8.55, + "T": 201.0 }, { - "V": 0.0, - "T": 56.0 + "V": 7.91, + "T": 205.0 }, { - "V": 0.0, - "T": 61.0 + "V": 8.25, + "T": 209.0 }, { - "V": 0.0, - "T": 66.0 + "V": 9.47, + "T": 213.0 }, { - "V": 0.0, - "T": 71.0 + "V": 7.99, + "T": 217.0 }, { - "V": 0.0, - "T": 76.0 + "V": 7.84, + "T": 221.0 }, { - "V": 0.0, - "T": 81.0 + "V": 8.79, + "T": 225.0 }, { - "V": 0.0, - "T": 86.0 + "V": 8.81, + "T": 229.0 }, { - "V": 0.0, - "T": 91.0 + "V": 8.3, + "T": 233.0 }, { - "V": 0.0, - "T": 96.0 + "V": 8.37, + "T": 237.0 }, { - "V": 0.0, - "T": 101.0 + "V": 9.05, + "T": 241.0 }, { - "V": 0.0, - "T": 106.0 + "V": 9.38, + "T": 245.0 }, { - "V": 0.0, - "T": 111.0 + "V": 8.39, + "T": 249.0 }, { - "V": 0.0, - "T": 116.0 + "V": 8.14, + "T": 253.0 }, { - "V": 0.0, - "T": 121.0 + "V": 9.63, + "T": 257.0 }, { - "V": 0.0, - "T": 126.0 + "V": 9.25, + "T": 261.0 }, { - "V": 0.0, - "T": 131.0 + "V": 9.19, + "T": 265.0 }, { - "V": 0.0, - "T": 136.0 + "V": 9.38, + "T": 269.0 }, { - "V": 0.0, - "T": 141.0 + "V": 8.18, + "T": 273.0 }, { - "V": 0.0, - "T": 146.0 + "V": 9.84, + "T": 277.0 }, { - "V": 0.0, - "T": 151.0 + "V": 8.24, + "T": 281.0 }, { - "V": 0.0, - "T": 156.0 + "V": 9.02, + "T": 285.0 }, { - "V": 0.0, - "T": 161.0 + "V": 8.28, + "T": 289.0 }, { - "V": 0.0, - "T": 166.0 + "V": 9.09, + "T": 293.0 }, { - "V": 0.0, - "T": 171.0 + "V": 8.29, + "T": 297.0 }, { - "V": 0.0, - "T": 176.0 + "V": 8.62, + "T": 301.0 }, { - "V": 0.0, - "T": 181.0 + "V": 7.7, + "T": 305.0 }, { - "V": 0.0, - "T": 186.0 + "V": 9.59, + "T": 309.0 }, { - "V": 0.0, - "T": 191.0 + "V": 7.74, + "T": 313.0 }, { - "V": 0.0, - "T": 196.0 + "V": 8.07, + "T": 317.0 }, { - "V": 0.0, - "T": 201.0 + "V": 8.26, + "T": 321.0 }, { - "V": 0.0, - "T": 206.0 + "V": 8.07, + "T": 325.0 }, { - "V": 0.0, - "T": 211.0 + "V": 7.96, + "T": 329.0 }, { - "V": 0.0, - "T": 216.0 + "V": 8.65, + "T": 333.0 }, { - "V": 0.0, - "T": 221.0 + "V": 8.41, + "T": 337.0 }, { - "V": 0.0, - "T": 226.0 + "V": 9.48, + "T": 341.0 }, { - "V": 0.0, - "T": 231.0 + "V": 9.26, + "T": 345.0 }, { - "V": 0.0, - "T": 236.0 + "V": 9.4, + "T": 349.0 }, { - "V": 0.0, - "T": 241.0 + "V": 9.39, + "T": 353.0 }, { - "V": 0.0, - "T": 246.0 + "V": 10.11, + "T": 357.0 }, { - "V": 0.0, - "T": 251.0 + "V": 7.87, + "T": 361.0 }, { - "V": 0.0, - "T": 256.0 + "V": 8.07, + "T": 365.0 }, { - "V": 0.0, - "T": 261.0 + "V": 8.42, + "T": 369.0 }, { - "V": 0.0, - "T": 266.0 + "V": 7.81, + "T": 373.0 }, { - "V": 0.0, - "T": 271.0 + "V": 7.6, + "T": 377.0 }, { - "V": 0.0, - "T": 276.0 + "V": 8.7, + "T": 381.0 }, { - "V": 0.0, - "T": 281.0 + "V": 9.42, + "T": 385.0 }, { - "V": 0.0, - "T": 286.0 + "V": 7.69, + "T": 389.0 }, { - "V": 0.0, - "T": 291.0 + "V": 8.78, + "T": 393.0 }, { - "V": 0.0, - "T": 296.0 + "V": 8.99, + "T": 397.0 }, { - "V": 0.0, - "T": 301.0 + "V": 8.57, + "T": 401.0 }, { - "V": 0.0, - "T": 306.0 + "V": 8.64, + "T": 405.0 }, { - "V": 0.0, - "T": 311.0 + "V": 8.18, + "T": 409.0 }, { - "V": 0.0, - "T": 316.0 + "V": 8.38, + "T": 413.0 }, { - "V": 0.0, - "T": 321.0 + "V": 7.96, + "T": 417.0 }, { - "V": 0.0, - "T": 326.0 + "V": 8.89, + "T": 421.0 }, { - "V": 0.0, - "T": 331.0 + "V": 8.14, + "T": 425.0 }, { - "V": 0.0, - "T": 336.0 + "V": 9.82, + "T": 429.0 }, { - "V": 0.0, - "T": 341.0 + "V": 8.99, + "T": 433.0 }, { - "V": 192.0, - "T": 346.0 + "V": 8.82, + "T": 437.0 }, { - "V": 0.0, - "T": 351.0 + "V": 7.96, + "T": 441.0 }, { - "V": 0.0, - "T": 356.0 + "V": 8.62, + "T": 445.0 }, { - "V": 0.0, - "T": 361.0 + "V": 9.65, + "T": 449.0 }, { - "V": 0.0, - "T": 366.0 + "V": 8.69, + "T": 453.0 }, { - "V": 0.0, - "T": 371.0 + "V": 7.78, + "T": 457.0 }, { - "V": 0.0, - "T": 376.0 + "V": 7.91, + "T": 461.0 }, { - "V": 0.0, - "T": 381.0 + "V": 8.36, + "T": 465.0 }, { - "V": 0.0, - "T": 386.0 + "V": 8.7, + "T": 469.0 }, { - "V": 0.0, - "T": 391.0 + "V": 8.63, + "T": 473.0 }, { - "V": 0.0, - "T": 396.0 + "V": 8.07, + "T": 477.0 }, { - "V": 0.0, - "T": 401.0 + "V": 9.79, + "T": 481.0 }, { - "V": 0.0, - "T": 406.0 + "V": 10.41, + "T": 485.0 }, { "V": 0.0, - "T": 411.0 + "T": 489.0 }, { "V": 0.0, - "T": 416.0 + "T": 493.0 }, { "V": 0.0, - "T": 421.0 + "T": 497.0 }, { "V": 0.0, - "T": 426.0 + "T": 501.0 }, { "V": 0.0, - "T": 431.0 + "T": 505.0 }, { - "V": 192.0, - "T": 436.0 + "V": 0.0, + "T": 509.0 }, { "V": 0.0, - "T": 441.0 + "T": 513.0 }, { "V": 0.0, - "T": 446.0 + "T": 517.0 }, { "V": 0.0, - "T": 451.0 + "T": 521.0 }, { "V": 0.0, - "T": 456.0 + "T": 525.0 }, { "V": 0.0, - "T": 461.0 + "T": 529.0 }, { "V": 0.0, - "T": 466.0 + "T": 533.0 }, { "V": 0.0, - "T": 471.0 + "T": 537.0 }, { "V": 0.0, - "T": 476.0 + "T": 541.0 }, { "V": 0.0, - "T": 481.0 + "T": 545.0 }, { "V": 0.0, - "T": 486.0 + "T": 549.0 }, { "V": 0.0, - "T": 491.0 + "T": 553.0 }, { "V": 0.0, - "T": 496.0 + "T": 557.0 }, { "V": 0.0, - "T": 501.0 + "T": 561.0 }, { "V": 0.0, - "T": 506.0 + "T": 565.0 }, { "V": 0.0, - "T": 511.0 + "T": 569.0 }, { "V": 0.0, - "T": 516.0 + "T": 573.0 }, { "V": 0.0, - "T": 521.0 + "T": 577.0 }, { "V": 0.0, - "T": 526.0 + "T": 581.0 }, { "V": 0.0, - "T": 531.0 + "T": 585.0 }, { "V": 0.0, - "T": 536.0 + "T": 589.0 }, { "V": 0.0, - "T": 541.0 + "T": 593.0 }, { "V": 0.0, - "T": 546.0 - }, + "T": 597.0 + } + ], + "OpsPerSec": null, + "Gen0PerSec": [ { "V": 0.0, - "T": 551.0 + "T": 1.0 }, { "V": 0.0, - "T": 556.0 + "T": 5.0 }, { "V": 0.0, - "T": 561.0 + "T": 9.0 }, { "V": 0.0, - "T": 566.0 + "T": 13.0 }, { "V": 0.0, - "T": 571.0 + "T": 17.0 }, { "V": 0.0, - "T": 576.0 + "T": 21.0 }, { "V": 0.0, - "T": 581.0 + "T": 25.0 }, { "V": 0.0, - "T": 586.0 + "T": 29.0 }, { "V": 0.0, - "T": 591.0 + "T": 33.0 }, { "V": 0.0, - "T": 596.0 + "T": 37.0 }, { "V": 0.0, - "T": 601.0 + "T": 41.0 }, { "V": 0.0, - "T": 606.0 + "T": 45.0 }, { "V": 0.0, - "T": 611.0 + "T": 49.0 }, { "V": 0.0, - "T": 616.0 + "T": 53.0 }, { - "V": 128.0, - "T": 621.0 + "V": 0.0, + "T": 57.0 }, { "V": 0.0, - "T": 626.0 + "T": 61.0 }, { "V": 0.0, - "T": 631.0 + "T": 65.0 }, { "V": 0.0, - "T": 636.0 + "T": 69.0 }, { "V": 0.0, - "T": 641.0 + "T": 73.0 }, { "V": 0.0, - "T": 646.0 - } - ], - "OpsPerSec": null, - "Gen0PerSec": [ + "T": 77.0 + }, { "V": 0.0, - "T": 1.0 + "T": 81.0 }, { "V": 0.0, - "T": 6.0 + "T": 85.0 }, { "V": 0.0, - "T": 11.0 + "T": 89.0 }, { "V": 0.0, - "T": 16.0 + "T": 93.0 }, { "V": 0.0, - "T": 21.0 + "T": 97.0 }, { "V": 0.0, - "T": 26.0 + "T": 101.0 }, { "V": 0.0, - "T": 31.0 + "T": 105.0 }, { "V": 0.0, - "T": 36.0 + "T": 109.0 }, { "V": 0.0, - "T": 41.0 + "T": 113.0 }, { "V": 0.0, - "T": 46.0 + "T": 117.0 }, { "V": 0.0, - "T": 51.0 + "T": 121.0 }, { "V": 0.0, - "T": 56.0 + "T": 125.0 }, { "V": 0.0, - "T": 61.0 + "T": 129.0 }, { "V": 0.0, - "T": 66.0 + "T": 133.0 }, { "V": 0.0, - "T": 71.0 + "T": 137.0 }, { "V": 0.0, - "T": 76.0 + "T": 141.0 }, { "V": 0.0, - "T": 81.0 + "T": 145.0 }, { "V": 0.0, - "T": 86.0 + "T": 149.0 }, { "V": 0.0, - "T": 91.0 + "T": 153.0 }, { "V": 0.0, - "T": 96.0 + "T": 157.0 }, { "V": 0.0, - "T": 101.0 + "T": 161.0 }, { "V": 0.0, - "T": 106.0 + "T": 165.0 }, { "V": 0.0, - "T": 111.0 + "T": 169.0 }, { "V": 0.0, - "T": 116.0 + "T": 173.0 }, { "V": 0.0, - "T": 121.0 + "T": 177.0 }, { "V": 0.0, - "T": 126.0 + "T": 181.0 }, { "V": 0.0, - "T": 131.0 + "T": 185.0 }, { "V": 0.0, - "T": 136.0 + "T": 189.0 }, { "V": 0.0, - "T": 141.0 + "T": 193.0 }, { "V": 0.0, - "T": 146.0 + "T": 197.0 }, { "V": 0.0, - "T": 151.0 + "T": 201.0 }, { "V": 0.0, - "T": 156.0 + "T": 205.0 }, { - "V": 0.0, - "T": 161.0 + "V": 1.0, + "T": 209.0 }, { "V": 0.0, - "T": 166.0 + "T": 213.0 }, { "V": 0.0, - "T": 171.0 + "T": 217.0 }, { "V": 0.0, - "T": 176.0 + "T": 221.0 }, { "V": 0.0, - "T": 181.0 + "T": 225.0 }, { "V": 0.0, - "T": 186.0 + "T": 229.0 }, { "V": 0.0, - "T": 191.0 + "T": 233.0 }, { "V": 0.0, - "T": 196.0 + "T": 237.0 }, { "V": 0.0, - "T": 201.0 + "T": 241.0 }, { "V": 0.0, - "T": 206.0 + "T": 245.0 }, { "V": 0.0, - "T": 211.0 + "T": 249.0 }, { "V": 0.0, - "T": 216.0 + "T": 253.0 }, { "V": 0.0, - "T": 221.0 + "T": 257.0 }, { "V": 0.0, - "T": 226.0 + "T": 261.0 }, { "V": 0.0, - "T": 231.0 + "T": 265.0 }, { "V": 0.0, - "T": 236.0 + "T": 269.0 }, { "V": 0.0, - "T": 241.0 + "T": 273.0 }, { "V": 0.0, - "T": 246.0 + "T": 277.0 }, { "V": 0.0, - "T": 251.0 + "T": 281.0 }, { "V": 0.0, - "T": 256.0 + "T": 285.0 }, { "V": 0.0, - "T": 261.0 + "T": 289.0 }, { "V": 0.0, - "T": 266.0 + "T": 293.0 }, { "V": 0.0, - "T": 271.0 + "T": 297.0 }, { "V": 0.0, - "T": 276.0 + "T": 301.0 }, { "V": 0.0, - "T": 281.0 + "T": 305.0 }, { "V": 0.0, - "T": 286.0 + "T": 309.0 }, { "V": 0.0, - "T": 291.0 + "T": 313.0 }, { "V": 0.0, - "T": 296.0 + "T": 317.0 }, { "V": 0.0, - "T": 301.0 + "T": 321.0 }, { "V": 0.0, - "T": 306.0 + "T": 325.0 }, { "V": 0.0, - "T": 311.0 + "T": 329.0 }, { "V": 0.0, - "T": 316.0 + "T": 333.0 }, { "V": 0.0, - "T": 321.0 + "T": 337.0 }, { "V": 0.0, - "T": 326.0 + "T": 341.0 }, { "V": 0.0, - "T": 331.0 + "T": 345.0 }, { "V": 0.0, - "T": 336.0 + "T": 349.0 }, { "V": 0.0, - "T": 341.0 + "T": 353.0 }, { "V": 0.0, - "T": 346.0 + "T": 357.0 }, { - "V": 0.0, - "T": 351.0 + "V": 1.0, + "T": 361.0 }, { "V": 0.0, - "T": 356.0 + "T": 365.0 }, { "V": 0.0, - "T": 361.0 + "T": 369.0 }, { "V": 0.0, - "T": 366.0 + "T": 373.0 }, { "V": 0.0, - "T": 371.0 + "T": 377.0 }, { "V": 0.0, - "T": 376.0 + "T": 381.0 }, { "V": 0.0, - "T": 381.0 + "T": 385.0 }, { "V": 0.0, - "T": 386.0 + "T": 389.0 }, { "V": 0.0, - "T": 391.0 + "T": 393.0 }, { "V": 0.0, - "T": 396.0 + "T": 397.0 }, { "V": 0.0, @@ -82963,199 +84177,199 @@ }, { "V": 0.0, - "T": 406.0 + "T": 405.0 }, { "V": 0.0, - "T": 411.0 + "T": 409.0 }, { "V": 0.0, - "T": 416.0 + "T": 413.0 }, { "V": 0.0, - "T": 421.0 + "T": 417.0 }, { "V": 0.0, - "T": 426.0 + "T": 421.0 }, { - "V": 0.0, - "T": 431.0 + "V": 1.0, + "T": 425.0 }, { "V": 0.0, - "T": 436.0 + "T": 429.0 }, { "V": 0.0, - "T": 441.0 + "T": 433.0 }, { "V": 0.0, - "T": 446.0 + "T": 437.0 }, { "V": 0.0, - "T": 451.0 + "T": 441.0 }, { "V": 0.0, - "T": 456.0 + "T": 445.0 }, { "V": 0.0, - "T": 461.0 + "T": 449.0 }, { "V": 0.0, - "T": 466.0 + "T": 453.0 }, { "V": 0.0, - "T": 471.0 + "T": 457.0 }, { "V": 0.0, - "T": 476.0 + "T": 461.0 }, { "V": 0.0, - "T": 481.0 + "T": 465.0 }, { "V": 0.0, - "T": 486.0 + "T": 469.0 }, { "V": 0.0, - "T": 491.0 + "T": 473.0 }, { "V": 0.0, - "T": 496.0 + "T": 477.0 }, { "V": 0.0, - "T": 501.0 + "T": 481.0 }, { "V": 0.0, - "T": 506.0 + "T": 485.0 }, { "V": 0.0, - "T": 511.0 + "T": 489.0 }, { "V": 0.0, - "T": 516.0 + "T": 493.0 }, { "V": 0.0, - "T": 521.0 + "T": 497.0 }, { "V": 0.0, - "T": 526.0 + "T": 501.0 }, { "V": 0.0, - "T": 531.0 + "T": 505.0 }, { "V": 0.0, - "T": 536.0 + "T": 509.0 }, { "V": 0.0, - "T": 541.0 + "T": 513.0 }, { "V": 0.0, - "T": 546.0 + "T": 517.0 }, { "V": 0.0, - "T": 551.0 + "T": 521.0 }, { "V": 0.0, - "T": 556.0 + "T": 525.0 }, { "V": 0.0, - "T": 561.0 + "T": 529.0 }, { "V": 0.0, - "T": 566.0 + "T": 533.0 }, { "V": 0.0, - "T": 571.0 + "T": 537.0 }, { "V": 0.0, - "T": 576.0 + "T": 541.0 }, { "V": 0.0, - "T": 581.0 + "T": 545.0 }, { "V": 0.0, - "T": 586.0 + "T": 549.0 }, { "V": 0.0, - "T": 591.0 + "T": 553.0 }, { "V": 0.0, - "T": 596.0 + "T": 557.0 }, { "V": 0.0, - "T": 601.0 + "T": 561.0 }, { "V": 0.0, - "T": 606.0 + "T": 565.0 }, { "V": 0.0, - "T": 611.0 + "T": 569.0 }, { "V": 0.0, - "T": 616.0 + "T": 573.0 }, { "V": 0.0, - "T": 621.0 + "T": 577.0 }, { "V": 0.0, - "T": 626.0 + "T": 581.0 }, { "V": 0.0, - "T": 631.0 + "T": 585.0 }, { "V": 0.0, - "T": 636.0 + "T": 589.0 }, { "V": 0.0, - "T": 641.0 + "T": 593.0 }, { "V": 0.0, - "T": 646.0 + "T": 597.0 } ] } From 01da9ac6a74bed4540eebb8e90ede145dfd3d538 Mon Sep 17 00:00:00 2001 From: Konrad Kokosa Date: Mon, 3 Aug 2026 17:58:47 +0200 Subject: [PATCH 2/4] ZeroGC: stop depending on MethodTable's internal layout for IsLargeObject IsLargeObject(Object*) was the only place in ZeroGC that dereferenced a MethodTable's internal fields (via GetGCSafeMethodTable()->GetBaseSize()). MethodTable/Object's field layout (as mirrored in gcenv.object.h) is private VM implementation detail, not part of the versioned GC/EE interface (gcinterface.h's GC_INTERFACE_MAJOR/MINOR_VERSION) - it can change shape across runtime major versions with no interface version bump at all, which is exactly why ZeroGC.dll binaries are pinned to one target runtime major version. Since ZeroGC already segregates large/pinned objects into their own dedicated arena chunk at allocation time (the isLarge branch in AllocateFromArena), it already knows which objects are large without asking the object itself. This change records the exact address range of every allocation that meets the LOH size threshold (alignedSize >= LARGE_OBJECT_SIZE, matching the removed check's semantics precisely - not the broader isLarge flag, which also covers small pinned/POH allocations) into a small std::map under a critical section, and answers IsLargeObject via a range lookup instead. This removes ZeroGC's only remaining runtime-internal-layout dependency for object introspection. The gcenv.*.h shim headers are still required (their Object*/MethodTable*/gc_alloc_context* type names appear throughout the mandatory IGCHeap/IGCHandleManager interface signatures - unavoidable for any standalone GC), but ZeroGC no longer dereferences any field inside MethodTable's actual struct layout anywhere, so that header's internal field-layout stability no longer matters for this GC's correctness. Verified: builds clean (native/build.ps1), and smoke-tested against GCPerfSim with -lohar/-lohsr/pinned-object args (exercises the LOH and POH allocation paths this change touches) - no crashes, collection_counts stay [0,0,0] as expected for ZeroGC. --- src/ZeroGC/native/ZeroGCHeap.cpp | 46 ++++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/src/ZeroGC/native/ZeroGCHeap.cpp b/src/ZeroGC/native/ZeroGCHeap.cpp index 15e054e137f..2dd98e5cddd 100644 --- a/src/ZeroGC/native/ZeroGCHeap.cpp +++ b/src/ZeroGC/native/ZeroGCHeap.cpp @@ -5,6 +5,7 @@ // #include "ZeroGC.h" #include +#include #if defined(ZEROGC_TRACE) && defined(HOST_WINDOWS) static void ZeroGCTrace(const char* msg) @@ -84,6 +85,19 @@ static const int MAX_FROZEN_SEGMENTS = 64; static FrozenSegment g_frozenSegments[MAX_FROZEN_SEGMENTS]; static CRITICAL_SECTION g_frozenSegmentsLock; +// Tracks the address range of every large/pinned object's dedicated chunk +// (see the isLarge branch in AllocateFromArena), keyed by the chunk's start +// address, so that IsLargeObject() can answer "was this pointer's chunk +// carved out as large?" from our own bookkeeping instead of asking the +// object's MethodTable for its size. This is what lets ZeroGC avoid +// depending on MethodTable's internal field layout (which is private VM +// implementation detail, not part of the versioned GC/EE interface, and can +// change shape across runtime major versions without any interface version +// bump) - the only thing IsLargeObject needs to know, we already decided +// for ourselves at allocation time. +static std::map g_largeObjectRanges; // Start -> End (exclusive) +static CRITICAL_SECTION g_largeObjectRangesLock; + ZeroGCHeap* ZeroGCHeap::CreateAndInitialize() { // NOTE: do NOT call Initialize() here. IGCHeap::Initialize() is a real @@ -98,6 +112,7 @@ HRESULT ZeroGCHeap::Initialize() { ZGC_TRACE("ZeroGCHeap::Initialize - enter"); InitializeCriticalSection(&g_frozenSegmentsLock); + InitializeCriticalSection(&g_largeObjectRangesLock); QueryPerformanceFrequency(&m_qpcFrequency); QueryPerformanceCounter(&m_startTime); @@ -315,6 +330,18 @@ Object* ZeroGCHeap::AllocateFromArena(gc_alloc_context* acontext, size_t size, u acontext->alloc_limit = chunkStart + alignedSize; } + // Record this object's range for IsLargeObject() iff it actually meets + // the LOH size threshold - not merely because it got routed through the + // isLarge chunk-placement path above, which also covers small pinned + // (POH) allocations that are NOT "large objects" by size. This mirrors + // the exact criterion the removed MethodTable::GetBaseSize() check used. + if (alignedSize >= LARGE_OBJECT_SIZE) + { + EnterCriticalSection(&g_largeObjectRangesLock); + g_largeObjectRanges[chunkStart] = chunkStart + alignedSize; + LeaveCriticalSection(&g_largeObjectRangesLock); + } + acontext->alloc_bytes += (int64_t)alignedSize; acontext->alloc_count++; @@ -493,8 +520,23 @@ size_t ZeroGCHeap::GetNow() bool ZeroGCHeap::IsLargeObject(Object* pObj) { - MethodTable* mt = pObj->GetGCSafeMethodTable(); - return mt->GetBaseSize() >= LARGE_OBJECT_SIZE; + // Answered purely from our own allocation-time bookkeeping (see + // AllocateFromArena) instead of dereferencing the object's MethodTable - + // this is the only place ZeroGC used to depend on MethodTable's private, + // unversioned internal layout, which made ZeroGC.dll binaries brittle + // across runtime major versions. Object identity/address is the only + // thing we need here, so no VM-internal type's field layout is touched. + uint8_t* p = (uint8_t*)pObj; + bool found = false; + EnterCriticalSection(&g_largeObjectRangesLock); + auto it = g_largeObjectRanges.upper_bound(p); // first range starting after p + if (it != g_largeObjectRanges.begin()) + { + --it; + found = (p >= it->first && p < it->second); + } + LeaveCriticalSection(&g_largeObjectRangesLock); + return found; } void ZeroGCHeap::ValidateObjectMember(Object* obj) { ZGC_TRACE("ZeroGCHeap::ValidateObjectMember"); } From f1fbfd7574091c0c8924a61904e24472968fed35 Mon Sep 17 00:00:00 2001 From: Konrad Kokosa Date: Tue, 4 Aug 2026 14:50:02 +0200 Subject: [PATCH 3/4] ZeroGC: add standalone unit test for IsLargeObject correctness The IsLargeObject fix in the previous commit (removing the MethodTable dependency) was only smoke-tested by running GCPerfSim/ConsoleApp against a Release build - which never actually exercises IsLargeObject at all. Its only two real call sites in dotnet/runtime are both unreachable in a normal Release build: - Object::ValidateInner (vm/object.cpp) requires USE_CHECKED_OBJECTREFS, which is only defined under _DEBUG (src/coreclr/inc/switches.h:20). - Object::ValidateHeap (gc/gcinternal.h) requires the VERIFY_HEAP compile-time define, only set for the reference GC's own CMake build (gc/CMakeLists.txt), not for an EE/host consuming a standalone GC. This adds a standalone native unit test (test_islargeobject.cpp) that links directly against ZeroGCHeap.cpp/ZeroGCHandles.cpp/dllmain.cpp and calls Alloc()/IsLargeObject() directly, bypassing the EE entirely, giving real, deterministic coverage of the map-based large-object-range tracking: - small vs. just-under-threshold vs. at/above-threshold objects - GC_ALLOC_LARGE_OBJECT_HEAP / GC_ALLOC_PINNED_OBJECT_HEAP flagged allocations below the byte threshold (must NOT be 'large') - unrelated (non-heap) pointers - back-to-back and interleaved small/large allocation sequences All 16 assertions pass. Added run-tests.ps1 to build and run it. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/ZeroGC/native/tests/run-tests.ps1 | 86 +++++++++++++ .../native/tests/test_islargeobject.cpp | 116 ++++++++++++++++++ 2 files changed, 202 insertions(+) create mode 100644 src/ZeroGC/native/tests/run-tests.ps1 create mode 100644 src/ZeroGC/native/tests/test_islargeobject.cpp diff --git a/src/ZeroGC/native/tests/run-tests.ps1 b/src/ZeroGC/native/tests/run-tests.ps1 new file mode 100644 index 00000000000..39e6f9bd0e9 --- /dev/null +++ b/src/ZeroGC/native/tests/run-tests.ps1 @@ -0,0 +1,86 @@ +# run-tests.ps1 - Builds and runs ZeroGC's standalone native unit tests. +# +# These tests link directly against ZeroGCHeap.cpp/ZeroGCHandles.cpp/dllmain.cpp +# and call ZeroGCHeap's methods (Alloc, IsLargeObject, ...) directly, without +# needing a full CoreCLR host. This exists because some ZeroGC logic (e.g. +# IsLargeObject) has real call sites in dotnet/runtime that are unreachable in +# a normal Release build (gated behind USE_CHECKED_OBJECTREFS / _DEBUG, or the +# VERIFY_HEAP compile-time define), so running sample apps against a Release +# coreclr.dll - however long - never actually exercises that code path. These +# tests give direct, deterministic coverage instead. +# +# Usage: +# .\run-tests.ps1 -RuntimeRepo C:\github\runtime +# +param( + [string]$RuntimeRepo = "C:\github\runtime", + [string]$VcVarsPath = "" +) + +$ErrorActionPreference = "Stop" +$nativeSrc = Split-Path $PSScriptRoot -Parent +$testSrc = $PSScriptRoot +$rt = Join-Path $RuntimeRepo "src\coreclr" +$nativeRoot = Join-Path $RuntimeRepo "src\native" + +if (-not (Test-Path $rt)) { + throw "Could not find dotnet/runtime checkout at '$RuntimeRepo' (expected '$rt' to exist)." +} + +if ([string]::IsNullOrEmpty($VcVarsPath)) { + $candidates = @( + "${env:ProgramFiles}\Microsoft Visual Studio\18\IntPreview\VC\Auxiliary\Build\vcvars64.bat", + "${env:ProgramFiles}\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat", + "${env:ProgramFiles}\Microsoft Visual Studio\2022\Professional\VC\Auxiliary\Build\vcvars64.bat", + "${env:ProgramFiles}\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat", + "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars64.bat" + ) + $VcVarsPath = $candidates | Where-Object { Test-Path $_ } | Select-Object -First 1 + if (-not $VcVarsPath) { + throw "Could not locate vcvars64.bat. Pass -VcVarsPath explicitly." + } +} + +$objDir = Join-Path $testSrc "obj" +New-Item -ItemType Directory -Force -Path $objDir | Out-Null + +$includes = @( + $nativeSrc, + (Join-Path $rt "gc"), + (Join-Path $rt "gc\env"), + (Join-Path $rt "inc"), + $nativeRoot +) -join '" /I "' + +$defs = @( + "/DHOST_WINDOWS", "/DHOST_64BIT", "/DHOST_AMD64", + "/DTARGET_WINDOWS", "/DTARGET_AMD64", "/DTARGET_64BIT", "/DBIT64", + "/DWIN32", "/D_WIN32", + "/DFEATURE_STANDALONE_GC", "/DBUILD_AS_STANDALONE", + "/DFEATURE_MANUALLY_MANAGED_CARD_BUNDLES", + "/D_CRT_SECURE_NO_WARNINGS", "/DUNICODE", "/D_UNICODE", "/DNDEBUG" +) + +$sourceFiles = @("dllmain.cpp", "ZeroGCHeap.cpp", "ZeroGCHandles.cpp") | ForEach-Object { "`"$nativeSrc\$_`"" } +$sourceFiles += "`"$testSrc\test_islargeobject.cpp`"" + +$clCmd = "cl.exe /nologo /c /EHsc /std:c++17 /O2 /MD /guard:cf /guard:ehcont /I `"$includes`" $($defs -join ' ') /Fo:`"$objDir\\`" $($sourceFiles -join ' ')" +$objFiles = @("dllmain.obj", "ZeroGCHeap.obj", "ZeroGCHandles.obj", "test_islargeobject.obj") | ForEach-Object { "`"$objDir\$_`"" } +$outExe = Join-Path $objDir "test_islargeobject.exe" +$linkCmd = "link.exe /nologo /guard:cf /guard:ehcont /OUT:`"$outExe`" $($objFiles -join ' ') kernel32.lib advapi32.lib" + +Write-Host "Building ZeroGC native unit tests..." -ForegroundColor Cyan +$output = & $env:ComSpec /c "call `"$VcVarsPath`" >nul 2>&1 && cd /d `"$testSrc`" && $clCmd 2>&1 && $linkCmd 2>&1" +$output | Write-Host + +if (-not (Test-Path $outExe)) { + throw "Build failed: $outExe was not produced." +} + +Write-Host "Running test_islargeobject..." -ForegroundColor Cyan +& $outExe +if ($LASTEXITCODE -ne 0) { + throw "test_islargeobject FAILED (exit code $LASTEXITCODE)." +} + +Write-Host "All native unit tests passed." -ForegroundColor Green diff --git a/src/ZeroGC/native/tests/test_islargeobject.cpp b/src/ZeroGC/native/tests/test_islargeobject.cpp new file mode 100644 index 00000000000..96613d0f357 --- /dev/null +++ b/src/ZeroGC/native/tests/test_islargeobject.cpp @@ -0,0 +1,116 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// +// test_islargeobject.cpp +// +// Standalone, no-CoreCLR-needed correctness test for ZeroGCHeap::IsLargeObject(). +// +// Why this exists: IsLargeObject()'s only two real call sites in dotnet/runtime +// (Object::ValidateInner in vm/object.cpp, and Object::ValidateHeap in +// gc/gcinternal.h) are both unreachable in a normal Release build - the former +// requires USE_CHECKED_OBJECTREFS (only defined under _DEBUG, see +// src/coreclr/inc/switches.h), the latter requires the VERIFY_HEAP compile-time +// define (only set for the CoreCLR reference GC's own build, not the EE/host +// consuming a standalone GC) plus a live heap-verification pass. This means +// ordinary smoke testing (running GCPerfSim/ConsoleApp against a Release +// coreclr.dll with ZeroGC.dll loaded) NEVER actually invokes IsLargeObject, +// regardless of whether its logic is correct. This test calls ZeroGCHeap's +// allocation and IsLargeObject methods directly, bypassing the EE entirely, +// to deterministically verify the map-based large-object-range tracking added +// to remove the MethodTable dependency (see ZeroGCHeap.cpp's g_largeObjectRanges). +// +#include "../ZeroGC.h" +#include + +#define CHECK(cond, msg) \ + do { \ + total++; \ + if (cond) { passed++; } \ + else { printf("FAIL: %s\n", msg); } \ + } while (0) + +int main() +{ + int total = 0, passed = 0; + + ZeroGCHeap* heap = ZeroGCHeap::CreateAndInitialize(); + if (heap == nullptr || FAILED(heap->Initialize())) + { + printf("FATAL: ZeroGCHeap::Initialize failed\n"); + return 1; + } + + gc_alloc_context ctx = {}; + + // 1. smallObj ordinary object (no flags) - well below the 85,000-byte + // LARGE_OBJECT_SIZE threshold - must NOT be classified as large. + Object* smallObj = heap->Alloc(&ctx, 24, 0); + CHECK(smallObj != nullptr, "smallObj alloc returned null"); + CHECK(!heap->IsLargeObject(smallObj), "24-byte object misclassified as large"); + + // 2. Object at exactly the boundary just below LARGE_OBJECT_SIZE (85000). + // alignedSize for a requested size of 84992 (already 8-byte aligned) + // stays at 84992 < 85000 -> must NOT be large. + Object* justUnder = heap->Alloc(&ctx, 84992, 0); + CHECK(justUnder != nullptr, "just-under-threshold alloc returned null"); + CHECK(!heap->IsLargeObject(justUnder), "84992-byte object misclassified as large"); + + // 3. Object at/above LARGE_OBJECT_SIZE with no explicit flag - the + // alignedSize >= LARGE_OBJECT_SIZE branch alone must classify it large + // (this is the core of the fix: previously relied on + // MethodTable::GetBaseSize(), now purely allocation-time bookkeeping). + Object* big = heap->Alloc(&ctx, 100000, 0); + CHECK(big != nullptr, "large alloc returned null"); + CHECK(heap->IsLargeObject(big), "100000-byte object NOT classified as large"); + + // 4. Explicit GC_ALLOC_LARGE_OBJECT_HEAP flag with a size still below the + // byte threshold - the old MethodTable::GetBaseSize() check would have + // said "not large" (smallObj LOH-flagged objects, e.g. some string + // interning paths, are real). Must still say NOT large: the flag + // controls chunk *placement* only, not IsLargeObject's answer, and the + // fix intentionally preserves this exact narrower semantic (see the + // comment above the g_largeObjectRanges recording in AllocateFromArena). + Object* smallLohFlagged = heap->Alloc(&ctx, 100, GC_ALLOC_LARGE_OBJECT_HEAP); + CHECK(smallLohFlagged != nullptr, "smallObj LOH-flagged alloc returned null"); + CHECK(!heap->IsLargeObject(smallLohFlagged), "smallObj LOH-flagged object misclassified as large"); + + // 5. Explicit GC_ALLOC_PINNED_OBJECT_HEAP flag with a smallObj size (typical + // POH usage, e.g. pinned buffers for interop) - routed through the + // same isLarge chunk-placement branch as LOH/big objects, but must + // NOT be reported as a large object. + Object* smallPohFlagged = heap->Alloc(&ctx, 64, GC_ALLOC_PINNED_OBJECT_HEAP); + CHECK(smallPohFlagged != nullptr, "smallObj POH-flagged alloc returned null"); + CHECK(!heap->IsLargeObject(smallPohFlagged), "smallObj POH-flagged object misclassified as large"); + + // 6. A pointer that was never returned by Alloc at all (e.g. a stack + // address) must not be misidentified as falling inside some large + // object's tracked range. + int stackVar = 0; + CHECK(!heap->IsLargeObject((Object*)&stackVar), "unrelated stack address misclassified as large"); + + // 7. Many smallObj objects allocated back-to-back must all still report + // "not large" - guards against the range map accidentally coalescing + // or misindexing adjacent smallObj allocations. + bool allSmallOk = true; + for (int i = 0; i < 64; i++) + { + Object* o = heap->Alloc(&ctx, 32, 0); + if (o == nullptr || heap->IsLargeObject(o)) { allSmallOk = false; break; } + } + CHECK(allSmallOk, "a smallObj object in a back-to-back allocation run was misclassified as large"); + + // 8. Interleave: allocate large, smallObj, large, smallObj - confirms the + // range map correctly distinguishes adjacent large and smallObj objects + // rather than treating everything after the first large object as large. + Object* big2 = heap->Alloc(&ctx, 200000, 0); + Object* small2 = heap->Alloc(&ctx, 16, 0); + Object* big3 = heap->Alloc(&ctx, 90000, GC_ALLOC_LARGE_OBJECT_HEAP); + Object* small3 = heap->Alloc(&ctx, 8, 0); + CHECK(big2 && heap->IsLargeObject(big2), "interleaved big2 misclassified"); + CHECK(small2 && !heap->IsLargeObject(small2), "interleaved small2 misclassified"); + CHECK(big3 && heap->IsLargeObject(big3), "interleaved big3 (LOH-flagged, size>=threshold) misclassified"); + CHECK(small3 && !heap->IsLargeObject(small3), "interleaved small3 misclassified"); + + printf("\n%d/%d checks passed.\n", passed, total); + return (passed == total) ? 0 : 1; +} From 655de55c13f6094f8415198f337014803ea9ce77 Mon Sep 17 00:00:00 2001 From: Konrad Kokosa Date: Tue, 4 Aug 2026 14:58:08 +0200 Subject: [PATCH 4/4] Revert "ZeroGC: add standalone unit test for IsLargeObject correctness" This reverts commit f1fbfd7574091c0c8924a61904e24472968fed35. --- src/ZeroGC/native/tests/run-tests.ps1 | 86 ------------- .../native/tests/test_islargeobject.cpp | 116 ------------------ 2 files changed, 202 deletions(-) delete mode 100644 src/ZeroGC/native/tests/run-tests.ps1 delete mode 100644 src/ZeroGC/native/tests/test_islargeobject.cpp diff --git a/src/ZeroGC/native/tests/run-tests.ps1 b/src/ZeroGC/native/tests/run-tests.ps1 deleted file mode 100644 index 39e6f9bd0e9..00000000000 --- a/src/ZeroGC/native/tests/run-tests.ps1 +++ /dev/null @@ -1,86 +0,0 @@ -# run-tests.ps1 - Builds and runs ZeroGC's standalone native unit tests. -# -# These tests link directly against ZeroGCHeap.cpp/ZeroGCHandles.cpp/dllmain.cpp -# and call ZeroGCHeap's methods (Alloc, IsLargeObject, ...) directly, without -# needing a full CoreCLR host. This exists because some ZeroGC logic (e.g. -# IsLargeObject) has real call sites in dotnet/runtime that are unreachable in -# a normal Release build (gated behind USE_CHECKED_OBJECTREFS / _DEBUG, or the -# VERIFY_HEAP compile-time define), so running sample apps against a Release -# coreclr.dll - however long - never actually exercises that code path. These -# tests give direct, deterministic coverage instead. -# -# Usage: -# .\run-tests.ps1 -RuntimeRepo C:\github\runtime -# -param( - [string]$RuntimeRepo = "C:\github\runtime", - [string]$VcVarsPath = "" -) - -$ErrorActionPreference = "Stop" -$nativeSrc = Split-Path $PSScriptRoot -Parent -$testSrc = $PSScriptRoot -$rt = Join-Path $RuntimeRepo "src\coreclr" -$nativeRoot = Join-Path $RuntimeRepo "src\native" - -if (-not (Test-Path $rt)) { - throw "Could not find dotnet/runtime checkout at '$RuntimeRepo' (expected '$rt' to exist)." -} - -if ([string]::IsNullOrEmpty($VcVarsPath)) { - $candidates = @( - "${env:ProgramFiles}\Microsoft Visual Studio\18\IntPreview\VC\Auxiliary\Build\vcvars64.bat", - "${env:ProgramFiles}\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat", - "${env:ProgramFiles}\Microsoft Visual Studio\2022\Professional\VC\Auxiliary\Build\vcvars64.bat", - "${env:ProgramFiles}\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat", - "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars64.bat" - ) - $VcVarsPath = $candidates | Where-Object { Test-Path $_ } | Select-Object -First 1 - if (-not $VcVarsPath) { - throw "Could not locate vcvars64.bat. Pass -VcVarsPath explicitly." - } -} - -$objDir = Join-Path $testSrc "obj" -New-Item -ItemType Directory -Force -Path $objDir | Out-Null - -$includes = @( - $nativeSrc, - (Join-Path $rt "gc"), - (Join-Path $rt "gc\env"), - (Join-Path $rt "inc"), - $nativeRoot -) -join '" /I "' - -$defs = @( - "/DHOST_WINDOWS", "/DHOST_64BIT", "/DHOST_AMD64", - "/DTARGET_WINDOWS", "/DTARGET_AMD64", "/DTARGET_64BIT", "/DBIT64", - "/DWIN32", "/D_WIN32", - "/DFEATURE_STANDALONE_GC", "/DBUILD_AS_STANDALONE", - "/DFEATURE_MANUALLY_MANAGED_CARD_BUNDLES", - "/D_CRT_SECURE_NO_WARNINGS", "/DUNICODE", "/D_UNICODE", "/DNDEBUG" -) - -$sourceFiles = @("dllmain.cpp", "ZeroGCHeap.cpp", "ZeroGCHandles.cpp") | ForEach-Object { "`"$nativeSrc\$_`"" } -$sourceFiles += "`"$testSrc\test_islargeobject.cpp`"" - -$clCmd = "cl.exe /nologo /c /EHsc /std:c++17 /O2 /MD /guard:cf /guard:ehcont /I `"$includes`" $($defs -join ' ') /Fo:`"$objDir\\`" $($sourceFiles -join ' ')" -$objFiles = @("dllmain.obj", "ZeroGCHeap.obj", "ZeroGCHandles.obj", "test_islargeobject.obj") | ForEach-Object { "`"$objDir\$_`"" } -$outExe = Join-Path $objDir "test_islargeobject.exe" -$linkCmd = "link.exe /nologo /guard:cf /guard:ehcont /OUT:`"$outExe`" $($objFiles -join ' ') kernel32.lib advapi32.lib" - -Write-Host "Building ZeroGC native unit tests..." -ForegroundColor Cyan -$output = & $env:ComSpec /c "call `"$VcVarsPath`" >nul 2>&1 && cd /d `"$testSrc`" && $clCmd 2>&1 && $linkCmd 2>&1" -$output | Write-Host - -if (-not (Test-Path $outExe)) { - throw "Build failed: $outExe was not produced." -} - -Write-Host "Running test_islargeobject..." -ForegroundColor Cyan -& $outExe -if ($LASTEXITCODE -ne 0) { - throw "test_islargeobject FAILED (exit code $LASTEXITCODE)." -} - -Write-Host "All native unit tests passed." -ForegroundColor Green diff --git a/src/ZeroGC/native/tests/test_islargeobject.cpp b/src/ZeroGC/native/tests/test_islargeobject.cpp deleted file mode 100644 index 96613d0f357..00000000000 --- a/src/ZeroGC/native/tests/test_islargeobject.cpp +++ /dev/null @@ -1,116 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// -// test_islargeobject.cpp -// -// Standalone, no-CoreCLR-needed correctness test for ZeroGCHeap::IsLargeObject(). -// -// Why this exists: IsLargeObject()'s only two real call sites in dotnet/runtime -// (Object::ValidateInner in vm/object.cpp, and Object::ValidateHeap in -// gc/gcinternal.h) are both unreachable in a normal Release build - the former -// requires USE_CHECKED_OBJECTREFS (only defined under _DEBUG, see -// src/coreclr/inc/switches.h), the latter requires the VERIFY_HEAP compile-time -// define (only set for the CoreCLR reference GC's own build, not the EE/host -// consuming a standalone GC) plus a live heap-verification pass. This means -// ordinary smoke testing (running GCPerfSim/ConsoleApp against a Release -// coreclr.dll with ZeroGC.dll loaded) NEVER actually invokes IsLargeObject, -// regardless of whether its logic is correct. This test calls ZeroGCHeap's -// allocation and IsLargeObject methods directly, bypassing the EE entirely, -// to deterministically verify the map-based large-object-range tracking added -// to remove the MethodTable dependency (see ZeroGCHeap.cpp's g_largeObjectRanges). -// -#include "../ZeroGC.h" -#include - -#define CHECK(cond, msg) \ - do { \ - total++; \ - if (cond) { passed++; } \ - else { printf("FAIL: %s\n", msg); } \ - } while (0) - -int main() -{ - int total = 0, passed = 0; - - ZeroGCHeap* heap = ZeroGCHeap::CreateAndInitialize(); - if (heap == nullptr || FAILED(heap->Initialize())) - { - printf("FATAL: ZeroGCHeap::Initialize failed\n"); - return 1; - } - - gc_alloc_context ctx = {}; - - // 1. smallObj ordinary object (no flags) - well below the 85,000-byte - // LARGE_OBJECT_SIZE threshold - must NOT be classified as large. - Object* smallObj = heap->Alloc(&ctx, 24, 0); - CHECK(smallObj != nullptr, "smallObj alloc returned null"); - CHECK(!heap->IsLargeObject(smallObj), "24-byte object misclassified as large"); - - // 2. Object at exactly the boundary just below LARGE_OBJECT_SIZE (85000). - // alignedSize for a requested size of 84992 (already 8-byte aligned) - // stays at 84992 < 85000 -> must NOT be large. - Object* justUnder = heap->Alloc(&ctx, 84992, 0); - CHECK(justUnder != nullptr, "just-under-threshold alloc returned null"); - CHECK(!heap->IsLargeObject(justUnder), "84992-byte object misclassified as large"); - - // 3. Object at/above LARGE_OBJECT_SIZE with no explicit flag - the - // alignedSize >= LARGE_OBJECT_SIZE branch alone must classify it large - // (this is the core of the fix: previously relied on - // MethodTable::GetBaseSize(), now purely allocation-time bookkeeping). - Object* big = heap->Alloc(&ctx, 100000, 0); - CHECK(big != nullptr, "large alloc returned null"); - CHECK(heap->IsLargeObject(big), "100000-byte object NOT classified as large"); - - // 4. Explicit GC_ALLOC_LARGE_OBJECT_HEAP flag with a size still below the - // byte threshold - the old MethodTable::GetBaseSize() check would have - // said "not large" (smallObj LOH-flagged objects, e.g. some string - // interning paths, are real). Must still say NOT large: the flag - // controls chunk *placement* only, not IsLargeObject's answer, and the - // fix intentionally preserves this exact narrower semantic (see the - // comment above the g_largeObjectRanges recording in AllocateFromArena). - Object* smallLohFlagged = heap->Alloc(&ctx, 100, GC_ALLOC_LARGE_OBJECT_HEAP); - CHECK(smallLohFlagged != nullptr, "smallObj LOH-flagged alloc returned null"); - CHECK(!heap->IsLargeObject(smallLohFlagged), "smallObj LOH-flagged object misclassified as large"); - - // 5. Explicit GC_ALLOC_PINNED_OBJECT_HEAP flag with a smallObj size (typical - // POH usage, e.g. pinned buffers for interop) - routed through the - // same isLarge chunk-placement branch as LOH/big objects, but must - // NOT be reported as a large object. - Object* smallPohFlagged = heap->Alloc(&ctx, 64, GC_ALLOC_PINNED_OBJECT_HEAP); - CHECK(smallPohFlagged != nullptr, "smallObj POH-flagged alloc returned null"); - CHECK(!heap->IsLargeObject(smallPohFlagged), "smallObj POH-flagged object misclassified as large"); - - // 6. A pointer that was never returned by Alloc at all (e.g. a stack - // address) must not be misidentified as falling inside some large - // object's tracked range. - int stackVar = 0; - CHECK(!heap->IsLargeObject((Object*)&stackVar), "unrelated stack address misclassified as large"); - - // 7. Many smallObj objects allocated back-to-back must all still report - // "not large" - guards against the range map accidentally coalescing - // or misindexing adjacent smallObj allocations. - bool allSmallOk = true; - for (int i = 0; i < 64; i++) - { - Object* o = heap->Alloc(&ctx, 32, 0); - if (o == nullptr || heap->IsLargeObject(o)) { allSmallOk = false; break; } - } - CHECK(allSmallOk, "a smallObj object in a back-to-back allocation run was misclassified as large"); - - // 8. Interleave: allocate large, smallObj, large, smallObj - confirms the - // range map correctly distinguishes adjacent large and smallObj objects - // rather than treating everything after the first large object as large. - Object* big2 = heap->Alloc(&ctx, 200000, 0); - Object* small2 = heap->Alloc(&ctx, 16, 0); - Object* big3 = heap->Alloc(&ctx, 90000, GC_ALLOC_LARGE_OBJECT_HEAP); - Object* small3 = heap->Alloc(&ctx, 8, 0); - CHECK(big2 && heap->IsLargeObject(big2), "interleaved big2 misclassified"); - CHECK(small2 && !heap->IsLargeObject(small2), "interleaved small2 misclassified"); - CHECK(big3 && heap->IsLargeObject(big3), "interleaved big3 (LOH-flagged, size>=threshold) misclassified"); - CHECK(small3 && !heap->IsLargeObject(small3), "interleaved small3 misclassified"); - - printf("\n%d/%d checks passed.\n", passed, total); - return (passed == total) ? 0 : 1; -}