From 7ee3b8448b161a5f4a179e3eba18463a28e093f7 Mon Sep 17 00:00:00 2001 From: Tiago Queiroz Date: Thu, 7 Nov 2024 08:49:58 -0500 Subject: [PATCH] Update the source for README.md --- packages/filestream/_dev/build/docs/README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/packages/filestream/_dev/build/docs/README.md b/packages/filestream/_dev/build/docs/README.md index 297b2474651..edf6925b50d 100644 --- a/packages/filestream/_dev/build/docs/README.md +++ b/packages/filestream/_dev/build/docs/README.md @@ -7,25 +7,21 @@ to the existing input: 1. Checking of `close_*` options happens out of band. Thus, if an output is blocked, Elastic Agent can close the reader and avoid keeping too many files open. -2. Detailed metrics are available for all files that match the `paths` configuration -regardless of the `harvester_limit`. This way, you can keep track of all files, -even ones that are not actively read. - -3. The order of `parsers` is configurable. So it is possible to parse JSON lines and then +2. The order of `parsers` is configurable. So it is possible to parse JSON lines and then aggregate the contents into a multiline event. -4. Some position updates and metadata changes no longer depend on the publishing pipeline. +3. Some position updates and metadata changes no longer depend on the publishing pipeline. If the pipeline is blocked some changes are still applied to the registry. -5. Only the most recent updates are serialized to the registry. In contrast, the `log` input +4. Only the most recent updates are serialized to the registry. In contrast, the `log` input has to serialize the complete registry on each ACK from the outputs. This makes the registry updates much quicker with this input. -6. The input ensures that only offsets updates are written to the registry append only log. +5. The input ensures that only offsets updates are written to the registry append only log. The `log` writes the complete file state. -7. Stale entries can be removed from the registry, even if there is no active input. +6. Stale entries can be removed from the registry, even if there is no active input. -8. The fingerprint file identity is used by default. +7. The fingerprint file identity is used by default. More information can be found on the {{ url "filebeat-input-filestream" "Filestream documentation page" }}