Show / Hide Table of Contents

Class AwrDatabaseCpuUsageCollection

The AWR CPU usage data.

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

Properties

DatabaseCpuCount

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

The number of CPUs available for the database to use.

HostCpuCount

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

The number of available CPUs or processors.

Items

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

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.

In this article
Back to top