Skip to content

Commit c86d343

Browse files
committed
Various typo fixes and grammar improvements
1 parent e7938c2 commit c86d343

File tree

5 files changed

+15
-34
lines changed

5 files changed

+15
-34
lines changed

content/en/s4r/6-apm/5-apm-trace-analyzer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ In **Trace Analyzer** you can filter traces by any indexed/unindexed span tag. I
1414
{{% notice title="Exercise" style="green" icon="running" %}}
1515

1616
* In the time picker select **Last 1 hour**.
17-
* Make sure **Sample Ratio** is set to `1:1` and **not** `1:10`.
17+
* Make sure the **Sample Ratio** is set to `1:1` and **not** `1:10`.
1818
* Click on **Group traces by** and select `version`.
1919
* Click on the ellipsis next to `v350.10` and click **Add to filter**.
20-
* Click **Add filters**, type in **orderId** and select **orderId** from the **Unindexed Tags** list.
20+
* Click on **Add filters**, type in **orderId** and select **orderId** from the **Unindexed Tags** list.
2121
* Paste in your **Order Confirmation ID** from when you went shopping earlier in the workshop and hit enter.
2222

2323
![Traces by Duration](../images/apm-trace-by-duration.png)

content/en/s4r/7-log-observer/1-log-filtering.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: 1. Log Filtering
33
weight: 1
44
---
55

6-
Log Observer, or LO for short, can be used in multiple ways. In the quick tour, you used the LO **no-code interface** to search for specific entries in the logs. This section, however, assumes you have arrived in LO from a trace in APM using the **Related Content** link.
6+
**Log Observer (LO)**, can be used in multiple ways. In the quick tour, you used the LO **no-code interface** to search for specific entries in the logs. This section, however, assumes you have arrived in LO from a trace in APM using the **Related Content** link.
77

8-
The advantage of this is, as it was with the link between RUM & APM, that you are looking at your logs within the context of your previous actions. In this case, the context is the time frame **(1)**, which matches that of the trace and the filter **(2)** which is set to the **trace_id**.
8+
The advantage of this is, as it was with the link between RUM & APM, that you are looking at your logs within the context of your previous actions. In this case, the context is the time frame (**1**), which matches that of the trace and the filter (**2**) which is set to the **trace_id**.
99

1010
![Trace Logs](../images/log-observer-trace-logs.png)
1111

@@ -19,12 +19,9 @@ We need to focus on just the Error messages in the logs:
1919

2020
* Click on the **Group By** drop-down box and use the filter to find **Severity**.
2121
* Once selected click the {{% button style="blue" %}}Apply{{% /button %}} button (notice that the chart legend changes to show debug, error and info).
22-
2322
![legend](../images/severity-logs.png)
24-
2523
* Selecting just the error logs can be done by either clicking on the word error **(1)** in the legend, followed by selecting **Add to filter** or by adding `severity=error` directly in the filter box.
26-
* You could also add the service name, `sf_service=paymentservice`, to the filter if there are error lines for multiple services, but in our case, this is not really necessary.
27-
24+
* You could also add the service name, `sf_service=paymentservice`, to the filter if there are error lines for multiple services, but in our case, this is not necessary.
2825
![Error Logs](../images/log-observer-errors.png)
2926

3027
{{% /notice %}}

content/en/s4r/7-log-observer/2-log-entry.md

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,9 @@ weight: 2
55

66
Before we look at a specific log line, let's quickly recap what we have done so far and why we are here based on the 3 pillars of Observability:
77

8-
{{< mermaid >}}
9-
10-
---
11-
title: The 3 Pillars of Observability
12-
13-
---
14-
15-
%%{
16-
init:{
17-
"theme": "neutral",
18-
"themeVariables": {
19-
"lineColor": "#ffffff"
20-
}
21-
}
22-
}%%
23-
24-
graph LR;
25-
A["`_Metrics_
26-
**Do I have a problem?**`"]
27-
B["`_Traces_
28-
**Where is the problem?**`"]
29-
C["`_Logs_
30-
**What is the problem?**`"]
31-
A --> B --> C
32-
{{< /mermaid >}}
8+
| Metrics | Traces | Logs |
9+
|:-------:|:------:|:----:|
10+
| _**Do I have a problem?**_ | _**Where is the problem?**_ | _**What is the problem?**_ |
3311

3412
* Using metrics we identified **we have a problem** with our application. This was obvious from the error rate in the Service Dashboards as it was higher than it should be.
3513
* Using traces and span tags we found **where the problem is**. The **paymentservice** comprises of two versions, `v350.9` and `v350.10`, and the error rate was **100%** for `v350.10`.

content/en/s4r/7-log-observer/3-log-timeline-chart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ First, we will reduce the amount of information to just the columns we are inter
2121
* Click **Save** and select **Save to Dashboard**.
2222
![save it](../images/save-query.png)
2323
* In the chart creation dialog box that appears, enter the **Chart name**, this will be the name of the chart on the dashboard. Use the following format: `Initials - Log Timeline Chart`
24-
* Ensure **Log Timeline** is selected as the **Chart Type**.
24+
* Ensure that **Log Timeline** is selected as the **Chart Type**.
2525
![log timeline](../images/log-timeline.png?classes=left&width=25vw)
2626
* Click {{% button style="blue" %}}Select Dashboard{{% /button %}} and then click {{% button style="blue" %}}New Dashboard{{% /button %}} in the Dashboard Selection dialog box.
2727
* In the **New dashboard** dialog box, enter a name for the new dashboard (no need to enter a description). Use the following format: `Initials - Service Health Dashboard` and click {{% button style="blue" %}}Save{{% /button %}}

content/en/s4r/7-log-observer/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ archetype: chapter
77

88
{{% badge icon="clock" color="#ed0090" %}}20 minutes{{% /badge %}}
99

10+
{{% notice icon="user" style="orange" title="Persona" %}}
11+
12+
Remaining in your **back-end developer** role, you need to inspect the logs from your application to determine the root cause of the issue.
13+
14+
{{% /notice %}}
15+
1016
Using the content related to the APM trace (logs) we will now use Splunk Log Observer to drill down further to understand exactly what the problem is.
1117

1218
Related Content is a powerful feature that allows you to jump from one component to another and is available for **metrics**, **traces** and **logs**.

0 commit comments

Comments
 (0)