1.适配TSG 23.07及以上功能,添加数据传输统计指标,并输出至pushgateway。(GAL-409)
2.原URL参数domain从http_domain字段取值,更新为从common_server_domain字段取值。(GAL-410)
This commit is contained in:
52
src/main/java/com/zdjizhi/common/pojo/FileMeta.java
Normal file
52
src/main/java/com/zdjizhi/common/pojo/FileMeta.java
Normal file
@@ -0,0 +1,52 @@
|
||||
package com.zdjizhi.common.pojo;
|
||||
|
||||
|
||||
import com.alibaba.fastjson2.JSONArray;
|
||||
|
||||
public class FileMeta {
|
||||
private long common_log_id;
|
||||
protected int common_recv_time;
|
||||
private String common_schema_type;
|
||||
private JSONArray source_list;
|
||||
private int processing_time;
|
||||
|
||||
public long getCommon_log_id() {
|
||||
return common_log_id;
|
||||
}
|
||||
|
||||
public void setCommon_log_id(long common_log_id) {
|
||||
this.common_log_id = common_log_id;
|
||||
}
|
||||
|
||||
public int getCommon_recv_time() {
|
||||
return common_recv_time;
|
||||
}
|
||||
|
||||
public void setCommon_recv_time(int common_recv_time) {
|
||||
this.common_recv_time = common_recv_time;
|
||||
}
|
||||
|
||||
public String getCommon_schema_type() {
|
||||
return common_schema_type;
|
||||
}
|
||||
|
||||
public void setCommon_schema_type(String common_schema_type) {
|
||||
this.common_schema_type = common_schema_type;
|
||||
}
|
||||
|
||||
public JSONArray getSource_list() {
|
||||
return source_list;
|
||||
}
|
||||
|
||||
public void setSource_list(JSONArray source_list) {
|
||||
this.source_list = source_list;
|
||||
}
|
||||
|
||||
public int getProcessing_time() {
|
||||
return processing_time;
|
||||
}
|
||||
|
||||
public void setProcessing_time(int processing_time) {
|
||||
this.processing_time = processing_time;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user