Show / Hide Table of Contents

Class DatabaseInstanceHomeMetricsDefinition

The response containing the CPU, Wait, DB Time, and Memory metrics for a specific Oracle Real Application Clusters (Oracle RAC) database instance.

Inheritance
object
DatabaseInstanceHomeMetricsDefinition
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 DatabaseInstanceHomeMetricsDefinition

Properties

ActivityTimeSeriesMetrics

Declaration
[Required(ErrorMessage = "ActivityTimeSeriesMetrics is required.")]
[JsonProperty(PropertyName = "activityTimeSeriesMetrics")]
public List<ActivityTimeSeriesMetrics> ActivityTimeSeriesMetrics { get; set; }
Property Value
Type Description
List<ActivityTimeSeriesMetrics>

A list of the active session metrics for CPU and Wait time for a specific Oracle Real Application Clusters (Oracle RAC) database instance.

Remarks

Required

CpuUtilizationAggregateMetrics

Declaration
[JsonProperty(PropertyName = "cpuUtilizationAggregateMetrics")]
public CpuUtilizationAggregateMetrics CpuUtilizationAggregateMetrics { get; set; }
Property Value
Type Description
CpuUtilizationAggregateMetrics

DbTimeAggregateMetrics

Declaration
[Required(ErrorMessage = "DbTimeAggregateMetrics is required.")]
[JsonProperty(PropertyName = "dbTimeAggregateMetrics")]
public DatabaseTimeAggregateMetrics DbTimeAggregateMetrics { get; set; }
Property Value
Type Description
DatabaseTimeAggregateMetrics
Remarks

Required

InstanceName

Declaration
[Required(ErrorMessage = "InstanceName is required.")]
[JsonProperty(PropertyName = "instanceName")]
public string InstanceName { get; set; }
Property Value
Type Description
string

The name of the Oracle Real Application Clusters (Oracle RAC) database instance to which the corresponding metrics belong.

Remarks

Required

InstanceNumber

Declaration
[Required(ErrorMessage = "InstanceNumber is required.")]
[JsonProperty(PropertyName = "instanceNumber")]
public int? InstanceNumber { get; set; }
Property Value
Type Description
int?

The number of Oracle Real Application Clusters (Oracle RAC) database instance to which the corresponding metrics belong.

Remarks

Required

IoAggregateMetrics

Declaration
[Required(ErrorMessage = "IoAggregateMetrics is required.")]
[JsonProperty(PropertyName = "ioAggregateMetrics")]
public DatabaseIOAggregateMetrics IoAggregateMetrics { get; set; }
Property Value
Type Description
DatabaseIOAggregateMetrics
Remarks

Required

MemoryAggregateMetrics

Declaration
[Required(ErrorMessage = "MemoryAggregateMetrics is required.")]
[JsonProperty(PropertyName = "memoryAggregateMetrics")]
public MemoryAggregateMetrics MemoryAggregateMetrics { get; set; }
Property Value
Type Description
MemoryAggregateMetrics
Remarks

Required

In this article
Back to top