Overview

Scatter plot

For example, plot response size against response time for an API to see if larger responses are correlated with slower response times.

Prerequisites#

Create a dashboard element#

  1. Go to the Dashboards tab and open the dashboard to which you want to add the scatter plot.
  2. Click Edit dashboard.
  3. Click Add element in the top right corner.
  4. Click Scatter 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#

Scatter plot example with Builder

Example with APL#

['sample-http-logs']
| summarize avg(req_duration_ms), avg(resp_header_size_bytes) by resp_body_size_bytes

Scatter plot example with APL

Updated

Was this page helpful?