Show / Hide Table of Contents

Class AwrDbCpuUsageCollection

The AWR CPU usage data.

Inheritance
object
AwrQueryResult
AwrDbCpuUsageCollection
Inherited Members
AwrQueryResult.Name
AwrQueryResult.Version
AwrQueryResult.QueryKey
AwrQueryResult.DbQueryTimeInSecs
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 AwrDbCpuUsageCollection : AwrQueryResult

Properties

CpuCount

Declaration
[JsonProperty(PropertyName = "cpuCount")]
public int? CpuCount { get; set; }
Property Value
Type Description
int?

The number of CPUs available for the database to use.

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<AwrDbCpuUsageSummary> Items { get; set; }
Property Value
Type Description
List<AwrDbCpuUsageSummary>

A list of AWR CPU usage summary data.

NumCpuCores

Declaration
[JsonProperty(PropertyName = "numCpuCores")]
public int? NumCpuCores { get; set; }
Property Value
Type Description
int?

The number of available CPU cores, which include subcores of multicore and single-core CPUs.

NumCpus

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

The number of available CPUs or processors.

In this article
Back to top