[6983] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6983] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Web.UI.WebControls;
|
---|
| 26 | using HeuristicLab.Services.Hive;
|
---|
| 27 | using System.Web.UI.DataVisualization.Charting;
|
---|
| 28 | using DA = HeuristicLab.Services.Hive.DataAccess;
|
---|
[7047] | 29 | using DT = HeuristicLab.Services.Hive.DataTransfer;
|
---|
[6983] | 30 |
|
---|
| 31 | public partial class Status : System.Web.UI.Page {
|
---|
| 32 | protected void Page_Load(object sender, EventArgs e) {
|
---|
| 33 | var dao = ServiceLocator.Instance.HiveDao;
|
---|
[12146] | 34 | var optDao = ServiceLocator.Instance.OptimizedHiveDao;
|
---|
[7047] | 35 | var transactionManager = ServiceLocator.Instance.TransactionManager;
|
---|
[6983] | 36 | var resourceName = Request.QueryString["resource"];
|
---|
[12146] | 37 | List<Guid> resourceIds = new List<Guid>();
|
---|
| 38 | List<DT.Slave> onlineSlaves = new List<DT.Slave>();
|
---|
[7047] | 39 | int currentlyJobsWaiting = 0;
|
---|
[12146] | 40 | Dictionary<Guid, int> calculatingTasksByUser = new Dictionary<Guid, int>();
|
---|
[9022] | 41 | Dictionary<Guid, int> waitingTasksByUser = new Dictionary<Guid, int>();
|
---|
[9025] | 42 | List<DT.Resource> groups = new List<DT.Resource>();
|
---|
[7047] | 43 |
|
---|
[9025] | 44 | transactionManager.UseTransaction(() => {
|
---|
[12146] | 45 | groups = dao.GetResources(x => x.ResourceType == "GROUP").ToList();
|
---|
| 46 | }, false, false);
|
---|
[9025] | 47 |
|
---|
[6983] | 48 | if (!string.IsNullOrEmpty(resourceName)) {
|
---|
[12146] | 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);
|
---|
[6983] | 55 | } else {
|
---|
[12146] | 56 | transactionManager.UseTransaction(() => {
|
---|
| 57 | resourceIds = optDao.GetAllResourceIds().ToList();
|
---|
| 58 | calculatingTasksByUser = optDao.GetCalculatingTasksByUser();
|
---|
| 59 | waitingTasksByUser = optDao.GetWaitingTasksByUser();
|
---|
| 60 | }, false, false);
|
---|
| 61 | }
|
---|
[6983] | 62 |
|
---|
[12146] | 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();
|
---|
[7047] | 70 | }, false, false);
|
---|
| 71 |
|
---|
[9023] | 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);
|
---|
[12146] | 75 |
|
---|
[9023] | 76 | this.overallAvailableCoresLabel.Text = overallCurrentlyAvailableCores.ToString();
|
---|
[6983] | 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))));
|
---|
[9028] | 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)));
|
---|
[6983] | 84 |
|
---|
[12146] | 85 | overallCpuUtilizationLabel.Text = (onlineSlaves.Any() ? Math.Round(onlineSlaves.Average(s => s.CpuUtilization), 2).ToString() : "0.0") + " %";
|
---|
[12457] | 86 | cpuUtilizationLabel.Text = (onlineSlaves.Any(x => x.IsAllowedToCalculate) ? Math.Round(onlineSlaves.Where(x => x.IsAllowedToCalculate).Average(s => s.CpuUtilization), 2).ToString() : "0.0") + " %";
|
---|
[6983] | 87 |
|
---|
[12146] | 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 | }
|
---|
[7047] | 95 | }, false, false);
|
---|
[12146] | 96 |
|
---|
[6983] | 97 | for (int i = 0; i < stats.Length; i++) {
|
---|
| 98 | var s = stats[i];
|
---|
[12146] | 99 | var slaveStats = s.SlaveStatistics.Where(x => resourceIds.Contains(x.SlaveId)).ToArray();
|
---|
[6983] | 100 |
|
---|
[12146] | 101 | var averageCpuUtilization = slaveStats.Any() ? slaveStats.Average(x => x.CpuUtilization) : 0.0;
|
---|
[6983] | 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 | }
|
---|
[9022] | 115 |
|
---|
[12146] | 116 | GenerateTasksByUserTable(waitingTasksByUser, waitingTasksByUserTable);
|
---|
| 117 | GenerateTasksByUserTable(calculatingTasksByUser, calculatingTasksByUserTable);
|
---|
[9033] | 118 | }
|
---|
[9022] | 119 |
|
---|
[9033] | 120 | private void GenerateTasksByUserTable(Dictionary<Guid, int> tasksByUser, Table table) {
|
---|
| 121 | foreach (var kvp in tasksByUser) {
|
---|
[9022] | 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);
|
---|
[9033] | 130 | table.Rows.Add(curRow);
|
---|
[9022] | 131 | }
|
---|
[12146] | 132 | if (tasksByUser.Any()) {
|
---|
| 133 | TableRow sumRow = new TableRow();
|
---|
[9033] | 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 | }
|
---|
[12146] | 141 | }
|
---|
[6983] | 142 | } |
---|