Example data for tutorials
Imply Lumi tutorials use example data from the following files which simulate web traffic to a fictional online store.
The data represents website activity for an imaginary company that operates a web store. The company uses server logs to analyze site traffic and manage inventory.
Depending on the tutorial, you download one of the following:
The files contain one week of logs, ending with the current day. The data is refreshed daily, so your results may vary slightly from those shown in the tutorials.
To download the files, click the links above or run the following commands in a terminal:
wget https://docs.imply.io/data/site_visitors.log
wget https://docs.imply.io/data/site_visitors_quickstart.csv
Example log
The following line shows an 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"
The log describes 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 details about the log format, see Combined log format in the Apache documentation.
Learn more
To get started with the tutorials, see the following: