Skip to content

Commit

Permalink
Added group id for vdisks in PDisk http page (ydb-platform#4500)
Browse files Browse the repository at this point in the history
  • Loading branch information
mregrock committed May 15, 2024
1 parent 2dcd724 commit 48aa5b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/core/blobstorage/pdisk/blobstorage_pdisk_impl_http.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void TPDisk::OutputHtmlOwners(TStringStream &str) {
if (data.VDiskId != TVDiskID::InvalidId) {
TABLER() {
TABLED() { str << (ui32) owner;}
TABLED() { str << data.VDiskId.ToStringWOGeneration(); }
TABLED() { str << data.VDiskId.ToStringWOGeneration() << "<br/>(" << data.VDiskId.GroupID << ")"; }
TABLED() { str << chunksOwned[owner]; }
TABLED() { str << data.CutLogId.ToString(); }
TABLED() { str << data.WhiteboardProxyId; }
Expand Down Expand Up @@ -276,7 +276,7 @@ void TPDisk::OutputHtmlLogChunksDetails(TStringStream &str) {
if (id == TVDiskID::InvalidId) {
TABLEH() {str << "o" << owner << "v--"; }
} else {
TABLEH() {str << "o" << owner << "v" << id.ToStringWOGeneration(); }
TABLEH() {str << "o" << owner << "v" << id.ToStringWOGeneration() << "<br/>(" << id.GroupID << ")"; }
}
}
}
Expand Down

0 comments on commit 48aa5b3

Please sign in to comment.