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: docs/core/diagnostics/observability-with-otel.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@ Observability in the context of a distributed system is the ability to monitor a
15
15
16
16
Observability is commonly done using a combination of:
17
17
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.
21
21
22
22
Together, logs, metrics, and distributed tracing are known as the *3 pillars of observability*.
23
23
@@ -291,7 +291,7 @@ Select the `greetings_count` metric to see a graph of values.
291
291
292
292
Grafana is a dashboarding product that can create dashboards and alerts based on Prometheus or other data sources.
293
293
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`.
295
295
296
296
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.
297
297
@@ -358,7 +358,7 @@ Open the `AppSettings.json` file for our project, and add the following line, ch
358
358
359
359
Restart the greeter process so that it can pick up the property change and start directing tracing information to Jaeger.
360
360
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.
362
362
363
363
[](./media/jaeger-search-results.png#lightbox)
0 commit comments