Show / Hide Table of Contents

Class AwrDatabaseWaitEventBucketSummary

A summary of the AWR wait event bucket and waits percentage.

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

Properties

Category

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

The name of the wait event frequency category. Normally, it is the upper range of the waits within the AWR wait event bucket.

Remarks

Required

Percentage

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

The percentage of waits in a wait event bucket over the total waits of the database.

Remarks

Required

In this article
Back to top