Show / Hide Table of Contents

Class SummarizedMetricData

The recorded metric value at a specific timestamp.

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

Properties

AggregatedValue

Declaration
[JsonProperty(PropertyName = "aggregatedValue")]
public float? AggregatedValue { get; set; }
Property Value
Type Description
float?

The aggregated metric value for the specified request.

AggregationMethod

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

The aggregation method used for aggregating the metric values. The aggregation method depends on the metric itself.

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public Dictionary<string, DimensionValue> Dimensions { get; set; }
Property Value
Type Description
Dictionary<string, DimensionValue>

Qualifiers provided in the definition of the returned metric. Available dimensions vary by metric namespace.

Resolution

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

The duration over which the metric data is aggregated. Supported values: 1m-60m, 1h-24h, 1d.

SampleTime

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

The time at which the metric data was recorded.

In this article
Back to top