Show / Hide Table of Contents

Class AgentConfigOverride

Agent configuration overrides that should apply to a subset of the agents associated with an Agent Config object.

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

Properties

AgentFilter

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

The string that defines the Agent Filter expression.

OverrideMap

Declaration
[JsonProperty(PropertyName = "overrideMap")]
public Dictionary<string, string> OverrideMap { get; set; }
Property Value
Type Description
Dictionary<string, string>

A map whose key is a substitution variable specified within the configuration's body. For example, if below was specified in the configuration's body {{ isJfrEnabled | default false }} Then a valid map key would be "isJfrEnabled". The value is typically different than the default specified in the configuration's body. Thus, in this example, the map entry could be "isJfrEnabled": true

In this article
Back to top