We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7d59cb commit 055186dCopy full SHA for 055186d
2 files changed
protocols/gossipsub/CHANGELOG.md
@@ -1,5 +1,8 @@
1
## 0.50.0
2
3
+- Rename metric `topic_msg_sent_bytes` to `topic_msg_last_sent_bytes` for accuracy.
4
+ See [PR 6283](https://github.com/libp2p/rust-libp2p/pull/6283)
5
+
6
- Add extra metrics for bytes received and sent, filtered and unfiltered for each topic.
7
See [PR 6192](https://github.com/libp2p/rust-libp2p/pull/6192)
8
protocols/gossipsub/src/metrics.rs
@@ -283,7 +283,7 @@ impl Metrics {
283
);
284
285
let topic_msg_last_sent_bytes = register_family!(
286
- "topic_msg_sent_bytes",
+ "topic_msg_last_sent_bytes",
287
"bytes from the last gossip message sent to each topic (after duplicates being filtered)"
288
289
0 commit comments