|
@@ -13,6 +13,7 @@ public class NginxLog implements Serializable {
|
|
|
|
|
|
|
|
private String id;
|
|
private String id;
|
|
|
@SerializedName("time_iso8601") private String timeIso8601;
|
|
@SerializedName("time_iso8601") private String timeIso8601;
|
|
|
|
|
+ private Long requestTimestamp;
|
|
|
@SerializedName("remote_addr") private String remoteAddr;
|
|
@SerializedName("remote_addr") private String remoteAddr;
|
|
|
private String request;
|
|
private String request;
|
|
|
private Integer status;
|
|
private Integer status;
|
|
@@ -40,6 +41,14 @@ public class NginxLog implements Serializable {
|
|
|
return timeIso8601;
|
|
return timeIso8601;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public void setRequestTimestamp(Long requestTimestamp) {
|
|
|
|
|
+ this.requestTimestamp = requestTimestamp;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Long getRequestTimestamp() {
|
|
|
|
|
+ return requestTimestamp;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public String getRemoteAddr() {
|
|
public String getRemoteAddr() {
|
|
|
return remoteAddr;
|
|
return remoteAddr;
|
|
|
}
|
|
}
|