- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx
r7047 r9363 8 8 <title>HeuristicLab Hive Status Monitor</title> 9 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> 10 18 </head> 11 19 <body> 12 20 <center> 13 <h1 >HeuristicLab Hive Status Monitor</h1>21 <h1 class="auto-style1">HeuristicLab <span class="auto-style2">Hive Status Monitor</span></h1> 14 22 </center> 15 23 <form id="form1" runat="server"> 16 24 <div> 17 Available Cores: 25 <strong>Overall Available Cores:</strong> 26 <asp:Label ID="overallAvailableCoresLabel" runat="server" /> 27 <br /> 28 <strong>Available Cores (real):</strong> 18 29 <asp:Label ID="availableCoresLabel" runat="server" /> 19 <br /> 20 Used Cores / Calculating Jobs: 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> 21 35 <asp:Label ID="usedCoresLabel" runat="server" /> 22 36 <br /> 23 Waiting Jobs: 24 <asp:Label ID="waitingJobsLabel" runat="server" /> 25 <br /> 26 Avg. CPU Utilization: 37 <strong>Overall 38 Avg. CPU Utilization:</strong> 39 <asp:Label ID="overallCpuUtilizationLabel" runat="server" /> 40 <br /> 41 <strong>Real Avg. CPU Utilization:</strong> 27 42 <asp:Label ID="cpuUtilizationLabel" runat="server" /> 28 <br />29 Slaves (CPU Utilization):43 <br /> 44 <strong>Slaves (CPU Utilization):</strong> 30 45 <asp:Label ID="slavesLabel" runat="server" /> 31 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 /> 32 65 <br /> 33 Days:66 <strong>Days:</strong> 34 67 <asp:DropDownList ID="daysDropDownList" runat="server" AutoPostBack="True"> 35 68 <asp:ListItem Value="1"></asp:ListItem> … … 51 84 <br /> 52 85 <br /> 53 Avg. CPU Utilization History of all Slaves<br />54 <asp:Chart ID="cpuUtilizationChart" runat="server" Height="270px" Width="1 900px">86 <strong>Avg. CPU Utilization History of all Slaves</strong><br /> 87 <asp:Chart ID="cpuUtilizationChart" runat="server" Height="270px" Width="1280px"> 55 88 <Series> 56 89 <asp:Series BorderWidth="2" ChartType="Line" Color="0, 176, 80" Name="Series1" XValueType="DateTime" … … 73 106 </asp:Chart> 74 107 <br /> 75 Cores/Used Cores History<br />76 <asp:Chart ID="coresChart" runat="server" Palette="None" Width="1 900px" PaletteCustomColors="137, 165, 78; 185, 205, 150">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"> 77 110 <Series> 78 111 <asp:Series ChartType="Area" Name="Cores" XValueType="DateTime" YValueType="Double"> … … 97 130 </asp:Chart> 98 131 <br /> 99 Memory/Used Memory History (GB)<br />132 <strong>Memory/Used Memory History (GB)</strong><br /> 100 133 <asp:Chart ID="memoryChart" runat="server" Palette="None" PaletteCustomColors="170, 70, 67; 209, 147, 146" 101 Width="1 900px">134 Width="1280px"> 102 135 <Series> 103 136 <asp:Series ChartType="Area" Name="Cores" XValueType="DateTime" YValueType="Double"> … … 121 154 </ChartAreas> 122 155 </asp:Chart> 123 <br />124 156 <br /> 125 157 </div>
Note: See TracChangeset
for help on using the changeset viewer.