Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/14/11 17:17:46 (12 years ago)
Author:
ascheibe
Message:

#1672

  • removed unused files
  • changed the plugin cache path of the Slave HL App so that HL doesn't discover Hive assemblies
  • cleaned up config files
  • incremented version number of installers to 3.3.6
  • removed Execution time on Hive from Status page because it can't be calculated without the user statistics
Location:
trunk/sources/HeuristicLab.Services.Hive.Web/Hive-3.3
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx

    r6983 r6993  
    66<html xmlns="http://www.w3.org/1999/xhtml">
    77<head runat="server">
    8   <title></title>
     8  <title>HeuristicLab Hive Status Monitor</title>
     9  <link rel="icon" type="image/ico" href="HeuristicLab.ico">
    910</head>
    1011<body>
     12  <center>
     13    <h1>HeuristicLab Hive Status Monitor</h1>
     14  </center>
    1115  <form id="form1" runat="server">
    1216  <div>
     
    2529    Avg. CPU Utilization:
    2630    <asp:Label ID="cpuUtilizationLabel" runat="server" />
    27     <br />
    28     ExecutionTime on Hive:
    29     <asp:Label ID="totalExecutionTimeLabel" runat="server" />
    30     <br />
     31    <br /> 
    3132    <br />
    3233    Days:
  • trunk/sources/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx.cs

    r6983 r6993  
    6969      stats = dao.GetStatistics(x => x.Timestamp >= DateTime.Now.Subtract(TimeSpan.FromDays(int.Parse(daysDropDownList.SelectedValue)))).OrderBy(x => x.TimeStamp).ToArray();
    7070    }
    71                                                      
    72     if (stats.Length != 0) {
    73       var firstStatisticsDate = stats.OrderBy(x => x.TimeStamp).First().TimeStamp;
    74       var statisticsSince = DateTime.Now - firstStatisticsDate;
    75       totalExecutionTimeLabel.Text = new TimeSpan(stats.Last().UserStatistics.Sum(x => x.ExecutionTime.Ticks)).ToString() + " (since " + Math.Round(statisticsSince.TotalDays, 2) + " days)";
    76     } else {
    77       totalExecutionTimeLabel.Text = "00:00:00.00";
    78     }
    7971   
    8072    for (int i = 0; i < stats.Length; i++) {
Note: See TracChangeset for help on using the changeset viewer.