summaryrefslogtreecommitdiff
path: root/src/store/modules/HardwareStatus/SystemStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/HardwareStatus/SystemStore.js')
-rw-r--r--src/store/modules/HardwareStatus/SystemStore.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/store/modules/HardwareStatus/SystemStore.js b/src/store/modules/HardwareStatus/SystemStore.js
index a94bb14f..a1394f1e 100644
--- a/src/store/modules/HardwareStatus/SystemStore.js
+++ b/src/store/modules/HardwareStatus/SystemStore.js
@@ -17,6 +17,7 @@ const SystemStore = {
system.firmwareVersion = data.BiosVersion;
system.hardwareType = data.Name;
system.health = data.Status?.Health;
+ system.totalSystemMemoryGiB = data.MemorySummary?.TotalSystemMemoryGiB;
system.id = data.Id;
system.locationIndicatorActive = data.LocationIndicatorActive;
system.locationNumber = data.Location?.PartLocation?.ServiceLabel;
@@ -27,6 +28,7 @@ const SystemStore = {
system.memorySummaryState = data.MemorySummary?.Status?.State;
system.model = data.Model;
system.processorSummaryCount = data.ProcessorSummary?.Count;
+ system.processorSummaryCoreCount = data.ProcessorSummary?.CoreCount;
system.processorSummaryHealth = data.ProcessorSummary?.Status?.Health;
system.processorSummaryHealthRoll =
data.ProcessorSummary?.Status.HealthRollup;