Show / Hide Table of Contents

Class AwrDatabaseMetricSummary

The summary of the AWR metric data for a particular metric at a specific time.

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

Properties

AvgValue

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

The average value of the sampling period.

MaxValue

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

The maximum value of the sampling period.

MinValue

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

The minimum value of the sampling period.

Name

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

The name of the metric.

Remarks

Required

Timestamp

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

The time of the sampling.

In this article
Back to top