thomasnordquist / MQTT-Explorer

An all-round MQTT client that provides a structured topic overview
https://mqtt-explorer.com
Other
2.99k stars 287 forks source link

application hiding some topics #704

Closed Wildcarde closed 1 year ago

Wildcarde commented 1 year ago

I've got a water softener that publishes itself as $aws/things/<serialnumber>/<Configure Topic>, while I have confirmed that this is the case using mosquitto debug logs and by testing against it with the home assistant mqtt debugging interface the mqtt explorer interface does not show these published entries. I suspect this is due to the $aws at the front of the topic string but i'm not sure if there's an obvious way to check if this is being filtered, there's no obvious way to turn on debugging through the gui itself.

Mynijo commented 1 year ago

If you add "$aws/#" before you connect using the Advanced Connection option, your msgs will be displayed.

Wildcarde commented 1 year ago

That worked perfect, thank you!