Add grpc.received.message_count
and grpc.sent.message_count
#1988
Labels
area:rpc
enhancement
New feature or request
experts needed
This issue or pull request is outside an area where general approvers feel they can approve
triage:needs-triage
Propose new conventions
I propose to add 2 new span attributes for gRPC:
grpc.received.message_count
andgrpc.sent.message_count
. The purpose of the attributes is streaming of messages within a single gRPC transaction, which can be configured for request and/or response separately. The context of the attributes would depend on whether the collection is tracked in client or server:grpc.sent.message_count
the number of request messages sent to servergrpc.received.message_count
the number of response messages received from servergrpc.received.message_count
the number of request messages received from clientgrpc.sent.message_count
the number of response messages sent to clientIn case of regular (non-streamed) request and/or response, the count would always be 1 (unless an error occurs before or during the transfer).
The text was updated successfully, but these errors were encountered: