Fix missing comma in ingest-node.asciidoc (#29343)

This commit is contained in:
rzmf 2018-04-03 12:33:44 +02:00 committed by Alan Woodward
parent d4538df893
commit 080cefec73
1 changed files with 1 additions and 1 deletions

View File

@ -1341,7 +1341,7 @@ Here is an example of a pipeline specifying custom pattern definitions:
{
"grok": {
"field": "message",
"patterns": ["my %{FAVORITE_DOG:dog} is colored %{RGB:color}"]
"patterns": ["my %{FAVORITE_DOG:dog} is colored %{RGB:color}"],
"pattern_definitions" : {
"FAVORITE_DOG" : "beagle",
"RGB" : "RED|GREEN|BLUE"