1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Web;
|
---|
26 | using System.Web.UI;
|
---|
27 | using System.Web.UI.WebControls;
|
---|
28 | using HeuristicLab.Services.Hive.DataAccess;
|
---|
29 | using HeuristicLab.Services.Hive;
|
---|
30 | using HeuristicLab.Services.Hive.DataTransfer;
|
---|
31 | using System.Text;
|
---|
32 | using System.Web.UI.DataVisualization.Charting;
|
---|
33 | using DA = HeuristicLab.Services.Hive.DataAccess;
|
---|
34 |
|
---|
35 | public partial class Status : System.Web.UI.Page {
|
---|
36 | protected void Page_Load(object sender, EventArgs e) {
|
---|
37 | var dao = ServiceLocator.Instance.HiveDao;
|
---|
38 | var resourceName = Request.QueryString["resource"];
|
---|
39 | IEnumerable<Guid> resourceIds;
|
---|
40 | if (!string.IsNullOrEmpty(resourceName)) {
|
---|
41 | var resId = dao.GetResources(x => x.Name == resourceName).Single().Id;
|
---|
42 | resourceIds = dao.GetChildResources(resId).Select(x => x.Id).Union(new List<Guid> { resId });
|
---|
43 | speedupChartHours.Visible = false;
|
---|
44 | speedupChartMinutes.Visible = false;
|
---|
45 | } else {
|
---|
46 | resourceIds = dao.GetResources(x => true).Select(y => y.Id);
|
---|
47 | speedupChartHours.Visible = true;
|
---|
48 | speedupChartMinutes.Visible = true;
|
---|
49 | }
|
---|
50 |
|
---|
51 | var onlineSlaves = dao.GetSlaves(x => (x.SlaveState == DA.SlaveState.Calculating || x.SlaveState == DA.SlaveState.Idle) && resourceIds.Contains(x.ResourceId));
|
---|
52 |
|
---|
53 | int currentlyAvailableCores = onlineSlaves.Sum(s => s.Cores.Value);
|
---|
54 | int currentlyUsedCores = currentlyAvailableCores - onlineSlaves.Sum(s => s.FreeCores.Value);
|
---|
55 | int currentlyJobsWaiting = ServiceLocator.Instance.HiveDao.GetTasks(x => x.State == DA.TaskState.Waiting).Count();
|
---|
56 |
|
---|
57 | this.availableCoresLabel.Text = currentlyAvailableCores.ToString();
|
---|
58 | this.usedCoresLabel.Text = currentlyUsedCores.ToString();
|
---|
59 | this.waitingJobsLabel.Text = currentlyJobsWaiting.ToString();
|
---|
60 |
|
---|
61 | slavesLabel.Text = string.Join(", ", onlineSlaves.Select(x => string.Format("<a href=\"?resource={0}\">{0}</a> ({1} %)", x.Name, Math.Round(x.CpuUtilization, 2))));
|
---|
62 |
|
---|
63 | cpuUtilizationLabel.Text = (onlineSlaves.Count() > 0 ? Math.Round(onlineSlaves.Average(s => s.CpuUtilization), 2).ToString() : "0.0") + " %";
|
---|
64 |
|
---|
65 | HeuristicLab.Services.Hive.DataTransfer.Statistics[] stats;
|
---|
66 | if (daysDropDownList.SelectedValue == "All")
|
---|
67 | stats = dao.GetStatistics(x => true).OrderBy(x => x.TimeStamp).ToArray();
|
---|
68 | else
|
---|
69 | stats = dao.GetStatistics(x => x.Timestamp >= DateTime.Now.Subtract(TimeSpan.FromDays(int.Parse(daysDropDownList.SelectedValue)))).OrderBy(x => x.TimeStamp).ToArray();
|
---|
70 |
|
---|
71 | var firstStatisticsDate = DateTime.Parse("2011-05-24 17:16:40");
|
---|
72 | var statisticsSince = DateTime.Now - firstStatisticsDate;
|
---|
73 | if (stats.Length != 0) {
|
---|
74 | totalExecutionTimeLabel.Text = new TimeSpan(stats.Last().UserStatistics.Sum(x => x.ExecutionTime.Ticks)).ToString() + " (since " + Math.Round(statisticsSince.TotalDays, 2) + " days)";
|
---|
75 | } else {
|
---|
76 | totalExecutionTimeLabel.Text = "00:00:00.00";
|
---|
77 | }
|
---|
78 |
|
---|
79 | for (int i = 0; i < stats.Length; i++) {
|
---|
80 | var s = stats[i];
|
---|
81 | var slaveStats = s.SlaveStatistics.Where(x => resourceIds.Contains(x.SlaveId));
|
---|
82 |
|
---|
83 | var averageCpuUtilization = slaveStats.Count() > 0 ? slaveStats.Average(x => x.CpuUtilization) : 0.0;
|
---|
84 | cpuUtilizationChart.Series[0].Points.Add(new DataPoint(s.TimeStamp.ToOADate(), averageCpuUtilization));
|
---|
85 |
|
---|
86 | var cores = slaveStats.Sum(x => x.Cores);
|
---|
87 |
|
---|
88 | var usedCores = cores - slaveStats.Sum(x => x.FreeCores);
|
---|
89 | coresChart.Series[0].Points.AddXY(s.TimeStamp.ToOADate(), cores);
|
---|
90 | coresChart.Series[1].Points.AddXY(s.TimeStamp.ToOADate(), usedCores);
|
---|
91 |
|
---|
92 | var memory = slaveStats.Sum(x => x.Memory);
|
---|
93 | var usedMemory = memory - slaveStats.Sum(x => x.FreeMemory);
|
---|
94 | memoryChart.Series[0].Points.AddXY(s.TimeStamp.ToOADate(), memory / 1024.0);
|
---|
95 | memoryChart.Series[1].Points.AddXY(s.TimeStamp.ToOADate(), usedMemory / 1024.0);
|
---|
96 |
|
---|
97 | if (i > 0) {
|
---|
98 | var execTime = new TimeSpan(s.UserStatistics.Sum(x => x.ExecutionTime.Ticks));
|
---|
99 | var execTimePrev = new TimeSpan(stats[i - 1].UserStatistics.Sum(x => x.ExecutionTime.Ticks));
|
---|
100 | var execTimeDifference = execTimePrev - execTime;
|
---|
101 |
|
---|
102 | var timeDifference = stats[i - 1].TimeStamp - s.TimeStamp; // the difference between statistic entries is not alway exactly 1 minute
|
---|
103 | var speedup = execTimeDifference.TotalMinutes / timeDifference.TotalMinutes;
|
---|
104 | speedupChartMinutes.Series[0].Points.AddXY(s.TimeStamp.ToOADate(), speedup);
|
---|
105 | speedupChartMinutes.Series[1].Points.AddXY(s.TimeStamp.ToOADate(), cores);
|
---|
106 | }
|
---|
107 | if (i - 60 >= 0) {
|
---|
108 | var execTime = new TimeSpan(s.UserStatistics.Sum(x => x.ExecutionTime.Ticks));
|
---|
109 | var execTimePrev = new TimeSpan(stats[i - 60].UserStatistics.Sum(x => x.ExecutionTime.Ticks));
|
---|
110 | var execTimeDifference = execTimePrev - execTime;
|
---|
111 |
|
---|
112 | var timeDifference = stats[i - 60].TimeStamp - s.TimeStamp; // the difference between statistic entries is not alway exactly 1 minute
|
---|
113 | var speedup = execTimeDifference.TotalMinutes / timeDifference.TotalMinutes;
|
---|
114 | speedupChartHours.Series[0].Points.AddXY(s.TimeStamp.ToOADate(), speedup);
|
---|
115 | speedupChartHours.Series[1].Points.AddXY(s.TimeStamp.ToOADate(), cores);
|
---|
116 | }
|
---|
117 | }
|
---|
118 | }
|
---|
119 |
|
---|
120 | protected void daysDropDownList_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
121 |
|
---|
122 | }
|
---|
123 | } |
---|