Fix missing comma in examples (#27904)

This commit is contained in:
David Pilato 2017-12-19 18:28:39 +01:00 committed by GitHub
parent 0c1ac2e700
commit 3ca39186d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -458,7 +458,7 @@ their name. For example:
--------------------------------------------------
{
"set": {
"field": "my_field"
"field": "my_field",
"value": 582.1
}
}
@ -471,7 +471,7 @@ On top of this, fields from the source are always accessible via the `_source` p
--------------------------------------------------
{
"set": {
"field": "_source.my_field"
"field": "_source.my_field",
"value": 582.1
}
}
@ -491,7 +491,7 @@ The following example sets the `_id` metadata field of a document to `1`:
--------------------------------------------------
{
"set": {
"field": "_id"
"field": "_id",
"value": "1"
}
}
@ -517,7 +517,7 @@ The following example adds a field with the name `received`. The value is the in
--------------------------------------------------
{
"set": {
"field": "received"
"field": "received",
"value": "{{_ingest.timestamp}}"
}
}
@ -542,7 +542,7 @@ the values of `field_a` and `field_b`.
--------------------------------------------------
{
"set": {
"field": "field_c"
"field": "field_c",
"value": "{{field_a}} {{field_b}}"
}
}
@ -556,7 +556,7 @@ to set the index that the document will be indexed into:
--------------------------------------------------
{
"set": {
"field": "_index"
"field": "_index",
"value": "{{geoip.country_iso_code}}"
}
}
@ -570,7 +570,7 @@ value of `service` to the value of the field `code`:
--------------------------------------------------
{
"set": {
"field": "{{service}}"
"field": "{{service}}",
"value": "{{code}}"
}
}