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/quickstart-using-sample-data.mdx
+12-11Lines changed: 12 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ You see the data that Axiom receives realtime.
35
35
### Query data
36
36
37
37
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.
38
-
1. In the **Dataset** section, select **otel-demo-tracess** from the list of datasets.
38
+
1. In the **Dataset** section, select **otel-demo-traces** from the list of datasets.
39
39
1. In the **Where** section, click **+**.
40
40
1. Write **service.name == frontend**, and then press **Enter**.
41
41
1. Click **Run**.
@@ -53,7 +53,7 @@ You see all the traces for the Frontend service.
53
53
```
54
54
1. Click **Run**.
55
55
56
-
You see the number of requests taking longer than 5ms for each service over time.
56
+
You see the number of requests taking longer than 5 ms for each service over time.
57
57
58
58
## 4. Visualize data
59
59
@@ -62,24 +62,26 @@ You see the number of requests taking longer than 5ms for each service over time
62
62
63
63
You see a dashboard that displays important information about the OTel traces.
64
64
65
+
TODO from here
66
+
65
67
## 5. Create new dashboard
66
68
67
69
1. Click the **Dashboards** tab on the top of the page, and then click **New dashboard** on the right.
68
70
1. Name the dashboard and click **Create**.
69
71
1. Click **Add a chart**, and then click **Timeseries**.
70
-
1. In the **Dataset** section, select **sample-http-logs**.
71
-
1. In the **Summarize** section, click **no group** to the right of **by**, and then select **status**.
72
+
1. In the **Dataset** section, select **otel-demo-traces**.
73
+
1. In the **Summarize** section, click **no group** to the right of **by**, and then select **service.name**.
72
74
1. Click **Save**.
73
75
74
-
You created a simple dashboard that displays the number of HTTP requests of each status over time.
76
+
You created a simple dashboard that displays the number of requests for each service over time.
75
77
76
78
## 6. Monitor data for issues
77
79
78
80
### Create notifier
79
81
80
82
1. Click the **Monitors** tab on the top of the page.
81
83
1. In the top left, click **Notifiers**, and then click **New notifier** on the top right.
82
-
1. In **Name**, enter **Internal server error notifier**.
84
+
1. In **Name**, enter **Slow requests notifier**.
83
85
1. In **Users**, enter your email address, and then click **+** on the right.
84
86
1. Click **Create**.
85
87
@@ -88,17 +90,16 @@ You created a simple dashboard that displays the number of HTTP requests of each
88
90
1. In the top left, click **Monitors**, and then click **New monitor** on the top right.
89
91
1. Click **Threshold monitor**.
90
92
1. In **Check options**, enter `10000` as the value.
91
-
1. Click **+ Add notifier**, and then select **Email: Internal server error notifier**.
92
-
1. Click **Builder**.
93
+
1. Click **+ Add notifier**, and then select **Email: Slow requests notifier**.
93
94
1. In the **APL** section, enter the following:
94
95
```kusto
95
-
['sample-http-logs']
96
-
| where status == "500"
96
+
['otel-demo-traces']
97
+
| where duration > 5ms
97
98
| summarize count() by bin_auto(_time)
98
99
```
99
100
1. Click **Create**.
100
101
101
-
You created a monitor that automatically sends a notification to your email address if the HTTP requests with the status **500** is higher than 10,000 in ten minutes.
102
+
You created a monitor that automatically sends a notification to your email address if the number of requests taking longer than 5 ms is higher than 10,000 in ten minutes.
0 commit comments