Example data for tutorials
AI summary
About AI summaries.
Imply Lumi tutorials use example data that simulates web traffic for a fictional online store. The datasets contain server log activity including site traffic and inventory events over a one-week time span. This provides a realistic context to explore Lumi features without requiring your own data.
To download the files, click the following links, or run the wget commands in a terminal:
- Log file (used in most tutorials)
- Splunk® CSV file (used in federated search tutorials)
wget https://docs.imply.io/data/site_visitors.log
wget https://docs.imply.io/data/site_visitors_quickstart.csv
The data is refreshed daily, so your results may vary slightly from those shown in the tutorials.
Example log
The logs use the NCSA Combined Log Format, a standard format for HTTP access records.
In Splunk, this corresponds to the access_combined source type.
Example log line:
830:1e0e:525:e6a0:6479:cd69:c364:23c3 - - [24/Mar/2025:16:25:29 -0500] "POST /products/23394 HTTP/1.1" 200 1027 "https://techcrunch.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:110.0) Gecko/20100101 Firefox/110.0"
This event contains the following attributes:
- Client IP address that made the request to the server:
830:1e0e:525:e6a0:6479:cd69:c364:23c3 - Identity of the client:
- - User ID for the user making the request:
- - Time the server received the request:
24/Mar/2025:16:25:29 -0500 - Request from the client
- Method:
POST - URI:
/products/23394 - Protocol:
HTTP/1.1
- Method:
- Status code the server sent to the client:
200 - Size of the object (in bytes) the server returned to the client:
1027 - Site that the client was referred from:
https://techcrunch.com/ - User agent HTTP request header describing the client browser:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:110.0) Gecko/20100101 Firefox/110.0
For more details about the log format, see Combined log format in the Apache documentation.
Learn more
To get started with the tutorials, see the following: