Interface IDissectProcessor
Similar to the Grok Processor, dissect also extracts structured fields out of a single text field within a document. However unlike the Grok Processor, dissect does not use Regular Expressions. This allows dissect’s syntax to be simple and, for some cases faster, than the Grok Processor.
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IDissectProcessor : IProcessor
Properties
| Edit this page View SourceAppendSeparator
The character(s) that separate the appended fields.
Declaration
[DataMember(Name = "append_separator")]
string AppendSeparator { get; set; }
Property Value
Type | Description |
---|---|
string |
Field
The field to dissect
Declaration
[DataMember(Name = "field")]
Field Field { get; set; }
Property Value
Type | Description |
---|---|
Field |
IgnoreMissing
If true
and field does not exist or is null, the processor quietly exits without modifying the document
Declaration
[DataMember(Name = "ignore_missing")]
bool? IgnoreMissing { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Pattern
The pattern to apply to the field
Declaration
[DataMember(Name = "pattern")]
string Pattern { get; set; }
Property Value
Type | Description |
---|---|
string |