Show / Hide Table of Contents

Class AwrDbSysstatSummary

The summary of the AWR SYSSTAT data.

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

Properties

AvgValue

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

The average value of the SYSSTAT.

Category

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

The name of the SYSSTAT category.

CurrentValue

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

The last value of the SYSSTAT.

Name

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

The name of the SYSSTAT.

Remarks

Required

TimeBegin

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

The start time of the SYSSTAT.

TimeEnd

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

The end time of the SYSSTAT.

In this article
Back to top