Show / Hide Table of Contents

Class UnifiedAgentLoggingGrepFilter

Logging grep filter object greps events by the values of specified fields. Ref: https://docs.fluentd.org/filter/grep

Inheritance
object
UnifiedAgentLoggingFilter
UnifiedAgentLoggingGrepFilter
Inherited Members
UnifiedAgentLoggingFilter.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 UnifiedAgentLoggingGrepFilter : UnifiedAgentLoggingFilter

Properties

AllowList

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

A list of filtering rules to include logs

DenyList

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

A list of filtering rules to reject logs

In this article
Back to top