Portal Community

Using the Node Filter

  1. Click the "Filter by node" dropdown in the Logs tab toolbar.
  2. Select a node from the list. Nodes are listed in execution order and include the node's display name and type.
  3. The log stream immediately filters to show only entries from the selected node.
  4. Select "All nodes" from the top of the list to clear the node filter.

Node Filter Dropdown Population

The dropdown is populated from flowObserverPanelStore.nodeStatuses. Only nodes that have at least started executing appear in the list — pending nodes are excluded to avoid clutter. The list updates dynamically as new nodes start.

Combined Filter Example

To see only error-level logs from the "Send Email" node:

  1. Select Error from the level chips.
  2. Select Send Email from the node filter dropdown.
  3. The stream shows only entries where level === 'error' && nodeId === 'send-email-node-id'.
// Combined level + node filter
const visibleLogs = logs.filter(entry =>
  (selectedLevels.size === 0 || selectedLevels.has(entry.level)) &&
  (!selectedNodeId || entry.nodeId === selectedNodeId)
);

Node Filter vs subscribeToNodeStream

The node filter operates on the already-buffered log entries in flowObserverPanelStore.logs. It does not affect which events are received from SignalR — all logs are still buffered. The filter is purely a display-time operation, so you can switch the node filter freely without missing any logs.

Cross-Tab Navigation When you double-click a node in the Node List tab to open the Node Inspector, the node filter in the Logs tab is NOT automatically updated. They are independent. If you want to see only that node's logs, manually set the node filter in the Logs tab.