Skip to content

Commit abb5ff8

Browse files
andrepuschmanncodebot
authored andcommitted
metrics: fix alignment of stdout metrics header
1 parent ace1003 commit abb5ff8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/units/flexible_o_du/o_du_high/du_high/metrics/consumers/scheduler_metrics_consumers.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static void print_sched_header()
2020
fmt::print("\n");
2121
fmt::print(
2222
" "
23-
"|--------------------DL---------------------|-------------------------UL----------------------------------\n");
23+
"|--------------------DL---------------------|-------------------------------UL-----------------------------\n");
2424
fmt::print(" pci rnti | cqi ri mcs brate ok nok (%) dl_bs | pusch rsrp ri mcs brate ok nok (%) "
2525
"bsr ta phr\n");
2626
}
@@ -137,7 +137,7 @@ void scheduler_cell_metrics_consumer_stdout::handle_metric(const std::optional<s
137137
} else if (ue.pucch_ta_stats.get_nof_observations() > 0) {
138138
fmt::print(" {}", float_to_eng_string(ue.pucch_ta_stats.get_mean(), 0, true));
139139
} else {
140-
fmt::print(" n/a");
140+
fmt::print(" n/a");
141141
}
142142
if (ue.last_phr.has_value()) {
143143
fmt::print(" {:>4}", ue.last_phr.value());

0 commit comments

Comments
 (0)