4 references to Hundred
Microsoft.Extensions.Diagnostics.ResourceMonitoring (4)
Windows\WindowsContainerSnapshotProvider.cs (4)
198
_memoryPercentage = Math.Min(
Hundred
, memoryUsage / _memoryLimit *
Hundred
); // Don't change calculation order, otherwise we loose some precision
232
_cpuPercentage = Math.Min(
Hundred
, usageTickDelta / timeTickDelta *
Hundred
); // Don't change calculation order, otherwise precision is lost.