Show / Hide Table of Contents

Class AgentExtensionHandlerMetricMappingDetails

Specific metric mapping configurations for Agent Extension Handlers.

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

Properties

CollectorMetricName

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

Metric name as defined by the collector.

Remarks

Required

IsSkipUpload

Declaration
[JsonProperty(PropertyName = "isSkipUpload")]
public bool? IsSkipUpload { get; set; }
Property Value
Type Description
bool?

Is ignoring this metric.

MetricUploadIntervalInSeconds

Declaration
[JsonProperty(PropertyName = "metricUploadIntervalInSeconds")]
public int? MetricUploadIntervalInSeconds { get; set; }
Property Value
Type Description
int?

Metric upload interval in seconds. Any metric sent by telegraf/collectd before the configured interval expires will be dropped.

TelemetryMetricName

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

Metric name to be upload to telemetry.

In this article
Back to top