From d7a5211f69bd97b74674a196a7dc132aeebe63a0 Mon Sep 17 00:00:00 2001 From: Lee E Hinman <57081003+leehinman@users.noreply.github.com> Date: Tue, 24 Sep 2024 15:09:40 -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 13a52fa502e..45e0a909d31 100644 --- a/x-pack/filebeat/fbreceiver/config.go +++ b/x-pack/filebeat/fbreceiver/config.go @@ -15,7 +15,7 @@ type Config struct { // Validate checks if the configuration in valid func (cfg *Config) Validate() error { if len(cfg.Beatconfig) == 0 { - return fmt.Errorf("NO config sent") + return fmt.Errorf("Configuration is required") } _, prs := cfg.Beatconfig["filebeat"] if !prs {