Skip to content

Commit 9d9d794

Browse files
authored
Merge d320e30 into 991917c
2 parents 991917c + d320e30 commit 9d9d794

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ydb/core/persqueue/partition_monitoring.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ void TPartition::HandleMonitoring(TEvPQ::TEvMonRequest::TPtr& ev, const TActorCo
4949
}
5050

5151
PROPERTIES("Status") {
52-
PROPERTY("Disk", DiskIsFull ? "Full" : "Normal");
53-
PROPERTY("Quota", WaitingForSubDomainQuota(ctx) ? "Out of space" : "Normal");
52+
PROPERTY("State", NKikimrPQ::ETopicPartitionStatus_Name(PartitionConfig->GetStatus()));
53+
PROPERTY("Disk", (DiskIsFull ? "Full" : "Normal"));
54+
PROPERTY("Quota", (WaitingForSubDomainQuota(ctx) ? "Out of space" : "Normal"));
5455
}
5556

5657
PROPERTIES("Information") {

0 commit comments

Comments
 (0)