Show / Hide Table of Contents

Class UnifiedAgentMultilineGrokParser

Multiline grok parser.

Inheritance
object
UnifiedAgentParser
UnifiedAgentMultilineGrokParser
Inherited Members
UnifiedAgentParser.FieldTimeKey
UnifiedAgentParser.Types
UnifiedAgentParser.NullValuePattern
UnifiedAgentParser.IsNullEmptyString
UnifiedAgentParser.IsEstimateCurrentEvent
UnifiedAgentParser.IsKeepTimeKey
UnifiedAgentParser.TimeoutInMilliseconds
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 UnifiedAgentMultilineGrokParser : UnifiedAgentParser

Properties

GrokFailureKey

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

Grok failure key.

GrokNameKey

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

Grok name key.

MultiLineStartRegexp

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

Multiline start regexp pattern.

Patterns

Declaration
[Required(ErrorMessage = "Patterns is required.")]
[JsonProperty(PropertyName = "patterns")]
public List<GrokPattern> Patterns { get; set; }
Property Value
Type Description
List<GrokPattern>

Grok pattern object.

Remarks

Required

In this article
Back to top