|
|
@ -24,6 +24,7 @@ public class CollectableStatistic { |
|
|
|
|
|
|
|
public CollectableStatistic(HttpServletRequest request) { |
|
|
|
this.client_ip = request.getHeader("X-Forwarded-For"); |
|
|
|
if (this.client_ip != null) this.client_ip = this.client_ip.split(",")[0]; |
|
|
|
this.method = request.getMethod(); |
|
|
|
this.path = request.getRequestURI(); |
|
|
|
this.query = request.getQueryString(); |
|
|
|