Skip to content

Commit 042e00a

Browse files
committed
Update quickstart-using-sample-data.mdx
1 parent fd211e9 commit 042e00a

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

getting-started-guide/quickstart-using-sample-data.mdx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You see the data that Axiom receives realtime.
3535
### Query data
3636

3737
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.
3939
1. In the **Where** section, click **+**.
4040
1. Write **service.name == frontend**, and then press **Enter**.
4141
1. Click **Run**.
@@ -53,7 +53,7 @@ You see all the traces for the Frontend service.
5353
```
5454
1. Click **Run**.
5555

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.
5757

5858
## 4. Visualize data
5959

@@ -62,24 +62,26 @@ You see the number of requests taking longer than 5ms for each service over time
6262

6363
You see a dashboard that displays important information about the OTel traces.
6464

65+
TODO from here
66+
6567
## 5. Create new dashboard
6668

6769
1. Click the **Dashboards** tab on the top of the page, and then click **New dashboard** on the right.
6870
1. Name the dashboard and click **Create**.
6971
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**.
7274
1. Click **Save**.
7375

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.
7577

7678
## 6. Monitor data for issues
7779

7880
### Create notifier
7981

8082
1. Click the **Monitors** tab on the top of the page.
8183
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**.
8385
1. In **Users**, enter your email address, and then click **+** on the right.
8486
1. Click **Create**.
8587

@@ -88,17 +90,16 @@ You created a simple dashboard that displays the number of HTTP requests of each
8890
1. In the top left, click **Monitors**, and then click **New monitor** on the top right.
8991
1. Click **Threshold monitor**.
9092
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**.
9394
1. In the **APL** section, enter the following:
9495
```kusto
95-
['sample-http-logs']
96-
| where status == "500"
96+
['otel-demo-traces']
97+
| where duration > 5ms
9798
| summarize count() by bin_auto(_time)
9899
```
99100
1. Click **Create**.
100101

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.
102103

103104
## What's next
104105

0 commit comments

Comments
 (0)