Akka.Cluster.PerformanceCounterMetricsCollector.SystemMaxMemory C# (CSharp) Method

SystemMaxMemory() public method

Gets the total amount of system memory. Creates a new instance each time.
public SystemMaxMemory ( ) : Metric
return Metric
        public Metric SystemMaxMemory()
        {
            return Metric.Create(StandardMetrics.SystemMemoryMax,
                IsRunningOnMono
                    ? _monoSystemMaxMemory.RawValue
                    : GetVbTotalPhysicalMemory());
        }