emqx支持模糊搜索订阅过某个主题的客户端列表吗

问题:是否支持模糊查询订阅过某个主题的客户端列表;

示例:想要查询所有订阅过topic=/user/status/的客户端。
clinet1订阅:topic=/user/status/+
client2订阅:topic=/user/status/123456
client3订阅:topic=/user/status/#
需要查询出上述3个client;

通过rest api:http://host:port/api/v5/subscriptions来查询,match_topic试过/user/status,/user/status/+,/user/#,查不到,是空列表返回。只有match_topic=/user/status/123456,能返回一条。

怎么样才能模糊查询订阅过某个主题的客户端列表?

match_topic支持的,+,#特殊字符,测试工具支持的不够友好,encodingurl后就正常了