From ced6d92649a0b81e3b6ab6e55d545227d3471bed Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Tue, 2 Dec 2025 09:21:18 +0100 Subject: [PATCH] Fixed one incorrect defalut value for config parameter 'self_hostname' in forward input plugin doc. Fixes #2256. Signed-off-by: Eric D. Schabell --- pipeline/inputs/forward.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/inputs/forward.md b/pipeline/inputs/forward.md index 46342ea1b..7a6e0ca1b 100644 --- a/pipeline/inputs/forward.md +++ b/pipeline/inputs/forward.md @@ -14,7 +14,7 @@ The plugin supports the following configuration parameters: | `listen` | Listener network interface. | `0.0.0.0` | | `port` | TCP port to listen for incoming connections. | `24224` | | `security.users` | Specify the username and password pairs for secure forward authentication. Requires `shared_key` or `empty_shared_key` to be set. | | -| `self_hostname` | Hostname for secure forward authentication. | _none_ | +| `self_hostname` | Hostname for secure forward authentication. | `localhost` | | `shared_key` | Shared key for secure forward authentication. | _none_ | | `tag` | Override the tag of the forwarded events with the defined value. | _none_ | | `tag_prefix` | Prefix incoming tag with the defined value. | _none_ |