diff --git a/client/WEB-INF/classes/resources/messages.properties b/client/WEB-INF/classes/resources/messages.properties
index 663b71ea9c1..31476fe97fb 100644
--- a/client/WEB-INF/classes/resources/messages.properties
+++ b/client/WEB-INF/classes/resources/messages.properties
@@ -485,6 +485,10 @@ label.cpu.limits=CPU limits
label.cpu.mhz=CPU (in MHz)
label.cpu.utilized=CPU Utilized
label.cpu=CPU
+label.cpu.usage=CPU Usage
+label.cpu.used.avg=Average CPU
+label.cpu.max.dev=CPU Max Deviation
+label.cpu.total.ghz=Total CPU (Ghz)
label.create.project=Create project
label.create.template=Create template
label.create.VPN.connection=Create VPN Connection
@@ -791,6 +795,10 @@ label.memory.mb=Memory (in MB)
label.memory.total=Memory Total
label.memory.used=Memory Used
label.memory=Memory
+label.memory.usage=Memory Usage
+label.memory.used.avg=Average Memory
+label.memory.max.dev=Memory Max Deviation
+label.memory.total.gb=Total Memory (GB)
label.menu.accounts=Accounts
label.menu.alerts=Alerts
label.menu.all.accounts=All Accounts
diff --git a/ui/dictionary.jsp b/ui/dictionary.jsp
index caf0e5655d4..376c794f58b 100644
--- a/ui/dictionary.jsp
+++ b/ui/dictionary.jsp
@@ -500,6 +500,10 @@ dictionary = {
'label.cpu.limits': '',
'label.cpu.mhz': '',
'label.cpu.utilized': '',
+'label.cpu.usage': '',
+'label.cpu.used.avg': '',
+'label.cpu.max.dev': '',
+'label.cpu.total.ghz': '',
'label.created.by.system': '',
'label.created': '',
'label.create.project': '',
@@ -792,6 +796,10 @@ dictionary = {
'label.memory.mb': '',
'label.memory.total': '',
'label.memory.used': '',
+'label.memory.usage': '',
+'label.memory.used.avg': '',
+'label.memory.max.dev': '',
+'label.memory.total.gb': '',
'label.menu.accounts': '',
'label.menu.alerts': '',
'label.menu.all.accounts': '',
diff --git a/ui/scripts/metrics.js b/ui/scripts/metrics.js
index a5269b9df73..8d2a84c1ffa 100644
--- a/ui/scripts/metrics.js
+++ b/ui/scripts/metrics.js
@@ -55,7 +55,7 @@
label: 'label.hosts'
},
cpuused: {
- label: 'label.cpu.used',
+ label: 'label.cpu.usage',
collapsible: true,
columns: {
cpuusedavg: {
@@ -74,31 +74,31 @@
label: 'label.allocated'
},
cputotal: {
- label: 'label.cpu.total'
+ label: 'label.cpu.total.ghz'
}
}
},
memused: {
- label: 'label.mem.used',
+ label: 'label.memory.usage',
collapsible: true,
columns: {
memusedavg: {
- label: 'label.mem.used.avg'
+ label: 'label.memory.used.avg'
},
memmaxdev: {
- label: 'label.mem.max.dev'
+ label: 'label.memory.max.dev'
}
}
},
memallocated: {
- label: 'label.mem.allocated',
+ label: 'label.memory.allocated',
collapsible: true,
columns: {
memallocated: {
label: 'label.allocated'
},
memtotal: {
- label: 'label.mem.total'
+ label: 'label.memory.total.gb'
}
}
}