Shorten long commands in ps

This commit is contained in:
Ben Firshman 2014-01-16 14:02:52 +00:00
parent b4c905dc83
commit c4f5ed839f
1 changed files with 4 additions and 1 deletions

View File

@ -156,9 +156,12 @@ class TopLevelCommand(Command):
] ]
rows = [] rows = []
for container in containers: for container in containers:
command = container.human_readable_command
if len(command) > 30:
command = '%s ...' % command[:30]
rows.append([ rows.append([
container.name, container.name,
container.human_readable_command, command,
container.human_readable_state, container.human_readable_state,
container.human_readable_ports, container.human_readable_ports,
]) ])