Class AgentExtensionHandlerConfiguration
Specific resource mapping configurations for Agent Extension Handlers.
Inheritance
AgentExtensionHandlerConfiguration
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class AgentExtensionHandlerConfiguration
Properties
CollectdResourceNameConfig
Declaration
[JsonProperty(PropertyName = "collectdResourceNameConfig")]
public CollectdResourceNameConfigurationDetails CollectdResourceNameConfig { get; set; }
Property Value
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
HandlerProperties
Declaration
[JsonProperty(PropertyName = "handlerProperties")]
public List<AgentExtensionHandlerConfigurationProperty> HandlerProperties { get; set; }
Property Value
MetricMappings
Declaration
[JsonProperty(PropertyName = "metricMappings")]
public List<AgentExtensionHandlerMetricMappingDetails> MetricMappings { get; set; }
Property Value
MetricNameConfig
Declaration
[JsonProperty(PropertyName = "metricNameConfig")]
public MetricNameConfigurationDetails MetricNameConfig { get; set; }
Property Value
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
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.
|