From 40e5ad3d8663980893586ae54d22f5a9d29db0d3 Mon Sep 17 00:00:00 2001 From: Matthew Murphy Date: Wed, 6 Jul 2022 14:33:19 -0400 Subject: [PATCH] adding two missing quotes --- docs/index.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.asciidoc b/docs/index.asciidoc index e92f9f1..4a8ce83 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -289,7 +289,7 @@ To perform matches on multiple fields just use multiple entries in the `match` h grok { match => { "speed" => "Speed: %{NUMBER:speed}" - "duration => "Duration: %{NUMBER:duration}" + "duration" => "Duration: %{NUMBER:duration}" } } } @@ -306,7 +306,7 @@ However, if one pattern depends on a field created by a previous pattern, separa } grok { match => { - "rest => "a number %{NUMBER"number}, and a word %{WORD:word}" + "rest" => "a number %{NUMBER"number}, and a word %{WORD:word}" } } }