From 4e7b9170b627be52a6fbf5b5d53683c4253f139e Mon Sep 17 00:00:00 2001 From: James Rodewig <40268737+jrodewig@users.noreply.github.com> Date: Mon, 2 Aug 2021 13:00:09 -0400 Subject: [PATCH] [DOCS] Fix extracted date (#75918) (#75978) In the example, we have a date with year `2018` but the extracted date is `1998`. Co-authored-by: David Pilato --- docs/reference/ingest/processors/dissect.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/ingest/processors/dissect.asciidoc b/docs/reference/ingest/processors/dissect.asciidoc index 6dff72af18481..8733f9f99c2b8 100644 --- a/docs/reference/ingest/processors/dissect.asciidoc +++ b/docs/reference/ingest/processors/dissect.asciidoc @@ -194,7 +194,7 @@ Reference key modifier example | *Pattern* | `[%{ts}] [%{level}] %{*p1}:%{&p1} %{*p2}:%{&p2}` | *Input* | [2018-08-10T17:15:42,466] [ERR] ip:1.2.3.4 error:REFUSED | *Result* a| -* ts = 1998-08-10T17:15:42,466 +* ts = 2018-08-10T17:15:42,466 * level = ERR * ip = 1.2.3.4 * error = REFUSED