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/HtmlClientInfos.java

    r1019 r1227  
    9292    } 
    9393 
     94    /** 
     95     * @return the id of the monitored web application which is the host and port 
     96     */ 
     97    String getWebAppId() { 
     98        String id = url.getHost(); 
     99        if ("".equals(id)) { 
     100            id = "unknown"; 
     101        } 
     102         
     103        if (url.getPort() > 0) { 
     104            id += "_" + url.getPort(); 
     105        } 
     106         
     107        return id; 
     108    } 
     109 
    94110} 
Note: See TracChangeset for help on using the changeset viewer.