show total number of process threads on show stats and json..

This commit is contained in:
UbitUmarov
2021-07-22 20:34:59 +01:00
parent 3ab30e05e9
commit c62055bd5f
2 changed files with 14 additions and 10 deletions

View File

@@ -71,6 +71,7 @@ namespace OpenSim.Framework.Monitoring
Math.Round(myprocess.PeakWorkingSet64 / 1024.0 / 1024.0),
Math.Round(myprocess.PeakPagedMemorySize64 / 1024.0 / 1024.0),
Math.Round(myprocess.PeakVirtualMemorySize64 / 1024.0 / 1024.0));
sb.AppendFormat("\nTotal process Threads {0}\n", myprocess.Threads.Count);
}
}
catch