Show / Hide Table of Contents

Class AgentExtensionHandlerConfiguration

Specific resource mapping configurations for Agent Extension Handlers.

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

Properties

CollectdResourceNameConfig

Declaration
[JsonProperty(PropertyName = "collectdResourceNameConfig")]
public CollectdResourceNameConfigurationDetails CollectdResourceNameConfig { get; set; }
Property Value
Type Description
CollectdResourceNameConfigurationDetails

CollectorTypes

Declaration
[Required(ErrorMessage = "CollectorTypes is required.")]
[JsonProperty(PropertyName = "collectorTypes")]
public List<string> CollectorTypes { get; set; }
Property Value
Type Description
List<string>

List of collector/plugin names.

Remarks

Required

HandlerProperties

Declaration
[JsonProperty(PropertyName = "handlerProperties")]
public List<AgentExtensionHandlerConfigurationProperty> HandlerProperties { get; set; }
Property Value
Type Description
List<AgentExtensionHandlerConfigurationProperty>

List of handler configuration properties

MetricMappings

Declaration
[JsonProperty(PropertyName = "metricMappings")]
public List<AgentExtensionHandlerMetricMappingDetails> MetricMappings { get; set; }
Property Value
Type Description
List<AgentExtensionHandlerMetricMappingDetails>

List of AgentExtensionHandlerMetricMappingDetails.

MetricNameConfig

Declaration
[JsonProperty(PropertyName = "metricNameConfig")]
public MetricNameConfigurationDetails MetricNameConfig { get; set; }
Property Value
Type Description
MetricNameConfigurationDetails

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.

TelegrafResourceNameConfig

Declaration
[JsonProperty(PropertyName = "telegrafResourceNameConfig")]
public TelegrafResourceNameConfigurationDetails TelegrafResourceNameConfig { get; set; }
Property Value
Type Description
TelegrafResourceNameConfigurationDetails

TelemetryResourceGroup

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

Resource group string; if not specified, the resource group string will be generated by the handler.

In this article
Back to top