Show / Hide Table of Contents

Class HostIoUsage

Host IO Performance Metrics

Inheritance
object
HostPerformanceMetricGroup
HostIoUsage
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 HostIoUsage : HostPerformanceMetricGroup

Properties

DiskBytesRead

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

Bytes Read

DiskBytesWritten

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

Bytes Written

DiskIops

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

IO Transactions per second

DiskIopsRead

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

Read transactions per second

DiskIopsWritten

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

Write transactions per second

MountPoint

Declaration
[JsonProperty(PropertyName = "mountPoint")]
public string MountPoint { get; set; }
Property Value
Type Description
string

Mount point

In this article
Back to top