mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-04 04:04:00 +00:00
* p2p: add a per-message type send and receive metric (#9622) * p2p: ressurrect the p2p envelope and use to calculate message metric Add new SendEnvelope, TrySendEnvelope, BroadcastEnvelope, and ReceiveEnvelope methods in the p2p package to work with the new envelope type. Care was taken to ensure this was performed in a non-breaking manner. Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> Co-authored-by: William Banfield <wbanfield@gmail.com>
482 B
482 B
Unreleased Changes
v0.34.23
BREAKING CHANGES
-
CLI/RPC/Config
-
Apps
-
P2P Protocol
-
Go API
-
Blockchain Protocol
FEATURES
IMPROVEMENTS
- [p2p] #9641 Add new Envelope type and associated methods for sending and receiving Envelopes instead of raw bytes.
This also adds new metrics,
tendermint_p2p_message_send_bytes_totalandtendermint_p2p_message_receive_bytes_total, that expose how many bytes of each message type have been sent.