All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feingto.cloud.dto.trace.TraceDTO Maven / Gradle / Ivy

There is a newer version: 2.3.5.RELEASE
Show newest version
package com.feingto.cloud.dto.trace;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * Zipkin链路
 *
 * @author longfei
 */
@Data
@Accessors(chain = true)
public class TraceDTO implements Serializable {
    private static final long serialVersionUID = -4121098772050135567L;

    private String id;

    private String serviceName;// 服务名

    private String spanName = "all";// 标签名

    private String annotationQuery;// 查询条件

    private Long minDuration;// 最小持续时间

    private Long maxDuration;// 最大持续时间

    private Long endTs;// 截止时间

    private Long lookback = 86400000L;// 时间范围:截止时间 - 起始时间 1 day in millis

    private Integer limit;// 条数
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy