Skip to content

Commit 7586b84

Browse files
author
Sam Spencer
committed
Merge branch 'samsp/observability' of https://github.com/dotnet/docs into samsp/observability
2 parents 3b87fe8 + 8b44856 commit 7586b84

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

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

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

294-
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`.
294+
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`.
295295

296296
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.
297297

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

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

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

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

0 commit comments

Comments
 (0)