When starting the server on MacOS, the below error is raised :
[21:08:52,652] System.IO.DirectoryNotFoundException: Could not find a part of the path '/proc/stat'.
Looking at PageFaultStatistics.cs, it only handles Windows else it supposes it's Linux whereas it could be also MacOS :
public PageFaultsPerSecondStatistic()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
performanceStatistic = new PerformanceCounterStatistic("Memory", "Pages/sec", null);
}
else
{
performanceStatistic = new LinuxPageFaultsPerSecondStatistic();
}
}