Skip to main content

Documentation Index

Fetch the complete documentation index at: https://axiom.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Scatter plots are used to visualize the correlation or distribution between two distinct metrics or logs. Each point in the scatter plot could represent a log entry, with the X and Y axes showing different log attributes (like request time and response size). The scatter plot chart can be created using the simple query builder or advanced query builder. For example, plot response size against response time for an API to see if larger responses are correlated with slower response times.

Prerequisites

Create

  1. Go to the Dashboards tab and open the dashboard to which you want to add the .
  2. Click Add element in the top right corner.
  3. Click from the list.
  4. Choose one of the following:
  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 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