Class DissectProcessor
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 class DissectProcessor : ProcessorBase, IDissectProcessor, IProcessor
Properties
| Edit this page View SourceAppendSeparator
The character(s) that separate the appended fields.
Declaration
public string AppendSeparator { get; set; }
Property Value
Type | Description |
---|---|
string |
Field
The field to dissect
Declaration
public 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
public bool? IgnoreMissing { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Name
Declaration
protected override string Name { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
| Edit this page View SourcePattern
The pattern to apply to the field
Declaration
public string Pattern { get; set; }
Property Value
Type | Description |
---|---|
string |