Compare commits

...

1 Commits

Author SHA1 Message Date
Aarsh Shah
f51ce3d699 rename metrics 2026-02-18 10:55:41 +04:00

View File

@@ -196,12 +196,12 @@ var (
},
[]string{"topic"})
pubsubRPCPubSentSize = promauto.NewCounterVec(prometheus.CounterOpts{
Name: "gossipsub_pubsub_rpc_sent_pub_size_total",
Name: "gossipsub_topic_msg_sent_bytes",
Help: "The total size of publish messages sent via rpc for a particular topic",
},
[]string{"topic", "is_partial"})
[]string{"topic", "partial"})
pubsubMeshPeers = promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "gossipsub_mesh_peers",
Name: "gossipsub_mesh_peer_counts",
Help: "The number of capable peers in mesh",
},
[]string{"topic", "supports_partial"})