Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GBT/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx.cs @ 12495

Last change on this file since 12495 was 12495, checked in by gkronber, 9 years ago

#2261: merged trunk changes to branch
r12494
#2403: added a null check in the MatlabParameterVectorEvaluator to prevent exceptions when clearstate is called


r12493
#2369: added support for squared errors and relative errors to error-characteristic-curve view


r12492
#2392: implemented PearsonsRCalculator to fix incorrect correlation values in the correlation matrix.


r12491
#2402 don't set task state to waiting when it fails


r12490
#2401 added missing Mono.Cecil plugin dependency


r12488
#2400 - Interfaces for Capaciated-, PickupAndDelivery- and TimeWindowed-ProblemInstances now specify an additional penalty parameter to set the current penalty factor for the constraint relaxation. - The setter of the penalty-property in ...


r12485
#2374 made RegressionSolution and ClassificationSolution non-abstract


r12482
#2320: Fixed warnings in unit test solutions introduced in r12420 by marking methods as obsolete.


r12481
#2320: Fixed AfterDeserialization of GEArtifialAntEvaluator.


r12480
#2320: Fixed error in symbolicexpressiontree crossover regarding the wiring of lookup parameters if persisted file is loaded.


r12479
#2397 moved GeoIP project into ExtLibs


r12478
#2329 fixed bug in simple code editor


r12476
#2331 removed outdated plugins


r12475
#2368 fixed compile warnings


r12474
#2399 worked on Mono project prepare script


r12473
#2329 added a simple code editor for Linux


r12472
#2399 - fixed MathJax.js file name - worked on Mono project prepare script


r12471
#2399 worked on Mono project prepare script


r12470
#2399 fixed pre-build events in project files


r12465
#2399 worked on mono project prepare script


r12464
#2399 added patch to project


r12463
#2399 fixed EPPlus so that it compiles on Linux


r12461
#2398: Skip root and start symbols when calculating impacts and replacement values in the pruning operators.


r12458
#2354 show label when no data is displayed and don't show the legend


r12457
#2353 removed duplicated call to Any() in Hive Status page


r12456
#2368 fixed modifier


r12455
#2368 added support in persistence for typecaches in streams


r12445
#2394: Changed Web.config compilation from debug to release to force script bundling. Changed history loading type from lazy to eager loading to increase performance. Fixed "getCoreStatus" typo in statusCtrl.js


r12443
#2394: Fixed UserTaskQuery and GetStatusHistory in the WebApp.Status plugin


r12442
#2394 added nuget folders to svn ignore list


r12435
#2394: Improved PluginManager and updated hive status monitor.


r12434
#2396 added symbolic expression tree formatter for C#


r12433
#2395: Minor change in DoubleValue.GetValue.


r12432
#2395 Use simple round-trip format for doubles because G17 prints some strange numbers (20.22 to 20.219999999999999999). Some accuracy can still be lost on 64bit machines, but should be very rare and minimal. double.MaxValue can still be pa...


r12431
#2395 Fixed parsing issues by using the G17 format.


r12430
#2394 added missing package config


r12429
#2394 added missing package config


r12428
#2394 added web app and status page to trunk


r12424
#2320: Adapted plugin file and updated project file of SymbolicExpressionTreeEncoding.


r12422
#2320: Merged the encoding class and all accompanying changes in the trunk.


r12401
#2387 Fixed a bug where the automatic selection of the first element behaved differently for the NewItemDialog.


r12400
#2387 Forgot to commit a file.


r12399
#2387 - Added context-menu for expanding and collapsing tree-nodes. - Improve response time when expanding/collapsing all nodes for TypeSelector and NewItemDialog.


r12398
#2387 - Added clearSearch-button in TypeSelector. - Adapted behavior of TypeSelector and NewItemDialog that a selected node stays selected as long as it matches the search criteria.


r12397
#2387 - Adapted behavior of the matching in the TypeSelector that it behave the same as the NewItemDialog. The search string is tokenized by space and matches if all tokens are contained, (eg. "Sym Reg" matches "SymbolicRegression...")...


r12393
#2025 - Removed Expand/CollapseAll buttons. - Removed cycling of items.


r12392
#2386: Updated GetHashCode method in the EnumerableBoolEqualityComparer.


File size: 6.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Web.UI.WebControls;
26using HeuristicLab.Services.Hive;
27using System.Web.UI.DataVisualization.Charting;
28using DA = HeuristicLab.Services.Hive.DataAccess;
29using DT = HeuristicLab.Services.Hive.DataTransfer;
30
31public partial class Status : System.Web.UI.Page {
32  protected void Page_Load(object sender, EventArgs e) {
33    var dao = ServiceLocator.Instance.HiveDao;
34    var optDao = ServiceLocator.Instance.OptimizedHiveDao;
35    var transactionManager = ServiceLocator.Instance.TransactionManager;
36    var resourceName = Request.QueryString["resource"];
37    List<Guid> resourceIds = new List<Guid>();
38    List<DT.Slave> onlineSlaves = new List<DT.Slave>();
39    int currentlyJobsWaiting = 0;
40    Dictionary<Guid, int> calculatingTasksByUser = new Dictionary<Guid, int>();
41    Dictionary<Guid, int> waitingTasksByUser = new Dictionary<Guid, int>();
42    List<DT.Resource> groups = new List<DT.Resource>();
43
44    transactionManager.UseTransaction(() => {
45      groups = dao.GetResources(x => x.ResourceType == "GROUP").ToList();
46    }, false, false);
47
48    if (!string.IsNullOrEmpty(resourceName)) {
49      transactionManager.UseTransaction(() => {
50        var resId = dao.GetResources(x => x.Name == resourceName).Single().Id;
51        resourceIds = dao.GetChildResources(resId).Select(x => x.Id).Union(new List<Guid> { resId }).ToList();
52        calculatingTasksByUser = dao.GetCalculatingTasksByUserForResources(resourceIds);
53        waitingTasksByUser = dao.GetWaitingTasksByUserForResources(resourceIds);
54      }, false, false);
55    } else {
56      transactionManager.UseTransaction(() => {
57        resourceIds = optDao.GetAllResourceIds().ToList();
58        calculatingTasksByUser = optDao.GetCalculatingTasksByUser();
59        waitingTasksByUser = optDao.GetWaitingTasksByUser();
60      }, false, false);
61    }
62
63    transactionManager.UseTransaction(() => {
64      if (string.IsNullOrEmpty(resourceName)) {
65        onlineSlaves = dao.GetSlaves(x => x.SlaveState == DA.SlaveState.Calculating || x.SlaveState == DA.SlaveState.Idle).ToList();
66      } else {
67        onlineSlaves = dao.GetSlaves(x => (x.SlaveState == DA.SlaveState.Calculating || x.SlaveState == DA.SlaveState.Idle) && resourceIds.Contains(x.ResourceId)).ToList();
68      }
69      currentlyJobsWaiting = optDao.GetNumberOfWaitingTasks();
70    }, false, false);
71
72    int overallCurrentlyAvailableCores = onlineSlaves.Where(s => s.Cores.HasValue).Sum(s => s.Cores.Value);
73    int currentlyAvailableCores = onlineSlaves.Where(s => s.Cores.HasValue && s.IsAllowedToCalculate).Sum(s => s.Cores.Value);
74    int currentlyUsedCores = overallCurrentlyAvailableCores - onlineSlaves.Where(s => s.FreeCores.HasValue).Sum(s => s.FreeCores.Value);
75
76    this.overallAvailableCoresLabel.Text = overallCurrentlyAvailableCores.ToString();
77    this.availableCoresLabel.Text = currentlyAvailableCores.ToString();
78    this.usedCoresLabel.Text = currentlyUsedCores.ToString();
79    this.waitingJobsLabel.Text = currentlyJobsWaiting.ToString();
80
81    slavesLabel.Text = string.Join(", ", onlineSlaves.Select(x => string.Format("<a href=\"?resource={0}\">{0}</a> ({1} %)", x.Name, Math.Round(x.CpuUtilization, 2))));
82    groupsLabel.Text = "<a href=\"Status.aspx\">All</a>, ";
83    groupsLabel.Text += string.Join(", ", groups.Select(x => string.Format("<a href=\"?resource={0}\">{0}</a>", x.Name)));
84
85    overallCpuUtilizationLabel.Text = (onlineSlaves.Any() ? Math.Round(onlineSlaves.Average(s => s.CpuUtilization), 2).ToString() : "0.0") + " %";
86    cpuUtilizationLabel.Text = (onlineSlaves.Any(x => x.IsAllowedToCalculate) ? Math.Round(onlineSlaves.Where(x => x.IsAllowedToCalculate).Average(s => s.CpuUtilization), 2).ToString() : "0.0") + " %";
87
88    DT.Statistics[] stats = new DT.Statistics[0];
89    transactionManager.UseTransaction(() => {
90      if (daysDropDownList.SelectedValue == "All") {
91        stats = dao.GetStatistics(x => true).OrderBy(x => x.TimeStamp).ToArray();
92      } else {
93        stats = dao.GetStatistics(x => x.Timestamp >= DateTime.Now.Subtract(TimeSpan.FromDays(int.Parse(daysDropDownList.SelectedValue)))).OrderBy(x => x.TimeStamp).ToArray();
94      }
95    }, false, false);
96
97    for (int i = 0; i < stats.Length; i++) {
98      var s = stats[i];
99      var slaveStats = s.SlaveStatistics.Where(x => resourceIds.Contains(x.SlaveId)).ToArray();
100
101      var averageCpuUtilization = slaveStats.Any() ? slaveStats.Average(x => x.CpuUtilization) : 0.0;
102      cpuUtilizationChart.Series[0].Points.Add(new DataPoint(s.TimeStamp.ToOADate(), averageCpuUtilization));
103
104      var cores = slaveStats.Sum(x => x.Cores);
105
106      var usedCores = cores - slaveStats.Sum(x => x.FreeCores);
107      coresChart.Series[0].Points.AddXY(s.TimeStamp.ToOADate(), cores);
108      coresChart.Series[1].Points.AddXY(s.TimeStamp.ToOADate(), usedCores);
109
110      var memory = slaveStats.Sum(x => x.Memory);
111      var usedMemory = memory - slaveStats.Sum(x => x.FreeMemory);
112      memoryChart.Series[0].Points.AddXY(s.TimeStamp.ToOADate(), memory / 1024.0);
113      memoryChart.Series[1].Points.AddXY(s.TimeStamp.ToOADate(), usedMemory / 1024.0);
114    }
115
116    GenerateTasksByUserTable(waitingTasksByUser, waitingTasksByUserTable);
117    GenerateTasksByUserTable(calculatingTasksByUser, calculatingTasksByUserTable);
118  }
119
120  private void GenerateTasksByUserTable(Dictionary<Guid, int> tasksByUser, Table table) {
121    foreach (var kvp in tasksByUser) {
122      TableRow curRow = new TableRow();
123      TableCell cellUser = new TableCell();
124      cellUser.Text = ServiceLocator.Instance.UserManager.GetUserById(kvp.Key).UserName;
125      TableCell cellCnt = new TableCell();
126      cellCnt.Text = kvp.Value.ToString();
127
128      curRow.Cells.Add(cellUser);
129      curRow.Cells.Add(cellCnt);
130      table.Rows.Add(curRow);
131    }
132    if (tasksByUser.Any()) {
133      TableRow sumRow = new TableRow();
134      TableCell sumCell = new TableCell();
135      sumCell.BorderWidth = Unit.Pixel(3);
136      sumCell.Text = tasksByUser.Sum(x => x.Value).ToString();
137      sumRow.Cells.Add(new TableCell());
138      sumRow.Cells.Add(sumCell);
139      table.Rows.Add(sumRow);
140    }
141  }
142}
Note: See TracBrowser for help on using the repository browser.