You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be sensible to mirror its name in apm-server?
If we're adding a config, it needs to be nested under an appropriate section, as it only concerns OTLP/gRPC, not even OTLP/HTTP. We don't have any otel specific sections in apm-server.yml.
Maybe we should make it configurable, but IMO the better solution would be for clients to send smaller payloads. If the server can accept a larger payload, then it will be more susceptible to OOM.
If the decompressed grpc message exceeds 4MB, the collector sending to apm-server logs the following error.
The limit comes from the default 4MB grpc server message size limit
MaxRecvMsgSize
in https://pkg.go.dev/google.golang.org/grpc#MaxRecvMsgSize .Current user workarounds
Proposed solution
apm-server should either document or adjust the limit, or make it configurable.
The text was updated successfully, but these errors were encountered: