pub type PbChannelStats = ChannelStats;
Expand description
Alias for ChannelStats
.
Aliased Type§
struct PbChannelStats {
pub actor_count: u32,
pub output_blocking_duration: f64,
pub recv_row_count: u64,
pub send_row_count: u64,
}
Fields§
§actor_count: u32
Total number of actors. This field is very important because the rest fields are SUM
of all the actors.
Use shorter name in JSON to reduce message size.
output_blocking_duration: f64
Sum of output blocking duration of all actors in nanoseconds
recv_row_count: u64
Sum of input row count of all actors
send_row_count: u64
Sum of output row count of all actors