Top list

This section explains how to create top list dashboard elements and add them to your dashboard.

The top list dashboard element displays the top results from your query, showing the most significant items based on your aggregation and grouping. It can display results as either a table of totals or as time series charts, depending on the aggregation type used.

Prerequisites

Create a dashboard element

  1. Go to the Dashboards tab and open the dashboard to which you want to add the top list.
  2. Click Edit dashboard.
  3. Click Add element in the top right corner.
  4. Click Top list from the list.
  5. Choose one of the following:
  6. Optional: Configure the dashboard element.
  7. Click Save.

The new element appears in your dashboard. At the bottom, click Save to save your changes to the dashboard.

Example with Builder

Top list example with Builder

Example with APL

['sample-http-logs']
| summarize count() by status
| top 10 by count_ desc
Top list example with APL