Skip to main content
Explore (legacy) is the previous version of Sift’s telemetry visualization workspace. It remains available alongside Explore.

Table Viewer

Table Viewer is a data view in the Explore (legacy) workspace. It displays telemetry values from selected Channels in a tabular format. Each column represents a Channel. Rows are aligned with the time range currently visible in the line chart and update automatically when the chart is panned or zoomed.

Settings

Row creation trigger options

Filter operators

Filters are applied per column and are row-based. Active filters across columns are combined using logical AND.

Export

The Table Viewer tab includes an Export as CSV button. Only data currently visible in the table, based on the active time range and filters, is included in the export.

Parameterized URLs

The /explore route accepts query parameters to preload a specific Run, Assets, Channels, and time range when Explore (legacy) opens. This allows targeted analysis views to be constructed and shared without manual setup.

URL structure

https://{domainName}/explore?run={runName} \
  &assets={asset1,asset2,...} \
  &channels={channel1,channel2,...} \
  &from={ISO8601} \
  &to={ISO8601}
  • Format: Line breaks and backslashes (\) are shown for readability. In actual use, the URL must be a single continuous string joined with &, without spaces or backslashes.
  • Parameters must be percent-encoded for proper URL handling.
  • If from and to are not provided, the view defaults to the start and stop times of the provided Run.

URL parameters

Examples

Run, Asset, and Channels
https://app.siftstack.com/explore?run=run-name \
  &assets=asset-name \
  &channels=max_ground_temp%2Cmax_air_temp
Run, Asset, Channels, and time range
https://app.siftstack.com/explore?run=run-name \
  &assets=asset-name \
  &channels=max_ground_temp%2Cmax_air_temp \
  &from=2021-09-25T10%3A14%3A11 \
  &to=2021-10-14T13%3A29%3A37
Run only
https://app.siftstack.com/explore?run=run-name
Multiple Assets with Channels and time range
https://app.siftstack.com/explore?assets=asset-one-name%2Casset-two-name \
  &channels=max_air_temp%2Cmin_air_temp \
  &from=2021-09-25T10%3A14%3A11 \
  &to=2021-10-14T13%3A29%3A37