Show / Hide Table of Contents

Class AggregatedDatapoint

A timestamp-value pair returned for the specified request.

Inheritance
object
AggregatedDatapoint
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MonitoringService.Models
Assembly: OCI.DotNetSDK.Monitoring.dll
Syntax
public class AggregatedDatapoint

Properties

Timestamp

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

The date and time associated with the value of this data point. Format defined by RFC3339.
Example: 2023-02-01T01:02:29.600Z

Remarks

Required

Value

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

Numeric value of the metric.
Example: 10.4

Remarks

Required

In this article
Back to top