Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/15 17:28:03 (9 years ago)
Author:
dglaser
Message:

#2388: Created WebApp.Statistics plugin

Location:
branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3/HiveJanitor.cs

    r12468 r12477  
    6262      while (!stop) {
    6363        try {
    64           LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: starting cleanup");
     64          LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: starting cleanup.");
    6565          bool cleanup = false;
    6666          trans.UseTransaction(() => {
     
    7575            eventManager.Cleanup();
    7676          }
    77           LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: cleanup finished");
     77          LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: cleanup finished.");
    7878        }
    7979        catch (Exception e) {
     
    8888      while (!stop) {
    8989        try {
    90           LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: starting generate statistics");
     90          LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: starting generate statistics.");
    9191          statisticsGenerator.GenerateStatistics();
    92           LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: generate statistics finished");
     92          LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: generate statistics finished.");
    9393        }
    9494        catch (Exception e) {
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3/HiveStatisticsGenerator.cs

    r12468 r12477  
    106106          UserId = x.OwnerUserId,
    107107          JobName = x.Name ?? string.Empty,
     108          DateCreated = x.DateCreated
    108109        })
    109110        .ToList();
     
    112113        JobName = x.JobName,
    113114        UserId = x.UserId,
    114         UserName = GetUserName(x.UserId)
     115        UserName = GetUserName(x.UserId),
     116        DateCreated = x.DateCreated
    115117      }));
    116118    }
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3/Properties/Settings.Designer.cs

    r12441 r12477  
    8989    [global::System.Configuration.ApplicationScopedSettingAttribute()]
    9090    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    91     [global::System.Configuration.DefaultSettingValueAttribute("00:05:00")]
     91    [global::System.Configuration.DefaultSettingValueAttribute("00:01:00")]
    9292    public global::System.TimeSpan GenerateStatisticsInterval {
    9393      get {
Note: See TracChangeset for help on using the changeset viewer.