From 55e5375c4d56bc6af463ae3d42d3ab7f6aa44797 Mon Sep 17 00:00:00 2001 From: Lee E Hinman <57081003+leehinman@users.noreply.github.com> Date: Tue, 24 Sep 2024 15:09:50 -0500 Subject: [PATCH] Update x-pack/filebeat/fbreceiver/config.go Co-authored-by: Blake Rouse --- x-pack/filebeat/fbreceiver/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/filebeat/fbreceiver/config.go b/x-pack/filebeat/fbreceiver/config.go index 45e0a909d31..c5ba5873b78 100644 --- a/x-pack/filebeat/fbreceiver/config.go +++ b/x-pack/filebeat/fbreceiver/config.go @@ -19,7 +19,7 @@ func (cfg *Config) Validate() error { } _, prs := cfg.Beatconfig["filebeat"] if !prs { - return fmt.Errorf("'filebeat' key is required") + return fmt.Errorf("Configuration key 'filebeat' is required") } return nil }