- Timestamp:
- 09/30/11 17:36:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/WeblogParser.java
r224 r225 37 37 /** 38 38 * <p> 39 * Minimal length of a session. All shorter sessions will be pruned. 39 * Minimal length of a session. All shorter sessions will be pruned.<br> 40 40 * Default: 2 41 41 * </p> … … 45 45 /** 46 46 * <p> 47 * Maximal length of a session. All longer sessions will be prun de. Default:48 * 10047 * Maximal length of a session. All longer sessions will be pruned.<br> 48 * Default: 100 49 49 * </p> 50 50 */ 51 51 private int maxLength = 100; 52 53 /** 54 * <p> 55 * URL of the server that generated the log that is currently parser; null 56 * of URL is not available.<br> 57 * Default: null 58 * </p> 59 */ 60 private String url = null; 52 61 53 62 /** … … 142 151 public void setMaxLength(int maxLength) { 143 152 this.maxLength = maxLength; 153 } 154 155 /** 156 * <p> 157 * Sets the URL of the server from which this log was generated. Often 158 * required for replay generation 159 * </p> 160 * 161 * @param url 162 * URL of the server 163 */ 164 public void setUrl(String url) { 165 this.url = url; 144 166 } 145 167 … … 203 225 List<String> getVars = extractGetVarsFromUri(uri); 204 226 205 WebEvent event = new WebEvent( path, timestamp, postedVars,206 getVars);227 WebEvent event = new WebEvent(url, path, timestamp, 228 postedVars, getVars); 207 229 208 230 // find session and add event
Note: See TracChangeset
for help on using the changeset viewer.