Skip to main content

Dashboards

Dashboards let you build a custom overview of your freispace data. Each dashboard is made up of one or more widgets, and every widget is powered by a query written in Kusto Query Language (KQL).

For a walkthrough of the dashboard editor itself (creating a dashboard, adding widgets, arranging your layout), see the user guide on Dashboards.

This section documents the technical side: the query language, the tables you can query, and how query results turn into widgets.

How widgets work

  1. You write a KQL query against one of the queryable entities.
  2. freispace runs the query against your team's data.
  3. The result is rendered using the visualization type you choose for the widget:
    • Table
    • Number / KPI
    • Bar chart
    • Line chart
    • Donut chart

The same query can usually be rendered as different visualization types — for example, a query that returns a single aggregated value works well as a Number/KPI widget, while a query grouped by a category (e.g. by client or by month) is a good fit for a bar, line or donut chart.

Learn KQL