Source: factory.core/extend.tui/ObjMqttTUI.py
Terminal UI dashboard for MQTT monitor service.
Displays real-time information about:
| Method | Signature | Description |
|---|---|---|
| set_broker | set_broker(broker: str) |
Set the broker host:port string. |
| set_package | set_package(package: str) |
Update the active package name. |
| set_connection_status | set_connection_status(status: str) |
Update the connection status string. |
| set_queue_size | set_queue_size(topic: str, size: int) |
Update the current queue depth for a topic. |
| record_message | record_message(topic: str, event_type: str = '', table_name: str = '') |
Record a successfully processed message. |
| record_drop | record_drop(topic: str, reason: str = '') |
Record a dropped (not persisted) message. |
| record_flush | record_flush(topic: str, count: int) |
Record a completed batch flush. |