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: src/content/docs/identityserver/diagnostics/otel.md
+35-9Lines changed: 35 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,20 +19,20 @@ redirect_from:
19
19
Added in Duende IdentityServer v6.1 and expanded in v7.0
20
20
:::
21
21
22
-
[OpenTelemetry](https://opentelemetry.io) is a collection of tools, APIs, and SDKs for generating and collecting
22
+
[OpenTelemetry](https://opentelemetry.io)(OTel) is a collection of tools, APIs, and SDKs for generating and collecting
23
23
telemetry data (metrics, logs, and traces). This is very useful for analyzing software performance and behavior,
24
24
especially in highly distributed systems.
25
25
26
-
.NET 8 comes with first class support for OpenTelemetry. IdentityServer emits traces, metrics, and logs.
27
26
28
-
### Metrics
27
+
##OpenTelemetry Signals
29
28
30
-
Metrics are high level statistic counters. They provide an aggregated overview and can be used to set monitoring rules.
29
+
OpenTelemetry signals are the information collected and processed to describe the internal activity of the system. The most common signals are traces, metrics, and logs.
31
30
32
-
### Logs
31
+
.NET 8+ comes with first class support for OpenTelemetry. IdentityServer emits traces, metrics, and logs you can collect.
32
+
33
+
### Metrics
33
34
34
-
OpenTelemetry in .NET 8 exports the logs written to the standard ILogger system. The logs are augmented with
35
-
trace ids to be able to correlate log entries with traces.
35
+
Metrics are high level statistic counters. They provide an aggregated overview and can be used to set monitoring rules.
36
36
37
37
### Traces
38
38
@@ -45,20 +45,46 @@ IdentityServer to get a new access token and then calls the API. The API reads t
0 commit comments