Show / Hide Table of Contents

Class DataPoints

The aggregated datapoints of the metric.

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

Properties

Timestamp

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

The data point date and time in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".

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