Inspect Payloads
Payload inspection helps make raw MQTT messages understandable.
Typical Flow
text
MQTT connection resource
-> MQTT trigger
-> Topic filter or condition router
-> Payload inspector
-> UI projectionInspection Goals
- identify payload format
- render readable values
- compare messages over time
- highlight malformed or unexpected payloads
Notes
Payload inspection should not mutate the original MQTT message. Transformations belong in explicit mapper components.
The live MQTT trigger is responsible for the topic subscription and message emission. The shared connection owns the broker session. Filtering, inspection, and projection stay in separate components so each step remains visible in the flow.
Use a topic filter when non-matching messages should be dropped. Use a condition router when non-matching messages should continue through another branch.