如何只为监控读取服务总线消息的内容
How to read the content of service bus messages only for monitoring
有没有办法在不拉取或改变任何行为的情况下读取队列或主题中的消息(仅用于监视)?
Azure 服务总线允许查看消息。
例如,您也可以使用 QueueClient.PeekAsync()
to to peek messages from a queue. There's an equivalent for topics and subscriptions。
如果您不需要区分来自队列和订阅的消息,可以使用 MessageReceiver.PeekAsync()
选项。
有没有办法在不拉取或改变任何行为的情况下读取队列或主题中的消息(仅用于监视)?
Azure 服务总线允许查看消息。
例如,您也可以使用 QueueClient.PeekAsync()
to to peek messages from a queue. There's an equivalent for topics and subscriptions。
如果您不需要区分来自队列和订阅的消息,可以使用 MessageReceiver.PeekAsync()
选项。