Show / Hide Table of Contents

Class UnifiedAgentCustomFilter

Logging custom filter plugin.

Inheritance
object
UnifiedAgentLoggingFilter
UnifiedAgentCustomFilter
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 UnifiedAgentCustomFilter : UnifiedAgentLoggingFilter

Properties

CustomFilterType

Declaration
[Required(ErrorMessage = "CustomFilterType is required.")]
[JsonProperty(PropertyName = "customFilterType")]
public string CustomFilterType { get; set; }
Property Value
Type Description
string

Type of the custom filter

Remarks

Required

CustomSections

Declaration
[JsonProperty(PropertyName = "customSections")]
public List<UnifiedAgentCustomSection> CustomSections { get; set; }
Property Value
Type Description
List<UnifiedAgentCustomSection>

List of custom sections in custom filter

Params

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

Parameters of the custom filter

In this article
Back to top