Heatmaps represent the distribution of numerical data by grouping values into ranges or buckets. Each bucket reflects a frequency count of data points that fall within its range. Instead of showing individual events or measurements, heatmaps give a clear view of the overall distribution patterns. This allows you to identify performance bottlenecks, outliers, or shifts in behavior. For instance, you can use heatmaps to track response times, latency, or error rates.

Prerequisites

Create

  1. Go to the Dashboards tab and open the dashboard to which you want to add the .
  2. Click Add element Add element in the top right corner.
  3. Click from the list.
  4. Choose one of the following:
    • Click Simple Query Builder to create your chart using a visual query builder. For more information, see Create chart using visual query builder.
    • Click Advanced Query Language to create your chart using the Axiom Processing Language (APL). Create a chart in the same way you create a chart in the APL query builder of the Query tab.
  5. Optional: Configure the dashboard element.
  6. Click Save.

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

Example with Simple Query Builder

Example with Advanced Query Language

['http-logs']
| summarize histogram(req_duration_ms, 15) by bin_auto(_time)