X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Flist.c;h=8705a4446ae7c446959e3dbc107245601d5c9e94;hp=942e4a4c2c3f46a4e48ff1ce3d246b15e5f95deb;hb=0d5a66ffc18fe9abe115c66b664df71084ad1fc6;hpb=ddc93ee4c528738932c2369715c0448bfd7ff023 diff --git a/src/bin/lttng/commands/list.c b/src/bin/lttng/commands/list.c index 942e4a4c2..8705a4446 100644 --- a/src/bin/lttng/commands/list.c +++ b/src/bin/lttng/commands/list.c @@ -1207,14 +1207,14 @@ static void print_channel(struct lttng_channel *channel) MSG("%sAttributes:", indent4); MSG("%soverwrite mode: %d", indent6, channel->attr.overwrite); - MSG("%ssubbuffers size: %" PRIu64, indent6, channel->attr.subbuf_size); + MSG("%ssubbuffers size: %" PRIu64 " bytes", indent6, channel->attr.subbuf_size); MSG("%snumber of subbuffers: %" PRIu64, indent6, channel->attr.num_subbuf); - MSG("%sswitch timer interval: %u", indent6, channel->attr.switch_timer_interval); - MSG("%sread timer interval: %u", indent6, channel->attr.read_timer_interval); - MSG("%smonitor timer interval: %" PRIu64, indent6, monitor_timer_interval); - MSG("%sblocking timeout (µs): %" PRId64, indent6, blocking_timeout); + MSG("%sswitch timer interval: %u µs", indent6, channel->attr.switch_timer_interval); + MSG("%sread timer interval: %u µs", indent6, channel->attr.read_timer_interval); + MSG("%smonitor timer interval: %" PRIu64 " µs", indent6, monitor_timer_interval); + MSG("%sblocking timeout: %" PRId64 " µs", indent6, blocking_timeout); MSG("%strace file count: %" PRIu64, indent6, channel->attr.tracefile_count); - MSG("%strace file size (bytes): %" PRIu64, indent6, channel->attr.tracefile_size); + MSG("%strace file size: %" PRIu64 " bytes", indent6, channel->attr.tracefile_size); MSG("%sdiscarded events: %" PRIu64, indent6, discarded_events); MSG("%slost packets: %" PRIu64, indent6, lost_packets); switch (channel->attr.output) {