-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea4568a
commit 4f2c1bb
Showing
1 changed file
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
using System; | ||
using System.Diagnostics.CodeAnalysis; | ||
using System.IO; | ||
using System.Net; | ||
using System.Runtime.InteropServices; | ||
using static System.Console; | ||
|
||
// Variant of https://github.com/dotnet/core/tree/main/samples/dotnet-runtimeinfo | ||
// Ascii text: https://ascii.co.uk/text (Univers font) | ||
|
||
WriteLine("""DotNet Console Application..."""); | ||
|
||
const double Mebi = 1024 * 1024; | ||
const double Gibi = Mebi * 1024; | ||
GCMemoryInfo gcInfo = GC.GetGCMemoryInfo(); | ||
long totalMemoryBytes = gcInfo.TotalAvailableMemoryBytes; | ||
|
||
// OS and .NET information | ||
WriteLine($"{nameof(RuntimeInformation.OSArchitecture)}: {RuntimeInformation.OSArchitecture}"); | ||
WriteLine($"{nameof(RuntimeInformation.OSDescription)}: {RuntimeInformation.OSDescription}"); | ||
WriteLine($"{nameof(RuntimeInformation.FrameworkDescription)}: {RuntimeInformation.FrameworkDescription}"); | ||
WriteLine(); | ||
|
||
// Environment information | ||
WriteLine($"{nameof(Environment.UserName)}: {Environment.UserName}"); | ||
WriteLine($"HostName : {Dns.GetHostName()}"); | ||
WriteLine(); | ||
|
||
// Hardware information | ||
WriteLine($"{nameof(Environment.ProcessorCount)}: {Environment.ProcessorCount}"); | ||
WriteLine($"{nameof(GCMemoryInfo.TotalAvailableMemoryBytes)}: {totalMemoryBytes} ({GetInBestUnit(totalMemoryBytes)})"); | ||
|
||
string[] memoryLimitPaths = new string[] | ||
{ | ||
"/sys/fs/cgroup/memory.max", | ||
"/sys/fs/cgroup/memory.high", | ||
"/sys/fs/cgroup/memory.low", | ||
"/sys/fs/cgroup/memory/memory.limit_in_bytes", | ||
}; | ||
|
||
string[] currentMemoryPaths = new string[] | ||
{ | ||
"/sys/fs/cgroup/memory.current", | ||
"/sys/fs/cgroup/memory/memory.usage_in_bytes", | ||
}; | ||
|
||
// cgroup information | ||
if (OperatingSystem.IsLinux() && | ||
GetBestValue(memoryLimitPaths, out long memoryLimit, out string? bestMemoryLimitPath) && | ||
memoryLimit > 0) | ||
{ | ||
// get memory cgroup information | ||
GetBestValue(currentMemoryPaths, out long currentMemory, out string? memoryPath); | ||
|
||
WriteLine($"cgroup memory constraint: {bestMemoryLimitPath}"); | ||
WriteLine($"cgroup memory limit: {memoryLimit} ({GetInBestUnit(memoryLimit)})"); | ||
WriteLine($"cgroup memory usage: {currentMemory} ({GetInBestUnit(currentMemory)})"); | ||
WriteLine($"GC Hard limit %: {(double)totalMemoryBytes/memoryLimit * 100:N0}"); | ||
} | ||
|
||
string GetInBestUnit(long size) | ||
{ | ||
if (size < Mebi) | ||
{ | ||
return $"{size} bytes"; | ||
} | ||
else if (size < Gibi) | ||
{ | ||
double mebibytes = size / Mebi; | ||
return $"{mebibytes:F} MiB"; | ||
} | ||
else | ||
{ | ||
double gibibytes = size / Gibi; | ||
return $"{gibibytes:F} GiB"; | ||
} | ||
} | ||
|
||
bool GetBestValue(string[] paths, out long limit, [NotNullWhen(true)] out string? bestPath) | ||
{ | ||
foreach (string path in paths) | ||
{ | ||
if (Path.Exists(path) && | ||
long.TryParse(File.ReadAllText(path), out limit)) | ||
{ | ||
bestPath = path; | ||
return true; | ||
} | ||
} | ||
|
||
bestPath = null; | ||
limit = 0; | ||
return false; | ||
} | ||
|
||
Console.WriteLine("""Run..."""); | ||
while (true); |