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
{{ message }}
This repository was archived by the owner on Nov 7, 2022. It is now read-only.
statBatchSize=stats.Int64("batch_size", "Size of batches sent from the batcher (in span)", stats.UnitDimensionless)
28
+
statNodesAddedToBatches=stats.Int64("nodes_added_to_batches", "Count of nodes that are being batched.", stats.UnitDimensionless)
29
+
statNodesRemovedFromBatches=stats.Int64("nodes_removed_from_batches", "Number of nodes that have been removed from batching.", stats.UnitDimensionless)
30
+
31
+
statBatchSizeTriggerSend=stats.Int64("batch_size_trigger_send", "Number of times the batch was sent due to a size trigger", stats.UnitDimensionless)
32
+
statTimeoutTriggerSend=stats.Int64("timeout_trigger_send", "Number of times the batch was sent due to a timeout trigger", stats.UnitDimensionless)
33
+
statBatchOnDeadNode=stats.Int64("removed_node_send", "Number of times the batch was sent due to spans being added for a no longer active node", stats.UnitDimensionless)
34
+
)
35
+
36
+
// MetricViews returns the metrics views related to batching
0 commit comments