Skip to content

Commit

Permalink
docapp: change max request to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rubvs committed Oct 21, 2024
1 parent 60e621a commit bb5e939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/beater/beater.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit bb5e939

Please sign in to comment.