Show / Hide Table of Contents

Class InstanceMetrics

Object containing instance metrics.

Inheritance
object
InstanceMetrics
Inherited Members
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 InstanceMetrics

Properties

Capacity

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

The maximum allocated amount of the resource metric type (CPU, STORAGE) for a set of databases.

HostName

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

The hostname of the database insight resource.

InstanceName

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

The instance name of the database insight resource.

TotalHostCapacity

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

The maximum host CPUs (cores x threads/core) on the underlying infrastructure. This only applies to CPU and does not not apply for Autonomous Databases.

Usage

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

Total amount used of the resource metric type (CPU, STORAGE).

UsageChangePercent

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

Change in resource utilization in percentage

UtilizationPercent

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

Resource utilization in percentage

In this article
Back to top