RabbitMQ 路由键

RabbitMQ Routing Keys

美好的一天。

有没有办法通过基于浏览器的现有交换(扇出或主题)检索路由密钥UI?

我无权访问客户端源代码(生产者)以查看哪些路由键被发送到模型。

谢谢。

编辑: 我的想法是尝试锁定现有的扇出交换(我无法重新配置)。我想创建一个新的交换器,将它绑定到这个交换器并只过滤掉某些消息。

使用HTTP API:

http://localhost:15672/api/exchanges/vhost/name/bindings/source

A list of all bindings in which a given exchange is the source.

例如:

http://localhost:15672/api/exchanges/%2F/my_exchange/bindings/source

[
   {
      "source":"my_exchange",
      "vhost":"/",
      "destination":"my_queue",
      "destination_type":"queue",
      "routing_key":"my_routkey",
      "arguments":{

      },
      "properties_key":"my_routkey"
   }
]