Connecting to a Topic
Select a connector
In the Scope Bar at the top of the page, open the Connector dropdown and choose the Kafka connector you want to use. Only connectors configured in your Devset instance appear here.
Select a topic
Once a connector is selected, the Topic dropdown populates with the topics available on that broker. Choose the topic you want to observe.
Live Mode
In Live mode, Devset opens a WebSocket connection to the broker and appends each new message to the list as it arrives. The message list scrolls automatically so the most recent message is always visible. Live mode is ideal for verifying that a workflow run or a Message Dispatch send is actually producing messages on the expected topic.Fetch Mode
Fetch mode loads the most recent messages already present in the topic log. Use it when you need to inspect what was published before you opened the page, or when you want to step through historical messages methodically.Enter Fetch mode
Toggle the mode selector in the Scope Bar to Fetch. Devset loads the most recent batch of messages automatically.
Fetch mode loads messages in pages of 50 at a time. Use the search and filter bar to narrow results while paging through a high-volume topic.
Searching and Filtering Messages
The Search/Filter Bar beneath the Scope Bar lets you narrow the message list by keyword. Type any string to filter messages whose payload or headers contain a matching value. Results update as you type, hiding non-matching entries from the list without re-fetching from the broker.Inspecting Message Payloads
Click any message in the list to open the Detail Panel on the right side of the screen. The detail panel shows:- Partition and offset — the Kafka coordinates of the message.
- Headers — all key-value headers attached to the message envelope.
- Payload — the message value rendered as formatted JSON, or as raw text if the content is not valid JSON.