Show / Hide Table of Contents

Class MetricStatisticsDefinition

The metric statistics values with dimension details.

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

Properties

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public List<MetricDimensionDefinition> Dimensions { get; set; }
Property Value
Type Description
List<MetricDimensionDefinition>

The dimensions of the metric.

LowerQuartile

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

The first quartile value of the metric.

Max

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

The maximum value of the metric.

Median

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

The median value of the metric.

Min

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

The minimum value of the metric.

Unit

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

The unit of the metric value.

UpperQuartile

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

The third quartile value of the metric.

In this article
Back to top