Changeset 12551 for branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Status/3.3/WebApp/history
- Timestamp:
- 06/30/15 13:12:07 (9 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
-
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Status/3.3/WebApp/history/historyCtrl.js
r12522 r12551 78 78 for (var i = 0; i < noOfStatus; ++i) { 79 79 var curStatus = status[i]; 80 var cpuData = Math.round(curStatus.CpuUtilizationStatus. ActiveCpuUtilization);80 var cpuData = Math.round(curStatus.CpuUtilizationStatus.TotalCpuUtilization); 81 81 cpuSeries.push([curStatus.Timestamp, cpuData]); 82 coreSeries[0].push([curStatus.Timestamp, curStatus.CoreStatus. ActiveCores]);83 coreSeries[1].push([curStatus.Timestamp, curStatus.CoreStatus. CalculatingCores]);84 memorySeries[0].push([curStatus.Timestamp, Math.round(curStatus.MemoryStatus. ActiveMemory / 1024)]);82 coreSeries[0].push([curStatus.Timestamp, curStatus.CoreStatus.TotalCores]); 83 coreSeries[1].push([curStatus.Timestamp, curStatus.CoreStatus.UsedCores]); 84 memorySeries[0].push([curStatus.Timestamp, Math.round(curStatus.MemoryStatus.TotalMemory / 1024)]); 85 85 memorySeries[1].push([curStatus.Timestamp, Math.round(curStatus.MemoryStatus.UsedMemory / 1024)]); 86 86 } … … 94 94 { data: memorySeries[1], label: " Used Memory", color: "LightPink" } 95 95 ]; 96 97 96 }); 98 97 };
Note: See TracChangeset
for help on using the changeset viewer.