Ignore:
Timestamp:
06/26/13 15:30:58 (11 years ago)
Author:
pharms
Message:
  • changed log file directory structure for better distinguishing the monitored applications
  • extended session timeout to potentially reduce log file sizes
  • increased log file maximum sizes to reduce storage consumption due do GUI model duplication
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorLogManager.java

    r1069 r1227  
    4141     * the timeout after which a writer of an inactive client is closed 
    4242     */ 
    43     private static final int SESSION_TIMEOUT = 100000; 
     43    private static final int SESSION_TIMEOUT = 10 * 60 * 1000; 
    4444     
    4545    /** 
     
    126126                    writer = writers.get(clientInfos.getClientId()); 
    127127                    if (writer == null) { 
    128                         writer = 
    129                             new HtmlMonitorOutputWriter(logFileBaseDir, clientInfos.getClientId()); 
     128                        writer = new HtmlMonitorOutputWriter 
     129                            (logFileBaseDir, clientInfos.getWebAppId(), clientInfos.getClientId()); 
     130 
    130131                        writer.init(); 
    131132                        writer.start(); 
Note: See TracChangeset for help on using the changeset viewer.