Show / Hide Table of Contents

Class MonitoringTargetDetailsResponse

The destination metric for data transferred from the source. For configuration instructions, see Creating a Connector.

Inheritance
object
TargetDetailsResponse
MonitoringTargetDetailsResponse
Inherited Members
TargetDetailsResponse.PrivateEndpointMetadata
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class MonitoringTargetDetailsResponse : TargetDetailsResponse

Properties

CompartmentId

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

The OCID of the compartment containing the metric.

Remarks

Required

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public List<DimensionDetails> Dimensions { get; set; }
Property Value
Type Description
List<DimensionDetails>

List of dimension names and values.

Metric

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

The name of the metric. Example: CpuUtilization

Remarks

Required

MetricNamespace

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

The namespace of the metric. Example: oci_computeagent

Remarks

Required

In this article
Back to top