Changeset 12522 for branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Status/3.3/WebApp/history
- Timestamp:
- 06/26/15 11:35:20 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:mergeinfo changed
/trunk/sources merged: 12517-12521
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Status/3.3/WebApp/history/history.cshtml
r12516 r12522 12 12 <div id="history-header"> 13 13 <form class="form-inline"> 14 <div class="form-group" >14 <div class="form-group" style="margin-left: 5px; margin-right: 5px;"> 15 15 <label for="fromDate">From: </label> 16 16 <div class="input-group"> … … 21 21 </div> 22 22 </div> 23 <div class="form-group" >24 <label for="fromDate"> To: </label>23 <div class="form-group" style="margin-left: 5px; margin-right: 5px;"> 24 <label for="fromDate">To: </label> 25 25 <div class="input-group"> 26 26 <input id="fromDate" type="text" class="form-control" datepicker-popup="dd.MM.yyyy" ng-model="toDate" is-open="toIsOpen" datepicker-options="dateOptions" ng-required="true" close-text="Close" /> … … 29 29 </span> 30 30 </div> 31 </div> 32 <div class="form-group" style="margin-left: 5px; margin-right: 5px;"> 33 <button type="button" class="btn btn-default" ng-click="updateCharts()"> 34 Apply 35 </button> 31 36 </div> 32 37 </form> -
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Status/3.3/WebApp/history/historyCtrl.js
r12435 r12522 14 14 yaxis: { 15 15 min: 0, 16 max: 100, 17 zoomRange: false, 18 panRange: false 16 max: 100 19 17 }, 20 18 xaxis: { 21 19 mode: "time", 22 20 twelveHourClock: false 23 },24 zoom: {25 interactive: true26 },27 pan: {28 interactive: true29 21 } 30 22 }; … … 42 34 } 43 35 }, 44 yaxis: {45 zoomRange: false,46 panRange: false47 },48 36 xaxis: { 49 37 mode: "time", 50 38 twelveHourClock: false 51 },52 zoom: {53 interactive: true54 },55 pan: {56 interactive: true57 39 } 58 40 }; … … 88 70 $scope.memorySeries = [[]]; 89 71 90 varupdateCharts = function () {72 $scope.updateCharts = function () { 91 73 dataService.getStatusHistory({ start: ConvertFromDate($scope.fromDate), end: ConvertToDate($scope.toDate) }, function (status) { 92 74 var noOfStatus = status.length; … … 100 82 coreSeries[0].push([curStatus.Timestamp, curStatus.CoreStatus.ActiveCores]); 101 83 coreSeries[1].push([curStatus.Timestamp, curStatus.CoreStatus.CalculatingCores]); 102 memorySeries[0].push([curStatus.Timestamp, curStatus.MemoryStatus.ActiveMemory]);103 memorySeries[1].push([curStatus.Timestamp, curStatus.MemoryStatus.UsedMemory]);84 memorySeries[0].push([curStatus.Timestamp, Math.round(curStatus.MemoryStatus.ActiveMemory / 1024)]); 85 memorySeries[1].push([curStatus.Timestamp, Math.round(curStatus.MemoryStatus.UsedMemory / 1024)]); 104 86 } 105 87 $scope.cpuSeries = [{ data: cpuSeries, label: " CPU Utilization", color: "#f7921d" }]; … … 115 97 }); 116 98 }; 117 118 $scope.$watch('fromDate', function (newValue, oldValue) { 119 updateCharts(); 120 }); 121 $scope.$watch('toDate', function (newValue, oldValue) { 122 updateCharts(); 123 }); 99 $scope.updateCharts(); 124 100 }] 125 101 );
Note: See TracChangeset
for help on using the changeset viewer.