Commit 7e9bf4e6 authored by Dietmar Maurer's avatar Dietmar Maurer

display number of sockets on nodes status panel

parent a6ca31a7
...@@ -11,7 +11,9 @@ Ext.define('PVE.node.StatusView', { ...@@ -11,7 +11,9 @@ Ext.define('PVE.node.StatusView', {
} }
var render_cpuinfo = function(value) { var render_cpuinfo = function(value) {
return value.cpus + " x " + value.model; return value.cpus + " x " + value.model + " (" +
value.sockets + " " +
(value.sockets > 1 ? "Sockets" : "Socket") + ")";
}; };
var render_loadavg = function(value) { var render_loadavg = function(value) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment