Changeset 7215 for branches/HeuristicLab.Hive.Azure/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx
- Timestamp:
- 12/20/11 13:54:57 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure
- Property svn:ignore
-
old new 4 4 *.suo 5 5 *.vsp 6 Doxygen 6 7 Google.ProtocolBuffers-0.9.1.dll 7 8 HeuristicLab 3.3.5.1.ReSharper.user 8 9 HeuristicLab 3.3.6.0.ReSharper.user 9 10 HeuristicLab.4.5.resharper.user 11 HeuristicLab.ExtLibs.6.0.ReSharper.user 10 12 HeuristicLab.resharper.user 11 13 ProtoGen.exe … … 16 18 bin 17 19 protoc.exe 18 HeuristicLab.ExtLibs.6.0.ReSharper.user19 Doxygen
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx
r6983 r7215 6 6 <html xmlns="http://www.w3.org/1999/xhtml"> 7 7 <head runat="server"> 8 <title></title> 8 <title>HeuristicLab Hive Status Monitor</title> 9 <link rel="icon" type="image/ico" href="HeuristicLab.ico" /> 9 10 </head> 10 11 <body> 12 <center> 13 <h1>HeuristicLab Hive Status Monitor</h1> 14 </center> 11 15 <form id="form1" runat="server"> 12 16 <div> … … 20 24 <asp:Label ID="waitingJobsLabel" runat="server" /> 21 25 <br /> 26 Avg. CPU Utilization: 27 <asp:Label ID="cpuUtilizationLabel" runat="server" /> 28 <br /> 22 29 Slaves (CPU Utilization): 23 30 <asp:Label ID="slavesLabel" runat="server" /> 24 <br /> 25 Avg. CPU Utilization: 26 <asp:Label ID="cpuUtilizationLabel" runat="server" /> 27 <br /> 28 ExecutionTime on Hive: 29 <asp:Label ID="totalExecutionTimeLabel" runat="server" /> 30 <br /> 31 <br /> 31 32 <br /> 32 33 Days: 33 <asp:DropDownList ID="daysDropDownList" runat="server" AutoPostBack="True" OnSelectedIndexChanged="daysDropDownList_SelectedIndexChanged">34 <asp:DropDownList ID="daysDropDownList" runat="server" AutoPostBack="True"> 34 35 <asp:ListItem Value="1"></asp:ListItem> 35 36 <asp:ListItem Value="2"></asp:ListItem> … … 121 122 </asp:Chart> 122 123 <br /> 123 Speedup (ComputedMinutes/Minute)<br /> 124 <asp:Chart ID="speedupChartMinutes" runat="server" Palette="None" Width="1900px" 125 PaletteCustomColors="79, 129, 189"> 126 <Series> 127 <asp:Series ChartType="Area" Name="Speedup" XValueType="DateTime" YValueType="Double"> 128 </asp:Series> 129 <asp:Series BorderWidth="2" ChartArea="ChartArea1" 130 ChartType="Line" Color="185, 205, 150" Name="Cores"> 131 </asp:Series> 132 </Series> 133 <ChartAreas> 134 <asp:ChartArea BackColor="Black" BackHatchStyle="DottedGrid" BackSecondaryColor="0, 96, 43" 135 BorderColor="DarkGreen" BorderDashStyle="Dot" Name="ChartArea1"> 136 <AxisY Minimum="-5"> 137 <MajorGrid Enabled="False" /> 138 </AxisY> 139 <AxisX IntervalAutoMode="VariableCount" IntervalOffset="1" IntervalOffsetType="Hours" 140 IntervalType="Hours" IsLabelAutoFit="False" > 141 <MajorGrid Enabled="False" /> 142 <LabelStyle Format="d/M/yyyy HH:mm" IsStaggered="True" /> 143 </AxisX> 144 </asp:ChartArea> 145 </ChartAreas> 146 </asp:Chart> 147 <br /> 148 Speedup (ComputedHours/Hour)<br /> 149 <br /> 150 <asp:Chart ID="speedupChartHours" runat="server" Palette="None" Width="1900px" PaletteCustomColors="79, 129, 189"> 151 <Series> 152 <asp:Series ChartType="Area" Name="Speedup" XValueType="DateTime" 153 YValueType="Double"> 154 </asp:Series> 155 <asp:Series BorderWidth="2" ChartArea="ChartArea1" 156 ChartType="Line" Color="185, 205, 150" Name="Cores"> 157 </asp:Series> 158 </Series> 159 <ChartAreas> 160 <asp:ChartArea BackColor="Black" BackHatchStyle="DottedGrid" BackSecondaryColor="0, 96, 43" 161 BorderColor="DarkGreen" BorderDashStyle="Dot" Name="ChartArea1"> 162 <AxisY> 163 <MajorGrid Enabled="False" /> 164 </AxisY> 165 <AxisX IntervalAutoMode="VariableCount" IntervalOffset="1" IntervalOffsetType="Hours" 166 IntervalType="Hours" IsLabelAutoFit="False"> 167 <MajorGrid Enabled="False" /> 168 <LabelStyle Format="d/M/yyyy HH:mm" IsStaggered="True" /> 169 </AxisX> 170 </asp:ChartArea> 171 </ChartAreas> 172 </asp:Chart> 173 <br /> 124 <br /> 174 125 </div> 175 126 </form>
Note: See TracChangeset
for help on using the changeset viewer.