diff --git a/cli/stream_command.go b/cli/stream_command.go index 4c296792..faa76bd5 100644 --- a/cli/stream_command.go +++ b/cli/stream_command.go @@ -1357,14 +1357,14 @@ func (c *streamCmd) renderStreams(stats []streamStat) { if c.reportRaw { if s.LostMsgs > 0 { - lost = fmt.Sprintf("%d (%d)", s.LostMsgs, s.LostBytes) + lost = fmt.Sprintf("%d (%d)", f(s.LostMsgs), s.LostBytes) } table.AddRow(s.Name, s.Storage, placement, s.Consumers, s.Msgs, s.Bytes, lost, s.Deleted, renderCluster(s.Cluster)) } else { if s.LostMsgs > 0 { lost = fmt.Sprintf("%s (%s)", f(s.LostMsgs), humanize.IBytes(s.LostBytes)) } - table.AddRow(s.Name, s.Storage, placement, s.Consumers, f(s.Msgs), humanize.IBytes(s.Bytes), lost, s.Deleted, renderCluster(s.Cluster)) + table.AddRow(s.Name, s.Storage, placement, f(s.Consumers), f(s.Msgs), humanize.IBytes(s.Bytes), lost, f(s.Deleted), renderCluster(s.Cluster)) } }