@@ -60,7 +60,8 @@ const rangeTableDisplayList: RangeTableRow[] = [
60
60
{ variable : "leaseHolderQPS" , display : "Lease Holder QPS" , compareToLeader : false } ,
61
61
{ variable : "keysWrittenPS" , display : "Average Keys Written Per Second" , compareToLeader : false } ,
62
62
{ variable : "approxProposalQuota" , display : "Approx Proposal Quota" , compareToLeader : false } ,
63
- { variable : "pendingCommands" , display : "Pending Commands" , compareToLeader : false } ,
63
+ { variable : "pendingCommands" , display : "Pending Local Commands" , compareToLeader : false } ,
64
+ { variable : "remoteCommands" , display : "Pending Remote Commands" , compareToLeader : false } ,
64
65
{ variable : "droppedCommands" , display : "Dropped Commands" , compareToLeader : false } ,
65
66
{ variable : "truncatedIndex" , display : "Truncated Index" , compareToLeader : true } ,
66
67
{ variable : "truncatedTerm" , display : "Truncated Term" , compareToLeader : true } ,
@@ -485,6 +486,7 @@ export default class RangeTable extends React.Component<RangeTableProps, {}> {
485
486
keysWrittenPS : this . createContent ( info . stats . writes_per_second . toFixed ( 4 ) ) ,
486
487
approxProposalQuota : raftLeader ? this . createContent ( FixLong ( info . state . approximate_proposal_quota ) ) : rangeTableEmptyContent ,
487
488
pendingCommands : this . createContent ( FixLong ( info . state . num_pending ) ) ,
489
+ remoteCommands : raftLeader ? this . createContent ( FixLong ( info . state . num_remote_pending ) ) : rangeTableEmptyContent ,
488
490
droppedCommands : this . createContent (
489
491
FixLong ( info . state . num_dropped ) ,
490
492
FixLong ( info . state . num_dropped ) . greaterThan ( 0 ) ? "range-table__cell--warning" : "" ,
0 commit comments