Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx @ 9034

Last change on this file since 9034 was 9034, checked in by ascheibe, 11 years ago

#1994 fixed naming

File size: 6.9 KB
Line 
1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Status.aspx.cs" Inherits="Status" %>
2
3<%@ Register Assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
4  Namespace="System.Web.UI.DataVisualization.Charting" TagPrefix="asp" %>
5<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6<html xmlns="http://www.w3.org/1999/xhtml">
7<head runat="server">
8  <title>HeuristicLab Hive Status Monitor</title>
9  <link rel="icon" type="image/ico" href="HeuristicLab.ico" />
10    <style type="text/css">
11        .auto-style1 {
12            color: #F6921B;
13        }
14        .auto-style2 {
15            color: #000000;
16        }
17    </style>
18</head>
19<body>
20  <center>
21    <h1 class="auto-style1">HeuristicLab <span class="auto-style2">Hive Status Monitor</span></h1>
22  </center>
23  <form id="form1" runat="server">
24  <div>
25      <strong>Overall Available Cores:</strong>
26    <asp:Label ID="overallAvailableCoresLabel" runat="server" />
27      <br />
28      <strong>Available Cores (real):</strong>
29    <asp:Label ID="availableCoresLabel" runat="server" />
30      <br />
31      <strong>System-Wide Waiting Tasks:</strong>
32    <asp:Label ID="waitingJobsLabel" runat="server" />
33      <br />
34      <strong>Used Cores / Calculating Tasks:</strong>
35    <asp:Label ID="usedCoresLabel" runat="server" />
36    <br />
37      <strong>Overall
38    Avg. CPU Utilization:</strong>
39    <asp:Label ID="overallCpuUtilizationLabel" runat="server" />
40      <br />
41      <strong>Real Avg. CPU Utilization:</strong>
42    <asp:Label ID="cpuUtilizationLabel" runat="server" />
43      &nbsp;<br />
44      <strong>Slaves (CPU Utilization):</strong>
45    <asp:Label ID="slavesLabel" runat="server" />
46      <br />
47      <strong>Groups:</strong>
48    <asp:Label ID="groupsLabel" runat="server" />
49      <br />
50      <br />
51      <strong>Number of Calculating Tasks by User:</strong><asp:Table ID="calculatingTasksByUserTable" runat="server" GridLines="Both">
52          <asp:TableRow runat="server" BackColor="#CCCCCC">
53              <asp:TableCell runat="server" Font-Bold="False">User</asp:TableCell>
54              <asp:TableCell runat="server" Font-Bold="False">Nr. of Tasks</asp:TableCell>
55          </asp:TableRow>
56      </asp:Table>
57      <br />
58      <strong>Number of Waiting Tasks by User:</strong><asp:Table ID="waitingTasksByUserTable" runat="server" GridLines="Both">
59          <asp:TableRow runat="server" BackColor="#CCCCCC">
60              <asp:TableCell runat="server" Font-Bold="False">User</asp:TableCell>
61              <asp:TableCell runat="server" Font-Bold="False">Nr. of Tasks</asp:TableCell>
62          </asp:TableRow>
63      </asp:Table>
64      <br />
65    <br />
66      <strong>Days:</strong>
67    <asp:DropDownList ID="daysDropDownList" runat="server" AutoPostBack="True">
68      <asp:ListItem Value="1"></asp:ListItem>
69      <asp:ListItem Value="2"></asp:ListItem>
70      <asp:ListItem Value="3"></asp:ListItem>
71      <asp:ListItem Value="4"></asp:ListItem>
72      <asp:ListItem Value="5"></asp:ListItem>
73      <asp:ListItem Value="6"></asp:ListItem>
74      <asp:ListItem Value="7"></asp:ListItem>
75      <asp:ListItem Value="8"></asp:ListItem>
76      <asp:ListItem Value="9"></asp:ListItem>
77      <asp:ListItem Value="10"></asp:ListItem>
78      <asp:ListItem Value="11"></asp:ListItem>
79      <asp:ListItem Value="12"></asp:ListItem>
80      <asp:ListItem Value="13"></asp:ListItem>
81      <asp:ListItem Value="14"></asp:ListItem>
82      <asp:ListItem Value="All"></asp:ListItem>
83    </asp:DropDownList>
84    <br />
85    <br />
86      <strong>Avg. CPU Utilization History of all Slaves</strong><br />
87    <asp:Chart ID="cpuUtilizationChart" runat="server" Height="270px" Width="1280px">
88      <Series>
89        <asp:Series BorderWidth="2" ChartType="Line" Color="0, 176, 80" Name="Series1" XValueType="DateTime"
90          YValueType="Double">
91        </asp:Series>
92      </Series>
93      <ChartAreas>
94        <asp:ChartArea BackColor="Black" BackHatchStyle="DottedGrid" BackSecondaryColor="0, 96, 43"
95          BorderColor="DarkGreen" BorderDashStyle="Dot" Name="ChartArea1">
96          <AxisY>
97            <MajorGrid Enabled="False" />
98          </AxisY>
99          <AxisX IntervalAutoMode="VariableCount" IntervalOffset="1" IntervalOffsetType="Hours"
100            IntervalType="Hours" IsLabelAutoFit="False" >
101            <MajorGrid Enabled="False" />
102            <LabelStyle Format="d/M/yyyy HH:mm" IsStaggered="True" />
103          </AxisX>
104        </asp:ChartArea>
105      </ChartAreas>
106    </asp:Chart>
107    <br />
108      <strong>Cores/Used Cores History</strong><br />
109    <asp:Chart ID="coresChart" runat="server" Palette="None" Width="1280px" PaletteCustomColors="137, 165, 78; 185, 205, 150">
110      <Series>
111        <asp:Series ChartType="Area" Name="Cores" XValueType="DateTime" YValueType="Double">
112        </asp:Series>
113        <asp:Series ChartArea="ChartArea1" ChartType="Area" Name="FreeCores" XValueType="DateTime"
114          YValueType="Double">
115        </asp:Series>
116      </Series>
117      <ChartAreas>
118        <asp:ChartArea BackColor="Black" BackHatchStyle="DottedGrid" BackSecondaryColor="0, 96, 43"
119          BorderColor="DarkGreen" BorderDashStyle="Dot" Name="ChartArea1">
120          <AxisY>
121            <MajorGrid Enabled="False" />
122          </AxisY>
123          <AxisX IntervalAutoMode="VariableCount" IntervalOffset="1" IntervalOffsetType="Hours"
124            IntervalType="Hours" IsLabelAutoFit="False" >
125            <MajorGrid Enabled="False" />
126            <LabelStyle Format="d/M/yyyy HH:mm" IsStaggered="True" />
127          </AxisX>
128        </asp:ChartArea>
129      </ChartAreas>
130    </asp:Chart>
131    <br />
132      <strong>Memory/Used Memory History (GB)</strong><br />
133    <asp:Chart ID="memoryChart" runat="server" Palette="None" PaletteCustomColors="170, 70, 67; 209, 147, 146"
134      Width="1280px">
135      <Series>
136        <asp:Series ChartType="Area" Name="Cores" XValueType="DateTime" YValueType="Double">
137        </asp:Series>
138        <asp:Series ChartArea="ChartArea1" ChartType="Area" Name="FreeCores" XValueType="DateTime"
139          YValueType="Double">
140        </asp:Series>
141      </Series>
142      <ChartAreas>
143        <asp:ChartArea BackColor="Black" BackHatchStyle="DottedGrid" BackSecondaryColor="0, 96, 43"
144          BorderColor="DarkGreen" BorderDashStyle="Dot" Name="ChartArea1">
145          <AxisY>
146            <MajorGrid Enabled="False" />
147          </AxisY>
148          <AxisX IntervalAutoMode="VariableCount" IntervalOffset="1" IntervalOffsetType="Hours"
149            IntervalType="Hours" IsLabelAutoFit="False" >
150            <MajorGrid Enabled="False" />
151            <LabelStyle Format="d/M/yyyy HH:mm" IsStaggered="True" />
152          </AxisX>
153        </asp:ChartArea>
154      </ChartAreas>
155    </asp:Chart>
156      <br />
157  </div>
158  </form>
159</body>
160</html>
Note: See TracBrowser for help on using the repository browser.