|
@@ -19,7 +19,8 @@ public class NginxLog implements Serializable {
|
|
|
@SerializedName("request_method") private String requestMethod;
|
|
@SerializedName("request_method") private String requestMethod;
|
|
|
@SerializedName("body_bytes_sent") private Integer bodyBytesSent;
|
|
@SerializedName("body_bytes_sent") private Integer bodyBytesSent;
|
|
|
@SerializedName("request_time") private Double requestTime;
|
|
@SerializedName("request_time") private Double requestTime;
|
|
|
- @SerializedName("upstream_response_time") private Double upstreamResponseTime;
|
|
|
|
|
|
|
+ @SerializedName("upstream_response_time") private String upstreamResponseTime;
|
|
|
|
|
+ private String upstreamResponseTimeDouble;
|
|
|
@SerializedName("upstream_addr") private String upstreamAddr;
|
|
@SerializedName("upstream_addr") private String upstreamAddr;
|
|
|
private String host;
|
|
private String host;
|
|
|
private String url;
|
|
private String url;
|
|
@@ -63,10 +64,14 @@ public class NginxLog implements Serializable {
|
|
|
return requestTime;
|
|
return requestTime;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public Double getUpstreamResponseTime() {
|
|
|
|
|
|
|
+ public String getUpstreamResponseTime() {
|
|
|
return upstreamResponseTime;
|
|
return upstreamResponseTime;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public String getUpstreamResponseTimeDouble() {
|
|
|
|
|
+ return upstreamResponseTimeDouble;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public String getUpstreamAddr() {
|
|
public String getUpstreamAddr() {
|
|
|
return upstreamAddr;
|
|
return upstreamAddr;
|
|
|
}
|
|
}
|