Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/30/15 13:12:07 (9 years ago)
Author:
dglaser
Message:

#2388:

HeuristicLab.Services.Hive.DataAccess-3.3:

  • updated database schema
  • updated sql scripts
  • updated HiveStatisticsGenerator

HeuristicLab.Services.WebApp-3.3:

  • merged from trunk

HeuristicLab.Services.WebApp.Status-3.3:

  • updated data api controller

HeuristicLab.Services.WebApp.Statistics-3.3:

  • added exception page
  • improved jobs, clients, users and groups page
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  
    7878                    for (var i = 0; i < noOfStatus; ++i) {
    7979                        var curStatus = status[i];
    80                         var cpuData = Math.round(curStatus.CpuUtilizationStatus.ActiveCpuUtilization);
     80                        var cpuData = Math.round(curStatus.CpuUtilizationStatus.TotalCpuUtilization);
    8181                        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)]);
    8585                        memorySeries[1].push([curStatus.Timestamp, Math.round(curStatus.MemoryStatus.UsedMemory / 1024)]);
    8686                    }
     
    9494                        { data: memorySeries[1], label: "&nbsp;Used Memory", color: "LightPink" }
    9595                    ];
    96 
    9796                });
    9897            };
Note: See TracChangeset for help on using the changeset viewer.