Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
docs(recombine): add double quotes around special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzej-stencel committed Nov 30, 2021
1 parent 2b4a948 commit 649bfc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/operators/recombine.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The `recombine` operator combines consecutive logs into single logs based on sim
| `is_first_entry` | | An [expression](/docs/types/expression.md) that returns true if the entry being processed is the first entry in a multiline series. |
| `is_last_entry` | | An [expression](/docs/types/expression.md) that returns true if the entry being processed is the last entry in a multiline series. |
| `combine_field` | required | The [field](/docs/types/field.md) from all the entries that will recombined. |
| `combine_with` | `\n` | The string that is put between the combined entries. This can be an empty string as well. |
| `combine_with` | `"\n"` | The string that is put between the combined entries. This can be an empty string as well. When using special characters like `\n`, be sure to enclose the value in double quotes: `"\n"`. |
| `max_batch_size` | 1000 | The maximum number of consecutive entries that will be combined into a single entry. |
| `overwrite_with` | `oldest` | Whether to use the fields from the `oldest` or the `newest` entry for all the fields that are not combined. |

Expand Down

0 comments on commit 649bfc8

Please sign in to comment.