You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: getting-started-guide/explore-axiom-playground.mdx
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,17 +11,26 @@ To try out Axiom with sample data but without integrating it into your system, s
11
11
12
12
To start integrating Axiom into your system, see [Integrate Axiom into your system](/getting-started-guide/integrate-axiom).
13
13
14
-
## 1. Display stream of incoming data
14
+
## 1. Explore sample data
15
15
16
16
1. Go to the [Axiom Playground](https://play.axiom.co/).
17
+
1. Click the **Datasets** tab on the top of the page.
18
+
1. In the list of datasets, click `sample-http-logs`.
19
+
20
+
This displays the fields in the sample dataset `sample-http-logs`. In Axiom, an individual piece of data is an event, and a dataset is a collection of similar events. In this example, an event is an HTTP request to your website, and the dataset holds incoming data about all these HTTP requests.
21
+
22
+
## 2. Display stream of incoming data
23
+
17
24
1. Click the **Stream** tab on the top of the page.
18
25
1. Click **sample-http-logs** in the list.
19
26
27
+
You see the data that Axiom receives realtime. In this example, this page displays the HTTP requests to your imaginary website.
28
+
20
29
[Run in Playground](https://play.axiom.co/axiom-play-qf1k/stream/sample-http-logs)
21
30
22
-
You see the data that Axiom receives realtime. In this example, this page displays the HTTP requests to your imaginary website.
31
+
## 3. Analyze data
23
32
24
-
##2. Query data
33
+
###Query data
25
34
26
35
1. Click the **Query** tab on the top of the page, and then click **Builder** in the top left. This enables you to query your data with a visual query builder.
27
36
1. In the **Dataset** section, select **sample-http-logs** from the list of datasets.
@@ -33,7 +42,7 @@ You see all the HTTP requests with the status 500. This is important to know bec
33
42
34
43
[Run in Playground](https://play.axiom.co/axiom-play-qf1k/query?initForm=%7B%22apl%22%3A%22%5B'sample-http-logs'%5D%20%7C%20where%20status%20%3D%3D%20'500'%22%7D)
35
44
36
-
##3. Run an APL query
45
+
###Run an APL query
37
46
38
47
1. Click the **Query** tab on the top of the page, and then click **APL** in the top left. This enables you to query your data with the Axiom Processing Language (APL). For more information, see [Introduction to APL](/apl/introduction).
0 commit comments