Skip to content

Commit

Permalink
ui: show number of CPU cores in node list
Browse files Browse the repository at this point in the history
Release note: None
  • Loading branch information
Pete Vilter committed Jul 18, 2018
1 parent 556a6c4 commit cc5f44c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/ui/src/views/cluster/containers/nodesOverview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ class LiveNodeList extends React.Component<NodeCategoryListProps, {}> {
cell: (ns) => `n${ns.desc.node_id}`,
sort: (ns) => ns.desc.node_id,
},
{
title: "Cores",
cell: (ns) => ns.num_cores,
},
// Node address column - displays the node address, links to the
// node-specific page for this node.
{
Expand Down

0 comments on commit cc5f44c

Please sign in to comment.