Show / Hide Table of Contents

Class MetricPropertySummary

A summary of the properties that define a metric.

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

Properties

Dimensions

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

Qualifiers provided in a metric definition. Available dimensions vary by metric namespace.

MetricName

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

The name of the metric.

Remarks

Required

In this article
Back to top