@@ -890,10 +890,11 @@ func FormatServiceMembers(serviceMembers []config.ServiceMemberDetail) string {
890890 WithSortingColumn (NodeIDColumn )
891891
892892 if OutputFormat == constants .WIDE {
893- table .WithAlignment (R , R , R , R , R , R , R , R , R , R , R , R )
893+ table .WithAlignment (R , R , R , R , R , R , R , R , R , R , R , R , R )
894894 table .AddHeaderColumns ("TASK COUNT" , "TASK BACKLOG" , "PRIMARY OWNED" ,
895- "BACKUP OWNED" , "REQ AVG MS" , "TASK AVG MS" )
895+ "BACKUP OWNED" , "REQ AVG MS" , "TASK AVG MS" , "REQ PEND MS" )
896896 table .AddFormattingFunction (7 , errorFormatter )
897+ table .AddFormattingFunction (12 , errorFormatter )
897898 } else {
898899 table .WithAlignment (R , R , R , R , R , R )
899900 }
@@ -914,7 +915,8 @@ func FormatServiceMembers(serviceMembers []config.ServiceMemberDetail) string {
914915 table .AddColumnsToRow (
915916 formatSmallInteger (value .TaskCount ), formatSmallInteger (value .TaskBacklog ),
916917 formatSmallInteger (value .OwnedPartitionsPrimary ), formatSmallInteger (value .OwnedPartitionsBackup ),
917- formatFloat (value .RequestAverageDuration ), formatFloat (value .TaskAverageDuration ))
918+ formatFloat (value .RequestAverageDuration ), formatFloat (value .TaskAverageDuration ),
919+ formatLargeInteger (int64 (value .RequestPendingDuration )))
918920 }
919921 }
920922
0 commit comments