[6983] | 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">
|
---|
[6993] | 8 | <title>HeuristicLab Hive Status Monitor</title>
|
---|
[7047] | 9 | <link rel="icon" type="image/ico" href="HeuristicLab.ico" />
|
---|
[9027] | 10 | <style type="text/css">
|
---|
| 11 | .auto-style1 {
|
---|
| 12 | color: #F6921B;
|
---|
| 13 | }
|
---|
| 14 | .auto-style2 {
|
---|
| 15 | color: #000000;
|
---|
| 16 | }
|
---|
| 17 | </style>
|
---|
[6983] | 18 | </head>
|
---|
| 19 | <body>
|
---|
[6993] | 20 | <center>
|
---|
[9027] | 21 | <h1 class="auto-style1">HeuristicLab <span class="auto-style2">Hive Status Monitor</span></h1>
|
---|
[6993] | 22 | </center>
|
---|
[6983] | 23 | <form id="form1" runat="server">
|
---|
| 24 | <div>
|
---|
[9027] | 25 | <strong>Overall Available Cores:</strong>
|
---|
[9023] | 26 | <asp:Label ID="overallAvailableCoresLabel" runat="server" />
|
---|
| 27 | <br />
|
---|
[9027] | 28 | <strong>Available Cores (real):</strong>
|
---|
[6983] | 29 | <asp:Label ID="availableCoresLabel" runat="server" />
|
---|
[9023] | 30 | <br />
|
---|
[9034] | 31 | <strong>System-Wide Waiting Tasks:</strong>
|
---|
[9033] | 32 | <asp:Label ID="waitingJobsLabel" runat="server" />
|
---|
| 33 | <br />
|
---|
[9034] | 34 | <strong>Used Cores / Calculating Tasks:</strong>
|
---|
[6983] | 35 | <asp:Label ID="usedCoresLabel" runat="server" />
|
---|
| 36 | <br />
|
---|
[9027] | 37 | <strong>Overall
|
---|
| 38 | Avg. CPU Utilization:</strong>
|
---|
[9023] | 39 | <asp:Label ID="overallCpuUtilizationLabel" runat="server" />
|
---|
| 40 | <br />
|
---|
[9027] | 41 | <strong>Real Avg. CPU Utilization:</strong>
|
---|
[7047] | 42 | <asp:Label ID="cpuUtilizationLabel" runat="server" />
|
---|
[9023] | 43 | <br />
|
---|
[9027] | 44 | <strong>Slaves (CPU Utilization):</strong>
|
---|
[6983] | 45 | <asp:Label ID="slavesLabel" runat="server" />
|
---|
[7047] | 46 | <br />
|
---|
[9027] | 47 | <strong>Groups:</strong>
|
---|
[9025] | 48 | <asp:Label ID="groupsLabel" runat="server" />
|
---|
[9022] | 49 | <br />
|
---|
[9025] | 50 | <br />
|
---|
[9027] | 51 | <strong>Number of Calculating Tasks by User:</strong><asp:Table ID="calculatingTasksByUserTable" runat="server" GridLines="Both">
|
---|
[9023] | 52 | <asp:TableRow runat="server" BackColor="#CCCCCC">
|
---|
[9022] | 53 | <asp:TableCell runat="server" Font-Bold="False">User</asp:TableCell>
|
---|
[9023] | 54 | <asp:TableCell runat="server" Font-Bold="False">Nr. of Tasks</asp:TableCell>
|
---|
[9022] | 55 | </asp:TableRow>
|
---|
| 56 | </asp:Table>
|
---|
| 57 | <br />
|
---|
[9027] | 58 | <strong>Number of Waiting Tasks by User:</strong><asp:Table ID="waitingTasksByUserTable" runat="server" GridLines="Both">
|
---|
[9023] | 59 | <asp:TableRow runat="server" BackColor="#CCCCCC">
|
---|
[9022] | 60 | <asp:TableCell runat="server" Font-Bold="False">User</asp:TableCell>
|
---|
[9023] | 61 | <asp:TableCell runat="server" Font-Bold="False">Nr. of Tasks</asp:TableCell>
|
---|
[9022] | 62 | </asp:TableRow>
|
---|
| 63 | </asp:Table>
|
---|
| 64 | <br />
|
---|
[6983] | 65 | <br />
|
---|
[9027] | 66 | <strong>Days:</strong>
|
---|
[7047] | 67 | <asp:DropDownList ID="daysDropDownList" runat="server" AutoPostBack="True">
|
---|
[6983] | 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 />
|
---|
[9027] | 86 | <strong>Avg. CPU Utilization History of all Slaves</strong><br />
|
---|
[9025] | 87 | <asp:Chart ID="cpuUtilizationChart" runat="server" Height="270px" Width="1280px">
|
---|
[6983] | 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 />
|
---|
[9027] | 108 | <strong>Cores/Used Cores History</strong><br />
|
---|
[9025] | 109 | <asp:Chart ID="coresChart" runat="server" Palette="None" Width="1280px" PaletteCustomColors="137, 165, 78; 185, 205, 150">
|
---|
[6983] | 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 />
|
---|
[9027] | 132 | <strong>Memory/Used Memory History (GB)</strong><br />
|
---|
[6983] | 133 | <asp:Chart ID="memoryChart" runat="server" Palette="None" PaletteCustomColors="170, 70, 67; 209, 147, 146"
|
---|
[9025] | 134 | Width="1280px">
|
---|
[6983] | 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>
|
---|
[7047] | 156 | <br />
|
---|
[6983] | 157 | </div>
|
---|
| 158 | </form>
|
---|
| 159 | </body>
|
---|
| 160 | </html>
|
---|