From 1e603b9abdb660c5699907ce6c8d6e2b86ef14ac Mon Sep 17 00:00:00 2001 From: Daniel Jaglowski Date: Wed, 23 Mar 2022 09:47:04 -0400 Subject: [PATCH] Fix typo in recombine operator docs (#452) Resolves #451 --- docs/operators/recombine.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/operators/recombine.md b/docs/operators/recombine.md index 569107292b28..c4cb6d942a06 100644 --- a/docs/operators/recombine.md +++ b/docs/operators/recombine.md @@ -16,7 +16,7 @@ The `recombine` operator combines consecutive logs into single logs based on sim | `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. | | `force_flush_period` | `5s` | Flush timeout after which entries will be flushed aborting the wait for their sub parts to be merged with. | -| `source_identifier` | `$attibutes["file.path"]` | The [field](/docs/types/field.md) to separate one source of logs from others when combining them. | +| `source_identifier` | `$attributes["file.path"]` | The [field](/docs/types/field.md) to separate one source of logs from others when combining them. | | `max_sources` | 1000 | The maximum number of unique sources allowed concurrently to be tracked for combining separately. | Exactly one of `is_first_entry` and `is_last_entry` must be specified.