Show / Hide Table of Contents

Class UnifiedAgentUrlFilter

Kubernetes filter object

Inheritance
object
UnifiedAgentMonitoringFilter
UnifiedAgentUrlFilter
Inherited Members
UnifiedAgentMonitoringFilter.Name
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 UnifiedAgentUrlFilter : UnifiedAgentMonitoringFilter

Properties

AllowList

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

List of metrics regex to be allowed.

DenyList

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

List of metrics regex to be denied.

In this article
Back to top