Axiom Portal for Splunk examples
Copy-paste SPL examples for searching Axiom data from Splunk through the Axiom Portal for Splunk, from first searches to lookups and data models.
These examples use standard mode syntax, index=federated:<name>, against a dataset of OpenTelemetry trace data. In transparent mode, drop the federated: prefix and use the dataset name directly. Adjust index and field names to your setup.
First searches
Raw events, newest first. Click any event to see the full record, and use the field sidebar to explore:
Filters push down, so only matching events leave Axiom:
Note that dotted field names take double quotes in SPL, as on any Splunk index.
Count at any scale
Exact counts per service over millions of events, computed inside Axiom:
The classic top-N and rare patterns push down too:
Aggregations
Any mix of aggregation functions in one stats command:
Time series and dashboards
timechart is computed Axiom-side, including the time bins, so dashboard panels backed by federated searches stay fast at any data volume:
Shape results on the search head
Streaming commands run on the search head over the events Axiom returns, so familiar SPL shaping works unchanged:
Use lookups against Axiom data
In transparent mode, CSV lookups that live on your Splunk search head are replicated to Axiom and joined there:
This is the pattern that makes existing Splunk content work: the lookup table stays in Splunk, the events stay in Axiom, and the Portal joins them where the data is.
Query data models with tstats
In transparent mode, data models queried with tstats, the pattern security content uses, are answered exactly from Axiom:
Inspect what happened
On any federated search, click Job, and then select Inspect Job. The axiom.* entries in Execution costs show what happened on the Axiom side: events scanned, query time, and rows in and out. For pushed-down aggregations, the events-scanned count reflects the full scan Axiom performed, even though only a handful of result rows crossed the wire. For details, see Monitor and troubleshoot.