From bb5e93959ea41c3731a4408f61f1a50ca26d666d Mon Sep 17 00:00:00 2001 From: Ruben van Staden Date: Mon, 21 Oct 2024 15:13:20 -0400 Subject: [PATCH] docapp: change max request to 1.0 --- internal/beater/beater.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/beater/beater.go b/internal/beater/beater.go index 05549a5a45a..2d7db34d4c1 100644 --- a/internal/beater/beater.go +++ b/internal/beater/beater.go @@ -834,7 +834,7 @@ func docappenderConfig( // This formula yields the following max requests for APM Server sized: // 1 2 4 8 15 30 // 10 12 14 19 28 46 - maxRequests := int(float64(10) + memLimit*1.5) + maxRequests := int(float64(10) + memLimit * 1.0) if maxRequests > 60 { maxRequests = 60 }