Show / Hide Table of Contents

Class AwrDatabaseSysstatSummary

The summary of the AWR SYSSTAT data.

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

Properties

AvgValue

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

The average value of the SYSSTAT. The units are stats name/val per the time period {timeBegin - timeEnd}.

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. The units are stats name/val per the time period {timeBegin - timeEnd}.

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