-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: set max_recv_msg_size_mib to value in correct units (#1826)
The value in `max_recv_msg_size_mib` for otlp receiver in cluster collector config should be in alignment with the memory the deployment has to run. It was set accidentally to `128 * 1024 * 1024` (e.g. value in bytes), instead of intended `128` which is a reasonable number to use. before this change, the value being populated in the config would be `134217728` MiB which makes no sense
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters