Show / Hide Table of Contents

Class PostMetricDataDetails

An array of metric objects containing raw metric data points to be posted to the Monitoring service.

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

Properties

BatchAtomicity

Declaration
[JsonProperty(PropertyName = "batchAtomicity")]
[JsonConverter(typeof(StringEnumConverter))]
public PostMetricDataDetails.BatchAtomicityEnum? BatchAtomicity { get; set; }
Property Value
Type Description
PostMetricDataDetails.BatchAtomicityEnum?

Batch atomicity behavior. Requires either partial or full pass of input validation for metric objects in PostMetricData requests. The default value of NON_ATOMIC requires a partial pass: at least one metric object in the request must pass input validation, and any objects that failed validation are identified in the returned summary, along with their error messages. A value of ATOMIC requires a full pass: all metric objects in the request must pass input validation.
Example: NON_ATOMIC

MetricData

Declaration
[Required(ErrorMessage = "MetricData is required.")]
[JsonProperty(PropertyName = "metricData")]
public List<MetricDataDetails> MetricData { get; set; }
Property Value
Type Description
List<MetricDataDetails>

A metric object containing raw metric data points to be posted to the Monitoring service.

Remarks

Required

In this article
Back to top