Use predefined dashboard tiles in the library to start your data analytics journey.
To add a predefined tile to your dashboard
In the upper-right of the dashboard, open the (Add) menu.
Keyboard shortcut: Ctrl/Cmd+Shift+Enter
Scroll down to the Library section and choose a predefined tile.
Use the search box at the top of the menu to search for a tile by name.
After you select a predefined tile, the edit panel displays the tile you added.
Edit the query or code and the visualization settings as needed.
Select Run to see results.
Close the side panel when you're done.
In
Dashboards, select Dashboard to create a new dashboard.
In the upper-right of the dashboard, select (Add) to open the add menu.
In the menu, scroll down to (or search) the Library section and select Recent logs.
That's it. You have created a dashboard with a DQL tile that fetches the 100 latest logs and displays them starting with the most recent.

The DQL behind your tile is:
fetch logs| sort timestamp desc| limit 100
The DQL commands are run in order:
fetch logs gets the log datasort timestamp desc sorts the data by timestamp in descending orderlimit 100 limits the results to 100In
Dashboards, select Dashboard to create a new dashboard.
In the upper-right of the dashboard, select (Add) to open the add menu.
In the menu, scroll down to (or search) the Library section and select Pie (Top 5 events by kind).
This one creates a tile based on the following DQL:
fetch events| summarize `event count`=count(), by:{event.kind}| limit 5
The results are displayed as a pie chart.

The library of predefined tiles is long and growing. Create a new dashboard and try them out.
When you find something interesting: