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
MetricCounter{PROPELLER_SHARDS_PUBLISHED,"propeller_shards_published","Total number of shards published (created) by this node", init = 0},
75
+
MetricCounter{PROPELLER_SHARDS_SENT,"propeller_shards_sent","Total number of shards sent to peers (includes forwarding)", init = 0},
76
+
LabeledMetricCounter{PROPELLER_SHARDS_SEND_FAILED,"propeller_shards_send_failed","Total number of shard send failures, labeled by reason", init = 0, labels = SHARD_SEND_FAILURE_LABELS},
77
+
MetricCounter{PROPELLER_SHARD_BYTES_SENT,"propeller_shard_bytes_sent","Total bytes sent in shard data (payload only)", init = 0},
78
+
MetricCounter{PROPELLER_SHARDS_RECEIVED,"propeller_shards_received","Total number of shards received from peers", init = 0},
79
+
MetricCounter{PROPELLER_SHARDS_VALIDATED,"propeller_shards_validated","Total number of shards successfully validated", init = 0},
80
+
LabeledMetricCounter{PROPELLER_SHARDS_VALIDATION_FAILED,"propeller_shards_validation_failed","Total number of shards that failed validation, labeled by reason", init = 0, labels = SHARD_VALIDATION_FAILURE_LABELS},
81
+
MetricCounter{PROPELLER_SHARDS_FORWARDED,"propeller_shards_forwarded","Total number of shards forwarded to children in tree", init = 0},
82
+
MetricCounter{PROPELLER_SHARD_BYTES_RECEIVED,"propeller_shard_bytes_received","Total bytes received in shard data (payload only)", init = 0},
83
+
MetricCounter{PROPELLER_MESSAGES_RECONSTRUCTED,"propeller_messages_reconstructed","Total number of messages successfully reconstructed from shards", init = 0},
84
+
MetricCounter{PROPELLER_MESSAGES_RECONSTRUCTION_FAILED,"propeller_messages_reconstruction_failed","Total number of message reconstruction failures", init = 0},
85
+
MetricCounter{PROPELLER_TREES_GENERATED,"propeller_trees_generated","Total number of tree generation operations", init = 0},
86
+
LabeledMetricGauge{PROPELLER_COLLECTION_LENGTHS,"propeller_collection_lengths","Length of various collections (queues, sets, caches) tracked by label", labels = COLLECTION_LENGTH_LABELS},
87
+
MetricHistogram{PROPELLER_SHARD_VALIDATION_DURATION,"propeller_shard_validation_duration","Time to validate a single shard (seconds)"},
88
+
MetricHistogram{PROPELLER_MESSAGE_RECONSTRUCTION_DURATION,"propeller_message_reconstruction_duration","Time to reconstruct a message from shards (seconds)"},
89
+
MetricHistogram{PROPELLER_MESSAGE_END_TO_END_LATENCY,"propeller_message_end_to_end_latency","End-to-end latency from first shard received to message reconstructed (seconds)"},
0 commit comments