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
metrics.MetricName{Name: "algod_agreement_proposal_already_filled", Description: "Number of times a duplicate proposal payload was received before validation"})
metrics.MetricName{Name: "algod_agreement_proposal_already_assembled", Description: "Number of times a duplicate proposal payload was received after validation"})
30
+
23
31
// An blockAssembler contains the proposal data associated with some
24
32
// proposal-value.
25
33
//
@@ -52,10 +60,12 @@ type blockAssembler struct {
52
60
// an error if the pipelining operation is redundant.
Copy file name to clipboardExpand all lines: util/metrics/metrics.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,8 @@ var (
49
49
DuplicateNetworkMessageReceivedTotal=MetricName{Name: "algod_network_duplicate_message_received_total", Description: "Total number of duplicate messages that were received from the network"}
50
50
// DuplicateNetworkMessageReceivedBytesTotal The total number ,in bytes, of the duplicate messages that were received from the network
51
51
DuplicateNetworkMessageReceivedBytesTotal=MetricName{Name: "algod_network_duplicate_message_received_bytes_total", Description: "The total number ,in bytes, of the duplicate messages that were received from the network"}
52
+
// DuplicateNetworkFilterReceivedTotal Total number of duplicate filter messages (tag MsgDigestSkipTag) that were received from the network
53
+
DuplicateNetworkFilterReceivedTotal=MetricName{Name: "algod_network_duplicate_filter_received_total", Description: "Total number of duplicate filter messages that were received from the network"}
52
54
// OutgoingNetworkMessageFilteredOutTotal Total number of messages that were not sent per peer request
53
55
OutgoingNetworkMessageFilteredOutTotal=MetricName{Name: "algod_outgoing_network_message_filtered_out_total", Description: "Total number of messages that were not sent per peer request"}
54
56
// OutgoingNetworkMessageFilteredOutBytesTotal Total number of bytes saved by not sending messages that were asked not to be sent by peer
0 commit comments