Show / Hide Table of Contents

Class DatabaseIOAggregateMetrics

The database Input/Output metric details.

Inheritance
object
DatabaseIOAggregateMetrics
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class DatabaseIOAggregateMetrics

Properties

IoThroughput

Declaration
[JsonProperty(PropertyName = "ioThroughput")]
public List<MetricDataPoint> IoThroughput { get; set; }
Property Value
Type Description
List<MetricDataPoint>

The IOThroughput metrics grouped by IOType for a specific Managed Database.

IoThroughputStatistics

Declaration
[JsonProperty(PropertyName = "ioThroughputStatistics")]
public List<MetricStatisticsDefinition> IoThroughputStatistics { get; set; }
Property Value
Type Description
List<MetricStatisticsDefinition>

The IOThroughput metric statistics such as min, max, mean, lowerQuartile, and upperQuartile.

Iops

Declaration
[JsonProperty(PropertyName = "iops")]
public List<MetricDataPoint> Iops { get; set; }
Property Value
Type Description
List<MetricDataPoint>

The Input/Output Operations Per Second metrics grouped by IOType for a specific Managed Database.

IopsStatistics

Declaration
[JsonProperty(PropertyName = "iopsStatistics")]
public List<MetricStatisticsDefinition> IopsStatistics { get; set; }
Property Value
Type Description
List<MetricStatisticsDefinition>

The Input/Output metric statistics such as min, max, mean, lowerQuartile, and upperQuartile.

In this article
Back to top