Spring Boot 如何使用Sping Boot 获取RabbitMQ交换的指标?

vhmi4jdf  于 2023-06-22  发布在  Spring
关注(0)|答案(1)|浏览(129)

Sping Boot 自动(使用执行器)为队列提供指标(spring_rabbitmq_listener*)。
有没有一种方法可以为服务发送到的 * 交换 * 获得类似的指标?
应用程序正在使用

  • org.springframework.boot:spring-boot-starter-actuator
  • org.springframework.boot:spring-boot-starter-amqp
  • org.springframework.boot:spring-boot-starter-web

全部在3.1.0中
我试过rabbitTemplate.setObservationEnabled(true);,但没有用。

相关问题