Skip to content

Commit 8b44856

Browse files
authored
Remove localhost hyperlinks
1 parent 8dbaf3c commit 8b44856

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/core/diagnostics/observability-with-otel.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Observability in the context of a distributed system is the ability to monitor a
1515

1616
Observability is commonly done using a combination of:
1717

18-
- Logs - record individual operations, such as an incoming request, a failure in a specific component, or an order being placed.
19-
- Metrics - measuring counters and gauges such as number of completed requests, active requests, widgets that have been sold; or a histogram of the request latency.
20-
- Distributed tracing - track requests and activities across components in a distributed system so that you can see where time is spent and track down specific failures.
18+
- Logs, which record individual operations, such as an incoming request, a failure in a specific component, or an order being placed.
19+
- Metrics, which are measuring counters and gauges such as number of completed requests, active requests, widgets that have been sold; or a histogram of the request latency.
20+
- Distributed tracing, which tracks requests and activities across components in a distributed system so that you can see where time is spent and track down specific failures.
2121

2222
Together, logs, metrics, and distributed tracing are known as the *3 pillars of observability*.
2323

@@ -282,7 +282,7 @@ Select the `greetings_count` metric to see a graph of values.
282282

283283
Grafana is a dashboarding product that can create dashboards and alerts based on Prometheus or other data sources.
284284

285-
Download and install the OSS version of Grafana from [https://grafana.com/oss/grafana/](https://grafana.com/oss/grafana/) following the instructions for your platform. Once installed, Grafana is typically run on port 3000, so open [`http://localhost:3000`](http://localhost:3000) in your browser. You will need to log in; the default username and password are both `admin`.
285+
Download and install the OSS version of Grafana from [https://grafana.com/oss/grafana/](https://grafana.com/oss/grafana/) following the instructions for your platform. Once installed, Grafana is typically run on port 3000, so open `http://localhost:3000` in your browser. You will need to log in; the default username and password are both `admin`.
286286

287287
From the hamburger menu choose connections, and then enter the text `prometheus` to select your endpoint type. Select **Create a Prometheus data source** to add a new data source.
288288

@@ -349,7 +349,7 @@ Open the `AppSettings.json` file for our project, and add the following line, ch
349349

350350
Restart the greeter process so that it can pick up the property change and start directing tracing information to Jaeger.
351351

352-
Now, you should be able to see the Jaeger UI at [`http://localhost:16686/`](http://localhost:16686/) from a web browser.
352+
Now, you should be able to see the Jaeger UI at `http://localhost:16686/` from a web browser.
353353

354354
[![Jaeger query for traces](./media/jaeger-search-results.thumb.png)](./media/jaeger-search-results.png#lightbox)
355355

0 commit comments

Comments
 (0)