|
@ -0,0 +1,192 @@
|
|
|
package com.yihu.hos.logger.model;
|
|
|
|
|
|
import com.yihu.hos.core.datatype.DateUtil;
|
|
|
import org.springframework.data.annotation.Id;
|
|
|
import org.springframework.data.mongodb.core.index.Indexed;
|
|
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* @created Airhead 2016/8/8.
|
|
|
*/
|
|
|
@Document(collection = "business")
|
|
|
public class HosLog {
|
|
|
@Id
|
|
|
private String id;
|
|
|
@Indexed
|
|
|
private String exchangeId;
|
|
|
private String messageId;
|
|
|
private String correlationId;
|
|
|
private String transactionKey;
|
|
|
@Indexed
|
|
|
private String routeId;
|
|
|
@Indexed
|
|
|
private String breadcrumbId;
|
|
|
private String order;
|
|
|
private Integer totalServers;
|
|
|
private String code;
|
|
|
private String camelContextId;
|
|
|
private String body;
|
|
|
private Integer bodyLength;
|
|
|
private String fireTimeSource;
|
|
|
private Date updateTime;
|
|
|
private Date createTime;
|
|
|
private String tenant;
|
|
|
|
|
|
public HosLog() {
|
|
|
this.createTime = DateUtil.getSysDateTime();
|
|
|
}
|
|
|
|
|
|
//@Indexed(name = "fireTime_1", expireAfterSeconds = 30)
|
|
|
@Indexed
|
|
|
private Date fireTime; //后期建议转成TTL
|
|
|
|
|
|
public String getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(String id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
public String getExchangeId() {
|
|
|
return exchangeId;
|
|
|
}
|
|
|
|
|
|
public void setExchangeId(String exchangeId) {
|
|
|
this.exchangeId = exchangeId;
|
|
|
}
|
|
|
|
|
|
public String messageId() {
|
|
|
return this.messageId;
|
|
|
}
|
|
|
|
|
|
public void setMessageId(String messageId) {
|
|
|
this.messageId = messageId;
|
|
|
}
|
|
|
|
|
|
public String getCorrelationId() {
|
|
|
return correlationId;
|
|
|
}
|
|
|
|
|
|
public void setCorrelationId(String correlationId) {
|
|
|
this.correlationId = correlationId;
|
|
|
}
|
|
|
|
|
|
public String getTransactionKey() {
|
|
|
return transactionKey;
|
|
|
}
|
|
|
|
|
|
public void setTransactionKey(String transactionKey) {
|
|
|
this.transactionKey = transactionKey;
|
|
|
}
|
|
|
|
|
|
public String getRouteId() {
|
|
|
return routeId;
|
|
|
}
|
|
|
|
|
|
public void setRouteId(String routeId) {
|
|
|
this.routeId = routeId;
|
|
|
}
|
|
|
|
|
|
public String getBreadcrumbId() {
|
|
|
return breadcrumbId;
|
|
|
}
|
|
|
|
|
|
public void setBreadcrumbId(String breadcrumbId) {
|
|
|
this.breadcrumbId = breadcrumbId;
|
|
|
}
|
|
|
|
|
|
public String getCamelContextId() {
|
|
|
return camelContextId;
|
|
|
}
|
|
|
|
|
|
public void setCamelContextId(String camelContextId) {
|
|
|
this.camelContextId = camelContextId;
|
|
|
}
|
|
|
|
|
|
public String getBody() {
|
|
|
return body;
|
|
|
}
|
|
|
|
|
|
public void setBody(String body) {
|
|
|
this.body = body;
|
|
|
}
|
|
|
|
|
|
public Date getFireTime() {
|
|
|
return fireTime;
|
|
|
}
|
|
|
|
|
|
public void setFireTime(Date fireTime) {
|
|
|
this.fireTime = fireTime;
|
|
|
}
|
|
|
|
|
|
public Integer getBodyLength() {
|
|
|
return bodyLength;
|
|
|
}
|
|
|
|
|
|
public void setBodyLength(Integer bodyLength) {
|
|
|
this.bodyLength = bodyLength;
|
|
|
}
|
|
|
|
|
|
public String getFireTimeSource() {
|
|
|
return fireTimeSource;
|
|
|
}
|
|
|
|
|
|
public void setFireTimeSource(String fireTimeSource) {
|
|
|
this.fireTimeSource = fireTimeSource;
|
|
|
}
|
|
|
|
|
|
public Integer getTotalServers() {
|
|
|
return totalServers;
|
|
|
}
|
|
|
|
|
|
public void setTotalServers(Integer totalServers) {
|
|
|
this.totalServers = totalServers;
|
|
|
}
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
public String getOrder() {
|
|
|
return order;
|
|
|
}
|
|
|
|
|
|
public void setOrder(String order) {
|
|
|
this.order = order;
|
|
|
}
|
|
|
|
|
|
public Date getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
public String getMessageId() {
|
|
|
return messageId;
|
|
|
}
|
|
|
|
|
|
public String getTenant() {
|
|
|
return tenant;
|
|
|
}
|
|
|
|
|
|
public void setTenant(String tenant) {
|
|
|
this.tenant = tenant;
|
|
|
}
|
|
|
}
|