Skip to main content

LOAD DASHBOARD

Kinetica provides a SQL interface for loading Reveal dashboards from a variety of sources:
LOAD DASHBOARD Syntax
LOAD DASHBOARD "<dashboard name>"
FROM FILE PATH '<file path>'
[WITH OPTIONS (DATASOURCE = '<data source name>')]

Parameters

<dashboard name>

Name of the dashboard.
This name must match the name of the dashboard in the file.

<file path>

Dashboard source file path.If a data source is specified, the path must resolve to an accessible file at that location.If no data source is specified, the file path can refer to one of two locations:
  • Public URL
  • KiFS path
File PathOutcome
kifs://reveal/db/nyctaxi.dbFile nyctaxi.db, under the KiFS virtual directory reveal/db

<data source name>

Name of data source through which the dashboard will be loaded.

Examples

To load a dashboard named nyctaxi.db into Reveal:
LOAD DASHBOARD "NYC Taxi"
FROM FILE PATH 'kifs://reveal/nyctaxi.db'