Show / Hide Table of Contents

Class MetricDataPoint

The metric values with dimension details.

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

Properties

Dimensions

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

The dimensions of the metric.

Unit

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

The unit of the metric value.

Value

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

The value of the metric.

In this article
Back to top