From 18cde3ce0c1b2f99e94f5cef66661adcb22ba8f7 Mon Sep 17 00:00:00 2001 From: Nikhil Ashoka Date: Wed, 5 Jan 2022 22:21:24 +0530 Subject: Add values to system inventory table TotalSystemMemoryGiB and CoreCount field is not present. Added TotalSystemMemoryGiB under Memory summary Added CoreCount under Processor summary Signed-off-by: Nikhil Ashoka Change-Id: I598abc7c05dd5113db0071ecd71bbcc32ad696c4 --- src/views/HardwareStatus/Inventory/InventoryTableSystem.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/views/HardwareStatus') diff --git a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue index 20d63d79..93e65bbe 100644 --- a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue +++ b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue @@ -111,7 +111,10 @@
{{ dataFormatter(item.memorySummaryHealth) }}
{{ $t('pageInventory.table.healthRollup') }}:
-
{{ dataFormatter(item.memorySummaryHealthRoll) }}
+
{{ dataFormatter(item.memorySummaryHealthRollup) }}
+ +
{{ $t('pageInventory.table.totalSystemMemoryGiB') }}:
+
{{ dataFormatter(item.totalSystemMemoryGiB) }}GB

@@ -130,6 +133,9 @@

{{ $t('pageInventory.table.count') }}:
{{ dataFormatter(item.processorSummaryCount) }}
+ +
{{ $t('pageInventory.table.coreCount') }}:
+
{{ dataFormatter(item.processorSummaryCoreCount) }}
-- cgit v1.2.3