From 3c8cbcb99da903822c1e6a6cbd1142a357d0d5fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edu=20Gonz=C3=A1lez=20de=20la=20Herr=C3=A1n?= Date: Wed, 29 Jan 2020 21:06:27 +0100 Subject: [PATCH] Fix indentation in add_fields processor documentation (#15926) (cherry picked from commit 0d45df184c5cd79f9d56dc77be8b469c706b9c1e) --- libbeat/processors/actions/docs/copy_fields.asciidoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libbeat/processors/actions/docs/copy_fields.asciidoc b/libbeat/processors/actions/docs/copy_fields.asciidoc index f7b9803b0a6..ae3816bbce9 100644 --- a/libbeat/processors/actions/docs/copy_fields.asciidoc +++ b/libbeat/processors/actions/docs/copy_fields.asciidoc @@ -21,11 +21,11 @@ For example, this configuration: ------------------------------------------------------------------------------ processors: - copy_fields: - fields: - - from: message - to: event.original - fail_on_error: false - ignore_missing: true + fields: + - from: message + to: event.original + fail_on_error: false + ignore_missing: true ------------------------------------------------------------------------------ Copies the original `message` field to `event.original`: