Show / Hide Table of Contents

Class HostMemoryStatistics

Contains memory statistics.

Inheritance
object
HostResourceStatistics
HostMemoryStatistics
Inherited Members
HostResourceStatistics.Usage
HostResourceStatistics.Capacity
HostResourceStatistics.UtilizationPercent
HostResourceStatistics.UsageChangePercent
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class HostMemoryStatistics : HostResourceStatistics

Properties

AvailableMemory

Declaration
[JsonProperty(PropertyName = "availableMemory")]
public double AvailableMemory { get; set; }
Property Value
Type Description
double

FreeMemory

Declaration
[JsonProperty(PropertyName = "freeMemory")]
public double FreeMemory { get; set; }
Property Value
Type Description
double

HugePageSizeInMB

Declaration
[JsonProperty(PropertyName = "hugePageSizeInMB")]
public double HugePageSizeInMB { get; set; }
Property Value
Type Description
double

Size of huge pages in megabytes.

HugePagesFree

Declaration
[JsonProperty(PropertyName = "hugePagesFree")]
public int? HugePagesFree { get; set; }
Property Value
Type Description
int?

Total number of available huge pages.

HugePagesReserved

Declaration
[JsonProperty(PropertyName = "hugePagesReserved")]
public int? HugePagesReserved { get; set; }
Property Value
Type Description
int?

Total number of huge pages which are used or reserved.

HugePagesTotal

Declaration
[JsonProperty(PropertyName = "hugePagesTotal")]
public int? HugePagesTotal { get; set; }
Property Value
Type Description
int?

Total number of huge pages.

Load

Declaration
[JsonProperty(PropertyName = "load")]
public SummaryStatistics Load { get; set; }
Property Value
Type Description
SummaryStatistics
In this article
Back to top