Skip to Content
Data ConnectivityDataPool Explorer

DataPool Explorer

The DataPool Explorer is a visual tool for browsing, inspecting, and debugging your data in real time. It provides a tree view of all streams, items, and fields with live value updates.

Opening the Explorer

Navigate to Data Sources and click Explorer in the toolbar, or press Ctrl+E from any Data Sources page.

Browse Tree

The left panel shows your data hierarchy:

DataPool sales north revenue: 142000 target: 130000 pct: 109.2 south revenue: 98000 target: 110000 pct: 89.1 weather london temperature: 22 humidity: 65 conditions: "Partly Cloudy"

The tree has four levels:

LevelDescription
RootDataPool (top level)
StreamA data collection (e.g. sales)
ItemA record within a stream (e.g. north)
FieldA value within an item (e.g. revenue)

Click any node to expand it. Fields show their current values inline.

Real-Time Values

Field values update in real time as data changes. A brief highlight animation indicates when a value has just changed, making it easy to spot live updates.

Detail Panel

Click on any item or field to open the detail panel on the right:

Item details

PropertyDescription
StreamParent stream name
Item KeyUnique identifier
Field CountNumber of fields
Last UpdatedTimestamp of last data change
FieldsTable of all field names, types, and current values

Field details

PropertyDescription
NameField name
TypeData type (string, number, boolean, date)
Current ValueThe live value
Last ChangedWhen this specific field last changed
HistorySnapshot history (if snapshots are enabled)

Timeline Scrubber

For streams with snapshots enabled, the timeline scrubber lets you view historical values:

  1. Select a field in the browse tree
  2. The timeline appears at the bottom of the detail panel
  3. Drag the scrubber to any point in time
  4. The detail panel shows the value at that moment
  5. A sparkline chart shows the value trend over time

The timeline range depends on your snapshot retention settings. Default retention is 7 days.

Use the search bar at the top of the browse tree to find streams, items, or fields by name. Search is instant and filters the tree as you type.

DataPool Explorer Uses

Use CaseHow
Verify data is flowingCheck that values are updating in real time
Debug data bindingsFind the exact field path to use in Designer bindings
Monitor data freshnessCheck “Last Updated” timestamps
Investigate historical dataUse the timeline scrubber to see past values
Validate connector outputConfirm that connector mapping produces expected fields
Last updated on