Show / Hide Table of Contents

Class HostCpuUsage

CPU Usage metric for the host

Inheritance
object
HostPerformanceMetricGroup
HostCpuUsage
Inherited Members
HostPerformanceMetricGroup.TimeCollected
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 HostCpuUsage : HostPerformanceMetricGroup

Properties

CpuIdleInPercent

Declaration
[JsonProperty(PropertyName = "cpuIdleInPercent")]
public float? CpuIdleInPercent { get; set; }
Property Value
Type Description
float?

Amount of CPU idle time in percentage

CpuLoad15min

Declaration
[JsonProperty(PropertyName = "cpuLoad15min")]
public float? CpuLoad15min { get; set; }
Property Value
Type Description
float?

Load average in the last 15 minutes

CpuLoad1min

Declaration
[JsonProperty(PropertyName = "cpuLoad1min")]
public float? CpuLoad1min { get; set; }
Property Value
Type Description
float?

Load average in the last 1 minute

CpuLoad5min

Declaration
[JsonProperty(PropertyName = "cpuLoad5min")]
public float? CpuLoad5min { get; set; }
Property Value
Type Description
float?

Load average in the last 5 minutes

CpuStolenInPercent

Declaration
[JsonProperty(PropertyName = "cpuStolenInPercent")]
public float? CpuStolenInPercent { get; set; }
Property Value
Type Description
float?

Amount of CPU time stolen in percentage

CpuSystemModeInPercent

Declaration
[JsonProperty(PropertyName = "cpuSystemModeInPercent")]
public float? CpuSystemModeInPercent { get; set; }
Property Value
Type Description
float?

Percentage of CPU time spent in system mode

CpuUsageInSec

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

Amount of CPU Time spent in seconds

CpuUserModeInPercent

Declaration
[JsonProperty(PropertyName = "cpuUserModeInPercent")]
public float? CpuUserModeInPercent { get; set; }
Property Value
Type Description
float?

Percentage of CPU time spent in user mode

CpuUtilizationInPercent

Declaration
[JsonProperty(PropertyName = "cpuUtilizationInPercent")]
public float? CpuUtilizationInPercent { get; set; }
Property Value
Type Description
float?

Amount of CPU Time spent in percentage

In this article
Back to top