Browse Source

Fixed split processor example

Clinton Gormley 9 years ago
parent
commit
102a398d9f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/ingest/ingest-node.asciidoc

+ 1 - 1
docs/reference/ingest/ingest-node.asciidoc

@@ -1208,7 +1208,7 @@ Splits a field into an array using a separator character. Only works on string f
 --------------------------------------------------
 {
   "split": {
-    "field": ",",
+    "field": "my_field",
     "separator": "\\s+" <1>
   }
 }