springcloudgateway Actuator API

官方文档:11. Actuator API

开启actuator

加依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

加配置

management:
  endpoints:
    web:
      exposure:
        # '*'表示所有,gateway表示只开启gateway
        include: "gateway"
  endpoint:
    gateway:
      #默认就是true,可以不写这个配置
      enabled: true

验证是否actuator是否正常访问

http://www.example.com/actuator/gateway/routes

注意:不要用下面的url去验证,下面的url始终是404,不要进行无用的排查。

http://www.example.com/actuator/gateway

常用端点如下

/actuator/gateway/globalfilters 全局过滤器

/actuator/gateway/routefilters 路由过滤器

/actuator/gateway/refresh 刷新路由缓存

/actuator/gateway/routes 路由列表

/actuator/gateway/routes/{id} 单个路由详情

POST /gateway/routes/{id_route_to_create} 创建路由

DELETE /gateway/routes/{id_route_to_delete} 删除路由

相关推荐
kerwin_code2 小时前
SpringCloud Gateway 集成 Sentinel 详解 及实现动态监听Nacos规则配置实时更新流控规则
spring cloud·gateway·sentinel
微微%2 小时前
SpringCloud微服务Gateway网关简单集成Sentinel
spring cloud·微服务·gateway
晨的挥霍1 天前
spring cloud之gateway和JWT回顾
spring·spring cloud·gateway
m0_748252231 天前
IP地址、子网掩码(NETMASK)和网关(Gateway)
tcp/ip·gateway·智能路由器
Icoolkj1 天前
微服务学习-Gateway 统一微服务入口
学习·微服务·gateway
rgrgrwfe4 天前
当遇到 502 错误(Bad Gateway)怎么办
gateway
BingoXing5 天前
Gateway与WebFlux
gateway
BingoXing5 天前
Gateway与WebFlux的整合
java·spring boot·spring cloud·gateway·webflux
李修缘9997 天前
gateway worker 分布式
gateway
fangdengfu1238 天前
spring-cloud-starter-gateway 使用中 KafkaAppender的问题
gateway