Adjust the value width in stats output.

Some of the values are accumulative and can reach high after running for long
periods.
This commit is contained in:
Qi Wang 2024-05-03 12:04:09 -07:00 committed by Qi Wang
parent 3383b98f1b
commit c1a3ca3755
1 changed files with 4 additions and 4 deletions

View File

@ -324,12 +324,12 @@ stats_arena_bins_print(emitter_t *emitter, bool mutex, unsigned i,
COL_HDR(row, size, NULL, right, 20, size)
COL_HDR(row, ind, NULL, right, 4, unsigned)
COL_HDR(row, allocated, NULL, right, 13, size)
COL_HDR(row, nmalloc, NULL, right, 13, uint64)
COL_HDR(row, allocated, NULL, right, 14, size)
COL_HDR(row, nmalloc, NULL, right, 14, uint64)
COL_HDR(row, nmalloc_ps, "(#/sec)", right, 8, uint64)
COL_HDR(row, ndalloc, NULL, right, 13, uint64)
COL_HDR(row, ndalloc, NULL, right, 14, uint64)
COL_HDR(row, ndalloc_ps, "(#/sec)", right, 8, uint64)
COL_HDR(row, nrequests, NULL, right, 13, uint64)
COL_HDR(row, nrequests, NULL, right, 15, uint64)
COL_HDR(row, nrequests_ps, "(#/sec)", right, 10, uint64)
COL_HDR_DECLARE(prof_live_requested);
COL_HDR_DECLARE(prof_live_count);