Skip to main content

Documentation Index

Fetch the complete documentation index at: https://axiom-mano-support-improvements.mintlify.app/llms.txt

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

The table dashboard element displays a summary of any attributes from your metrics, logs, or traces in a sortable table format. Each row in the table could represent a different service, host, or other entity, with columns showing various attributes or metrics for that entity.
Column resizing is not supported in the table dashboard element. To resize columns, use the Query tab, switch to the column-per-field view, and drag the column borders to resize them. For more information, see Query data.

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:
    • Click Builder to create your chart using a visual query builder. For more information, see Create chart using visual query builder.
    • Click APL 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 Builder

Table example with Builder

Example with APL

['sample-http-logs']
| summarize avg(resp_body_size_bytes) by bin_auto(_time)
Table example with APL

Combine multiple queries in a table

Each table element uses a single query. To display data from multiple queries in one table, use the union operator in your APL query to combine results from multiple datasets or queries. For example, to combine HTTP logs and security logs in a single table:
['sample-http-logs']
| union ['security-logs']
| summarize count() by status, bin_auto(_time)
You can also combine multiple queries with different structures. The union operator merges compatible fields and preserves all rows from both queries:
['web-server-logs']
| project _time, status, method, uri
| union ['api-server-logs']
| project _time, status, method, endpoint
| order by _time desc
If you need to display data from multiple independent queries that can’t be combined with union, create separate table elements in your dashboard instead.