GateWay检查接口耗时

添加gateway依赖

java 复制代码
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>

创建一个LogTimeGateWayFilterFactory类,可以不是这个名字但是后面必须是xxxGateWayFilterFactory

然后继承AbstractNameValueGatewayFilterFactory

java 复制代码
@Component
@Slf4j
public class LogTimeGatewayFilterFactory extends AbstractNameValueGatewayFilterFactory {
    @Override
    public GatewayFilter apply(NameValueConfig config) {
        return new GatewayFilter() {
            @Override
            public Mono<Void> filter(ServerWebExchange exchange,GatewayFilterChain chain) {
                //获取配置的超时时间
                String value = ServerWebExchangeUtils.expand(exchange, config.getValue());
                Integer timespan = Integer.valueOf(value);
                //获取开始时间
                long start = System.currentTimeMillis();
                // 往下执行完并返回后   操作.then对执行结果操作完之后在返回
                return chain.filter(exchange).then(Mono.fromRunnable(()->{
                    //获取结束时间
                    long end = System.currentTimeMillis();
                    //获取请求耗时
                    long time = end - start;
                    //判断是否超时
                    if(time > timespan*1000){
                        log.debug("请求耗时:{}ms",time);
                    }
                }));
            }

            @Override
            public String toString() {
                return filterToStringCreator(LogTimeGatewayFilterFactory.this)
                        .append(config.getName(), config.getValue()).toString();
            }
        };
    }
}

配置文件里配置,LogTime就是类名,但是不能带着GateWayFilterFactory

相关推荐
带刺的坐椅6 小时前
Solon Cloud Gateway 开发:导引
java·gateway·solon·solon cloud
问道飞鱼1 天前
【分布式知识】Spring Cloud Gateway实现跨集群应用访问
分布式·eureka·gateway
kerwin_code1 天前
SpringCloud Gateway 集成 Sentinel 详解 及实现动态监听Nacos规则配置实时更新流控规则
spring cloud·gateway·sentinel
微微%1 天前
SpringCloud微服务Gateway网关简单集成Sentinel
spring cloud·微服务·gateway
晨的挥霍2 天前
spring cloud之gateway和JWT回顾
spring·spring cloud·gateway
m0_748252232 天前
IP地址、子网掩码(NETMASK)和网关(Gateway)
tcp/ip·gateway·智能路由器
Icoolkj2 天前
微服务学习-Gateway 统一微服务入口
学习·微服务·gateway
rgrgrwfe5 天前
当遇到 502 错误(Bad Gateway)怎么办
gateway
BingoXing6 天前
Gateway与WebFlux
gateway
BingoXing6 天前
Gateway与WebFlux的整合
java·spring boot·spring cloud·gateway·webflux