You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version Information
Version of Akka.NET? All
Which Akka.NET Modules? Akka.Cluster.Metrics
Describe the bug
Based on our investigation in #4142 we found that Process.MaxWorkingSet is reporting erroneous values. This value is being used in the MemoryMetricsSelector
Expected behavior MemoryMetricsSelector should be using the "committed heap metrics" that is not available before netcoreapp3.1.
The correct way of doing this is to use the "gc-heap-committed" metrics from the EventCounters API
Actual behavior Process.MaxWorkingSet always returns 1.34 megabyte, a very useless value.
The text was updated successfully, but these errors were encountered:
Version Information
Version of Akka.NET? All
Which Akka.NET Modules? Akka.Cluster.Metrics
Describe the bug
Based on our investigation in #4142 we found that
Process.MaxWorkingSet
is reporting erroneous values. This value is being used in theMemoryMetricsSelector
Expected behavior
MemoryMetricsSelector
should be using the "committed heap metrics" that is not available before netcoreapp3.1.The correct way of doing this is to use the "gc-heap-committed" metrics from the
EventCounters
APIActual behavior
Process.MaxWorkingSet
always returns 1.34 megabyte, a very useless value.The text was updated successfully, but these errors were encountered: