Show / Hide Table of Contents

Class OperationalMetricsSource

Unified monitoring agent operational metrics source object.

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

Properties

Metrics

Declaration
[JsonProperty(PropertyName = "metrics")]
public List<string> Metrics { get; set; }
Property Value
Type Description
List<string>

List of unified monitoring agent operational metrics.

RecordInput

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

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OperationalMetricsSource.TypeEnum? Type { get; set; }
Property Value
Type Description
OperationalMetricsSource.TypeEnum?

Type of the unified monitoring agent operational metrics source object.

Remarks

Required

In this article
Back to top