Show / Hide Table of Contents

Class AwrDatabaseWaitEventSummary

The summary of the AWR wait event time series data for one event.

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

Properties

AvgWaitTimePerSec

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

The average wait time per second.

Name

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

The name of the event.

Remarks

Required

SnapshotIdentifier

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

The ID of the snapshot. The snapshot identifier is not the OCID. It can be retrieved from the following endpoint: /awrHubs/{awrHubId}/awrDatabaseSnapshots

TimeBegin

Declaration
[JsonProperty(PropertyName = "timeBegin")]
public DateTime? TimeBegin { get; set; }
Property Value
Type Description
DateTime?

The begin time of the wait event.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

The end time of the wait event.

WaitsPerSec

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

The wait count per second.

In this article
Back to top