[lxc-devel] [lxd/master] lxc list, two new usage columns

erifri on Github lxc-bot at linuxcontainers.org
Fri Nov 13 12:47:05 UTC 2020


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 1512 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20201113/a1a716b1/attachment-0001.bin>
-------------- next part --------------
From 3ca26a8a4fcb2f9f700a178f2188f04027651d47 Mon Sep 17 00:00:00 2001
From: Erik Frisk <erifri at gmail.com>
Date: Fri, 13 Nov 2020 13:28:59 +0100
Subject: [PATCH 1/3] Added two new column types for list: memory usage% and
 cpu usage (in seconds).\n\nSigned-off-by: Erik Frisk <erifri at gmail.com>

---
 lxc/list.go   | 27 +++++++++++++++++++++++++++
 po/ber.po     | 47 ++++++++++++++++++++++++++++-------------------
 po/bg.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/ca.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/de.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/el.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/es.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/fa.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/fi.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/fr.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/hi.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/id.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/it.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/ja.po      | 48 +++++++++++++++++++++++++++++-------------------
 po/ko.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/lxd.pot    | 47 ++++++++++++++++++++++++++++-------------------
 po/mr.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/nb_NO.po   | 47 ++++++++++++++++++++++++++++-------------------
 po/nl.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/pa.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/pl.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/pt_BR.po   | 47 ++++++++++++++++++++++++++++-------------------
 po/ru.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/sl.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/sr.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/sv.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/te.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/tr.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/tzm.po     | 47 ++++++++++++++++++++++++++++-------------------
 po/ug.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/uk.po      | 47 ++++++++++++++++++++++++++++-------------------
 po/zh_Hans.po | 47 ++++++++++++++++++++++++++++-------------------
 32 files changed, 896 insertions(+), 589 deletions(-)

diff --git a/lxc/list.go b/lxc/list.go
index be0b2aeeb6..c7fbbfc38c 100644
--- a/lxc/list.go
+++ b/lxc/list.go
@@ -432,6 +432,8 @@ func (c *cmdList) parseColumns(clustered bool) ([]column, bool, error) {
 		'F': {i18n.G("BASE IMAGE"), c.baseImageFullColumnData, false, false},
 		'l': {i18n.G("LAST USED AT"), c.LastUsedColumnData, false, false},
 		'm': {i18n.G("MEMORY USAGE"), c.memoryUsageColumnData, true, false},
+		'%': {i18n.G("MEMORY USAGE%"), c.memoryUsagePercentColumnData, true, false},
+		'U': {i18n.G("CPU USAGE"), c.cpuUsageSecondsColumnData, true, false},
 		'n': {i18n.G("NAME"), c.nameColumnData, false, false},
 		'N': {i18n.G("PROCESSES"), c.NumberOfProcessesColumnData, true, false},
 		'p': {i18n.G("PID"), c.PIDColumnData, true, false},
@@ -663,6 +665,31 @@ func (c *cmdList) memoryUsageColumnData(cInfo api.InstanceFull) string {
 	return ""
 }
 
+func (c *cmdList) memoryUsagePercentColumnData(cInfo api.InstanceFull) string {
+
+	if cInfo.IsActive() && cInfo.State != nil && cInfo.State.Memory.Usage > 0 {
+
+		if cInfo.ExpandedConfig["limits.memory"] != "" {
+			memorylimit, err := units.ParseByteSizeString(cInfo.ExpandedConfig["limits.memory"])
+			if err == nil {
+				return fmt.Sprintf("%.1f%%", (float64(cInfo.State.Memory.Usage)/float64(memorylimit))*float64(100))
+			}
+
+		}
+
+	}
+
+	return ""
+}
+
+func (c *cmdList) cpuUsageSecondsColumnData(cInfo api.InstanceFull) string {
+	if cInfo.IsActive() && cInfo.State != nil && cInfo.State.CPU.Usage > 0 {
+		return fmt.Sprintf("%ds", cInfo.State.CPU.Usage/1000000000)
+	}
+
+	return ""
+}
+
 func (c *cmdList) diskUsageColumnData(cInfo api.InstanceFull) string {
 	rootDisk, _, _ := shared.GetRootDiskDevice(cInfo.ExpandedDevices)
 
diff --git a/po/ber.po b/po/ber.po
index e56268d5c8..3ff8d5db82 100644
--- a/po/ber.po
+++ b/po/ber.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/bg.po b/po/bg.po
index 577f5b70a4..e54aca9e7d 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/ca.po b/po/ca.po
index e1b9ca6424..3c38f9e91c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/de.po b/po/de.po
index 2f15f33275..c3087ec3d8 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2020-04-27 19:48+0000\n"
 "Last-Translator: Predatorix Phoenix <predatorix at web.de>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -679,6 +679,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr " Prozessorauslastung:"
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -746,7 +750,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -754,7 +758,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1279,7 +1283,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1342,7 +1346,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1810,12 +1814,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr "Akzeptiere Zertifikat"
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1830,17 +1834,17 @@ msgstr "Ungültiges Ziel %s"
 msgid "Invalid instance name: %s"
 msgstr "Ungültige Quelle %s"
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1892,7 +1896,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2154,6 +2158,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2443,7 +2452,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2616,15 +2625,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -3054,7 +3063,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -3066,7 +3075,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3488,7 +3497,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3691,7 +3700,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/el.po b/po/el.po
index 8ec58a2a4c..ec173b848d 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2017-02-14 08:00+0000\n"
 "Last-Translator: Simos Xenitellis <simos.65 at gmail.com>\n"
 "Language-Team: Greek <https://hosted.weblate.org/projects/linux-containers/"
@@ -526,6 +526,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr "  Χρήση CPU:"
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -583,7 +587,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -591,7 +595,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1078,7 +1082,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1136,7 +1140,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1580,12 +1584,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1600,17 +1604,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1657,7 +1661,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1895,6 +1899,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2162,7 +2171,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2332,15 +2341,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2748,7 +2757,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2760,7 +2769,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3160,7 +3169,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3356,7 +3365,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/es.po b/po/es.po
index 37ac2d1c2e..0812e18626 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Spanish <https://hosted.weblate.org/projects/linux-containers/"
@@ -653,6 +653,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr "Uso de CPU:"
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr "Uso de CPU (en segundos)"
@@ -710,7 +714,7 @@ msgstr "No se peude leer desde stdin: %s"
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -719,7 +723,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr "No se puede especificar un remote diferente para renombrar."
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1215,7 +1219,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1273,7 +1277,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1722,12 +1726,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1742,17 +1746,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr "Nombre del contenedor es: %s"
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1799,7 +1803,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2039,6 +2043,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2308,7 +2317,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2476,15 +2485,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2898,7 +2907,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2910,7 +2919,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3310,7 +3319,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3506,7 +3515,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 2f424aced8..6a89d24c04 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 2a10afadf3..4f8a12c2e4 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/fr.po b/po/fr.po
index a133001228..738ffde3e1 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2019-01-04 18:07+0000\n"
 "Last-Translator: Deleted User <noreply+12102 at weblate.org>\n"
 "Language-Team: French <https://hosted.weblate.org/projects/linux-containers/"
@@ -676,6 +676,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr "CPU utilisé :"
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr "CPU utilisé (en secondes)"
@@ -736,7 +740,7 @@ msgstr "Impossible de lire depuis stdin : %s"
 msgid "Can't remove the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -744,7 +748,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1287,7 +1291,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr "ÉPHÉMÈRE"
 
@@ -1351,7 +1355,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1834,12 +1838,12 @@ msgstr "Schème d'URL invalide \"%s\" in \"%s\""
 msgid "Invalid certificate"
 msgstr "Certificat invalide"
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, fuzzy, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "Clé de configuration invalide"
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1854,17 +1858,17 @@ msgstr "Cible invalide %s"
 msgid "Invalid instance name: %s"
 msgstr "Le nom du conteneur est : %s"
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1912,7 +1916,7 @@ msgstr "Garder l'image à jour après la copie initiale"
 msgid "LAST USED AT"
 msgstr "DERNIÈRE UTILISATION À"
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2215,6 +2219,11 @@ msgstr "GÉRÉ"
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2507,7 +2516,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2689,15 +2698,15 @@ msgstr "Surcharger le mode terminal (auto, interactif ou non-interactif)"
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr "PROFILS"
 
@@ -3129,7 +3138,7 @@ msgstr ""
 msgid "SIZE"
 msgstr "TAILLE"
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr "INSTANTANÉS"
 
@@ -3141,7 +3150,7 @@ msgstr "SOURCE"
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr "ÉTAT"
 
@@ -3575,7 +3584,7 @@ msgstr "impossible de supprimer le serveur distant par défaut"
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr "TYPE"
@@ -3784,7 +3793,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 9d670fcc6f..86b1b9de31 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/id.po b/po/id.po
index 4a75de7da1..f9d90bf39e 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/it.po b/po/it.po
index 17b91d34dc..280e98afa9 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Luigi Operoso <brokenpip3 at gmail.com>\n"
 "Language-Team: Italian <https://hosted.weblate.org/projects/linux-containers/"
@@ -643,6 +643,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr "Utilizzo CPU:"
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr "Utilizzo CPU (in secondi)"
@@ -700,7 +704,7 @@ msgstr "Impossible leggere da stdin: %s"
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -708,7 +712,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1204,7 +1208,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1263,7 +1267,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1712,12 +1716,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1732,17 +1736,17 @@ msgstr "Proprietà errata: %s"
 msgid "Invalid instance name: %s"
 msgstr "Il nome del container è: %s"
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1790,7 +1794,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2031,6 +2035,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2302,7 +2311,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2470,15 +2479,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2893,7 +2902,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2905,7 +2914,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3307,7 +3316,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3504,7 +3513,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 6c71c8334e..1c6a7af0ae 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2020-09-25 15:37+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -655,6 +655,11 @@ msgstr "CONTENT TYPE"
 msgid "CPU (%s):"
 msgstr "CPU (%s):"
 
+#: lxc/list.go:436
+#, fuzzy
+msgid "CPU USAGE"
+msgstr "DISK USAGE"
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr "CPU使用量(秒)"
@@ -712,7 +717,7 @@ msgstr "標準入力から読み込めません: %s"
 msgid "Can't remove the default remote"
 msgstr "デフォルトのリモートは削除できません"
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr "--fast と --columns は同時に指定できません"
 
@@ -720,7 +725,7 @@ msgstr "--fast と --columns は同時に指定できません"
 msgid "Can't specify a different remote for rename"
 msgstr "リネームの場合は異なるリモートを指定できません"
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr "クラスタでない場合はカラムとして L は指定できません"
 
@@ -1218,7 +1223,7 @@ msgstr "進捗情報を表示しません"
 msgid "Driver: %v (%v)"
 msgstr "ドライバ: %v (%v)"
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr "EPHEMERAL"
 
@@ -1278,7 +1283,7 @@ msgstr "ストレージプールの設定をYAMLで編集します"
 msgid "Edit storage volume configurations as YAML"
 msgstr "ストレージボリュームの設定をYAMLで編集します"
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1772,12 +1777,12 @@ msgstr "不正な URL スキーム \"%s\" (\"%s\" 内)"
 msgid "Invalid certificate"
 msgstr "不正な証明書です"
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "'%s' は正しくない設定項目 (key) です (%s 中の)"
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1793,19 +1798,19 @@ msgstr "不正なフォーマット %q"
 msgid "Invalid instance name: %s"
 msgstr "不正なインスタンス名: %s"
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 "'%s' は最大幅の値として不正です (-1 もしくは 0 もしくは正の整数でなくてはなり"
 "ません) ('%s' 中の)"
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr "'%s' は最大幅の値として不正です (整数でなくてはなりません) ('%s' 中の)"
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1853,7 +1858,7 @@ msgstr "最初にコピーした後も常にイメージを最新の状態に保
 msgid "LAST USED AT"
 msgstr "LAST USED AT"
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr "LOCATION"
@@ -2184,6 +2189,11 @@ msgstr "MANAGED"
 msgid "MEMORY USAGE"
 msgstr "MEMORY USAGE"
 
+#: lxc/list.go:435
+#, fuzzy, c-format
+msgid "MEMORY USAGE%"
+msgstr "MEMORY USAGE"
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr "MESSAGE"
@@ -2471,7 +2481,7 @@ msgstr "ディレクトリからのインポートは root で実行する必要
 msgid "Must supply instance name for: "
 msgstr "インスタンス名を指定する必要があります: "
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2640,15 +2650,15 @@ msgstr "ターミナルモードを上書きします (auto, interactive, non-in
 msgid "PCI address: %v"
 msgstr "PCI アドレス: %v"
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr "PROCESSES"
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr "PROFILES"
 
@@ -3063,7 +3073,7 @@ msgstr "すべてのインスタンスに対してコマンドを実行します
 msgid "SIZE"
 msgstr "SIZE"
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr "SNAPSHOTS"
 
@@ -3075,7 +3085,7 @@ msgstr "SOURCE"
 msgid "SR-IOV information:"
 msgstr "SR-IOV 情報:"
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr "STATE"
 
@@ -3507,7 +3517,7 @@ msgstr "デフォルトのリモートを切り替えます"
 msgid "TARGET"
 msgstr "TARGET"
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr "TYPE"
@@ -3728,7 +3738,7 @@ msgstr "UUID: %v"
 msgid "Unable to create a temporary file: %v"
 msgstr "テンポラリファイルを作成できません: %v"
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr "未知のカラム名の短縮形です '%c' ('%s' 中)"
diff --git a/po/ko.po b/po/ko.po
index 6618944997..96fb412d96 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/lxd.pot b/po/lxd.pot
index 272d3f5911..6c05ee4fa1 100644
--- a/po/lxd.pot
+++ b/po/lxd.pot
@@ -7,7 +7,7 @@
 msgid   ""
 msgstr  "Project-Id-Version: lxd\n"
         "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-        "POT-Creation-Date: 2020-11-12 12:05-0500\n"
+        "POT-Creation-Date: 2020-11-13 13:24+0100\n"
         "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
         "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
         "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -506,6 +506,10 @@ msgstr  ""
 msgid   "CPU (%s):"
 msgstr  ""
 
+#: lxc/list.go:436
+msgid   "CPU USAGE"
+msgstr  ""
+
 #: lxc/info.go:509
 msgid   "CPU usage (in seconds)"
 msgstr  ""
@@ -562,7 +566,7 @@ msgstr  ""
 msgid   "Can't remove the default remote"
 msgstr  ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid   "Can't specify --fast with --columns"
 msgstr  ""
 
@@ -570,7 +574,7 @@ msgstr  ""
 msgid   "Can't specify a different remote for rename"
 msgstr  ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid   "Can't specify column L when not clustered"
 msgstr  ""
 
@@ -987,7 +991,7 @@ msgstr  ""
 msgid   "Driver: %v (%v)"
 msgstr  ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid   "EPHEMERAL"
 msgstr  ""
 
@@ -1043,7 +1047,7 @@ msgstr  ""
 msgid   "Edit storage volume configurations as YAML"
 msgstr  ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid   "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr  ""
@@ -1467,12 +1471,12 @@ msgstr  ""
 msgid   "Invalid certificate"
 msgstr  ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid   "Invalid config key '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid   "Invalid config key column format (too many fields): '%s'"
 msgstr  ""
@@ -1487,17 +1491,17 @@ msgstr  ""
 msgid   "Invalid instance name: %s"
 msgstr  ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid   "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid   "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid   "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr  ""
@@ -1543,7 +1547,7 @@ msgstr  ""
 msgid   "LAST USED AT"
 msgstr  ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165 lxc/storage_volume.go:1144
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165 lxc/storage_volume.go:1144
 msgid   "LOCATION"
 msgstr  ""
 
@@ -1772,6 +1776,11 @@ msgstr  ""
 msgid   "MEMORY USAGE"
 msgstr  ""
 
+#: lxc/list.go:435
+#, c-format
+msgid   "MEMORY USAGE%"
+msgstr  ""
+
 #: lxc/cluster.go:136
 msgid   "MESSAGE"
 msgstr  ""
@@ -2013,7 +2022,7 @@ msgstr  ""
 msgid   "Must supply instance name for: "
 msgstr  ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620 lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558 lxc/storage_volume.go:1138
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620 lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558 lxc/storage_volume.go:1138
 msgid   "NAME"
 msgstr  ""
 
@@ -2177,15 +2186,15 @@ msgstr  ""
 msgid   "PCI address: %v"
 msgstr  ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid   "PID"
 msgstr  ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid   "PROCESSES"
 msgstr  ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid   "PROFILES"
 msgstr  ""
 
@@ -2587,7 +2596,7 @@ msgstr  ""
 msgid   "SIZE"
 msgstr  ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid   "SNAPSHOTS"
 msgstr  ""
 
@@ -2599,7 +2608,7 @@ msgstr  ""
 msgid   "SR-IOV information:"
 msgstr  ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid   "STATE"
 msgstr  ""
 
@@ -2983,7 +2992,7 @@ msgstr  ""
 msgid   "TARGET"
 msgstr  ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879 lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879 lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid   "TYPE"
 msgstr  ""
 
@@ -3166,7 +3175,7 @@ msgstr  ""
 msgid   "Unable to create a temporary file: %v"
 msgstr  ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid   "Unknown column shorthand char '%c' in '%s'"
 msgstr  ""
diff --git a/po/mr.po b/po/mr.po
index e147972a44..1022c0c1fd 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/nb_NO.po b/po/nb_NO.po
index c17f12b2d2..bfb7555772 100644
--- a/po/nb_NO.po
+++ b/po/nb_NO.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 028e758177..c5dc1917aa 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Dutch <https://hosted.weblate.org/projects/linux-containers/"
@@ -640,6 +640,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -696,7 +700,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -704,7 +708,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1188,7 +1192,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1246,7 +1250,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1690,12 +1694,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1710,17 +1714,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1767,7 +1771,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2005,6 +2009,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2270,7 +2279,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2438,15 +2447,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2854,7 +2863,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2866,7 +2875,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3266,7 +3275,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3462,7 +3471,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/pa.po b/po/pa.po
index def35559ad..f7dbfb11c0 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/pl.po b/po/pl.po
index c2217a097f..76e88de755 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2018-09-08 19:22+0000\n"
 "Last-Translator: m4sk1n <me at m4sk.in>\n"
 "Language-Team: Polish <https://hosted.weblate.org/projects/linux-containers/"
@@ -650,6 +650,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -706,7 +710,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -714,7 +718,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1198,7 +1202,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1256,7 +1260,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1700,12 +1704,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1720,17 +1724,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1777,7 +1781,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2015,6 +2019,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2280,7 +2289,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2448,15 +2457,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2864,7 +2873,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2876,7 +2885,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3276,7 +3285,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3472,7 +3481,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 0d2d939e46..b8d4835843 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -665,6 +665,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr "Utilização do CPU:"
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr "Utilização do CPU (em segundos)"
@@ -722,7 +726,7 @@ msgstr "Não é possível ler stdin: %s"
 msgid "Can't remove the default remote"
 msgstr "Não é possível remover o default remoto"
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr "Não é possível especificar --fast com --columns"
 
@@ -730,7 +734,7 @@ msgstr "Não é possível especificar --fast com --columns"
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr "Não pode especificar a coluna L, quando não em cluster"
 
@@ -1240,7 +1244,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr "EFÊMERO"
 
@@ -1304,7 +1308,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1753,12 +1757,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1773,17 +1777,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr "Editar arquivos no container"
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1830,7 +1834,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2069,6 +2073,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2340,7 +2349,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2508,15 +2517,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2931,7 +2940,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2943,7 +2952,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3352,7 +3361,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3548,7 +3557,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/ru.po b/po/ru.po
index dfc3ab494e..e0c9fef4ca 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2020-10-08 08:16+0000\n"
 "Last-Translator: Artem <KovalevArtem.ru at gmail.com>\n"
 "Language-Team: Russian <https://hosted.weblate.org/projects/linux-containers/"
@@ -669,6 +669,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr " Использование ЦП:"
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr "Использование ЦП (в секундах)"
@@ -727,7 +731,7 @@ msgstr "Невозможно прочитать из стандартного в
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -735,7 +739,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1239,7 +1243,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1299,7 +1303,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1753,12 +1757,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1773,17 +1777,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr "Имя контейнера: %s"
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1830,7 +1834,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -2073,6 +2077,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2350,7 +2359,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2521,15 +2530,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2945,7 +2954,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2957,7 +2966,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3363,7 +3372,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3559,7 +3568,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/sl.po b/po/sl.po
index c02c29fa9b..a177d7f301 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 3380f073ac..515cf58e57 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/sv.po b/po/sv.po
index f94898c353..856517c99d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/te.po b/po/te.po
index b10af26509..24eba426c5 100644
--- a/po/te.po
+++ b/po/te.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 9abadc3737..e826860313 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/tzm.po b/po/tzm.po
index f18e967807..b82589251c 100644
--- a/po/tzm.po
+++ b/po/tzm.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/ug.po b/po/ug.po
index 181072fce2..2555bafebc 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 7d7d9de5da..4148b3d046 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -523,6 +523,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -579,7 +583,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -587,7 +591,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1071,7 +1075,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1129,7 +1133,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1573,12 +1577,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1593,17 +1597,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,7 +1654,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1888,6 +1892,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2153,7 +2162,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2321,15 +2330,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2737,7 +2746,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2758,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3149,7 +3158,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3345,7 +3354,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index 4cfdf903bb..1c5e46f2b0 100644
--- a/po/zh_Hans.po
+++ b/po/zh_Hans.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-11-11 14:49-0500\n"
+"POT-Creation-Date: 2020-11-13 13:24+0100\n"
 "PO-Revision-Date: 2020-11-05 02:45+0000\n"
 "Last-Translator: wdggg <wdggg7 at gmail.com>\n"
 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
@@ -566,6 +566,10 @@ msgstr ""
 msgid "CPU (%s):"
 msgstr ""
 
+#: lxc/list.go:436
+msgid "CPU USAGE"
+msgstr ""
+
 #: lxc/info.go:509
 msgid "CPU usage (in seconds)"
 msgstr ""
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:447
+#: lxc/list.go:449
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -630,7 +634,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:461
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -1114,7 +1118,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:682
+#: lxc/list.go:709
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1172,7 +1176,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1024 lxc/list.go:471
+#: lxc/image.go:1024 lxc/list.go:473
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1616,12 +1620,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:503
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:497
+#: lxc/list.go:499
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1636,17 +1640,17 @@ msgstr ""
 msgid "Invalid instance name: %s"
 msgstr ""
 
-#: lxc/list.go:522
+#: lxc/list.go:524
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:519
+#: lxc/list.go:521
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:510
+#: lxc/list.go:512
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1693,7 +1697,7 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:455 lxc/network.go:957 lxc/operation.go:165
+#: lxc/list.go:457 lxc/network.go:957 lxc/operation.go:165
 #: lxc/storage_volume.go:1144
 msgid "LOCATION"
 msgstr ""
@@ -1931,6 +1935,11 @@ msgstr ""
 msgid "MEMORY USAGE"
 msgstr ""
 
+#: lxc/list.go:435
+#, c-format
+msgid "MEMORY USAGE%"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2196,7 +2205,7 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:878 lxc/profile.go:620
+#: lxc/cluster.go:132 lxc/list.go:437 lxc/network.go:878 lxc/profile.go:620
 #: lxc/project.go:460 lxc/remote.go:577 lxc/storage.go:558
 #: lxc/storage_volume.go:1138
 msgid "NAME"
@@ -2364,15 +2373,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:439
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:436
+#: lxc/list.go:438
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:438 lxc/project.go:462
+#: lxc/list.go:440 lxc/project.go:462
 msgid "PROFILES"
 msgstr ""
 
@@ -2780,7 +2789,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:439
+#: lxc/list.go:441
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2792,7 +2801,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:887 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:442 lxc/network.go:887 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -3192,7 +3201,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:879
+#: lxc/image.go:1016 lxc/image_alias.go:233 lxc/list.go:443 lxc/network.go:879
 #: lxc/network.go:954 lxc/operation.go:159 lxc/storage_volume.go:1137
 msgid "TYPE"
 msgstr ""
@@ -3388,7 +3397,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1031 lxc/list.go:485
+#: lxc/image.go:1031 lxc/list.go:487
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""

From 9629ecdba287b8666f9cc920f111119120f39bf4 Mon Sep 17 00:00:00 2001
From: Erik Frisk <erifri at gmail.com>
Date: Fri, 13 Nov 2020 13:32:49 +0100
Subject: [PATCH 2/3] Added example text.\n\nSigned-off-by: Erik Frisk
 <erifri at gmail.com>

---
 lxc/list.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lxc/list.go b/lxc/list.go
index c7fbbfc38c..3223da3f2c 100644
--- a/lxc/list.go
+++ b/lxc/list.go
@@ -85,6 +85,7 @@ Pre-defined column shorthand chars:
   D - disk usage
   l - Last used date
   m - Memory usage
+  % - Memory usage (%)
   n - Name
   N - Number of Processes
   p - PID of the instance's init process
@@ -92,6 +93,7 @@ Pre-defined column shorthand chars:
   s - State
   S - Number of snapshots
   t - Type (persistent or ephemeral)
+	U - CPU usage (in seconds)
   L - Location of the instance (e.g. its cluster member)
   f - Base Image Fingerprint (short)
   F - Base Image Fingerprint (long)

From 90aec55aadc071fe8214e4b03d7ef38c68daef57 Mon Sep 17 00:00:00 2001
From: Erik Frisk <erifri at gmail.com>
Date: Fri, 13 Nov 2020 13:40:31 +0100
Subject: [PATCH 3/3] Extra check to make sure limits.memory > 0

Signed-off-by: Erik Frisk <erifri at gmail.com>
---
 lxc/list.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxc/list.go b/lxc/list.go
index 3223da3f2c..93a6a0c8f0 100644
--- a/lxc/list.go
+++ b/lxc/list.go
@@ -673,7 +673,7 @@ func (c *cmdList) memoryUsagePercentColumnData(cInfo api.InstanceFull) string {
 
 		if cInfo.ExpandedConfig["limits.memory"] != "" {
 			memorylimit, err := units.ParseByteSizeString(cInfo.ExpandedConfig["limits.memory"])
-			if err == nil {
+			if err == nil && memorylimit > 0 {
 				return fmt.Sprintf("%.1f%%", (float64(cInfo.State.Memory.Usage)/float64(memorylimit))*float64(100))
 			}
 


More information about the lxc-devel mailing list