@@ -171,8 +171,8 @@ void TBalancer::RenderApp(TStringStream& str) const {
171
171
TABLEH () { }
172
172
TABLEH () { str << " Id" ; }
173
173
TABLEH () { str << " Partitions" ; }
174
- TABLEH () { str << " <span alt =\" All / Active / Releasing\" >Families</span>" ; }
175
- TABLEH () { str << " <span alt =\" Active / Inactive / Releasing\" >Statistics</span>" ; };
174
+ TABLEH () { str << " <span title =\" All families / Active / Releasing\" >Families</span>" ; }
175
+ TABLEH () { str << " <span title =\" All partitions / Active / Inactive / Releasing\" >Statistics</span>" ; };
176
176
TABLEH () { str << " Client node" ; }
177
177
TABLEH () { str << " Proxy node" ; }
178
178
}
@@ -203,7 +203,8 @@ void TBalancer::RenderApp(TStringStream& str) const {
203
203
TABLED () { str << session->SessionName ; }
204
204
TABLED () { str << (session->Partitions .empty () ? " " : JoinRange (" , " , session->Partitions .begin (), session->Partitions .end ())); }
205
205
TABLED () { str << session->Families .size () << " / " << session->ActiveFamilyCount << " / " << session->ReleasingFamilyCount ; }
206
- TABLED () { str << session->ActivePartitionCount << " / " << session->InactivePartitionCount << " / " << session->ReleasingPartitionCount ; }
206
+ TABLED () { str << (session->ActivePartitionCount + session->InactivePartitionCount ) << " / " << session->ActivePartitionCount
207
+ << " / " << session->InactivePartitionCount << " / " << session->ReleasingPartitionCount ; }
207
208
TABLED () { str << session->ClientNode ; }
208
209
TABLED () { str << session->ProxyNodeId ; }
209
210
}
@@ -213,7 +214,8 @@ void TBalancer::RenderApp(TStringStream& str) const {
213
214
TABLED () { str << " <strong>Total:</strong>" ; }
214
215
TABLED () { }
215
216
TABLED () { str << familyAllCount << " / " << activeFamilyCount << " / " << releasingFamilyCount; }
216
- TABLED () { str << activePartitionCount << " / " << inactivePartitionCount << " / " << releasingPartitionCount; }
217
+ TABLED () { str << (activePartitionCount + inactivePartitionCount) << " / " << activePartitionCount << " / " << inactivePartitionCount
218
+ << " / " << releasingPartitionCount; }
217
219
TABLED () { }
218
220
TABLED () { }
219
221
}
0 commit comments