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
|[actix-settings]|[](https://crates.io/crates/actix-settings)[](https://deps.rs/crate/actix-settings)| Easily manage Actix Web's settings from a TOML file and environment variables. |
|[actix-ws]|[][actix-ws][](https://deps.rs/crate/actix-ws)| WebSockets for Actix Web, without actors. |
26
+
|[tracing-actix-web]|[][tracing-actix-web][](https://deps.rs/crate/tracing-actix-web)| Structured logging middleware for actix-web. |
26
27
27
28
---
28
29
@@ -42,7 +43,6 @@ These crates are provided by the community.
42
43
|[aliri_actix]|[][aliri_actix][](https://deps.rs/crate/aliri_actix)| Endpoint authorization and authentication using scoped OAuth2 JWT tokens. |
43
44
|[actix-web-flash-messages]|[][actix-web-flash-messages][](https://deps.rs/crate/actix-web-flash-messages)| Support for flash messages/one-time notifications in `actix-web`. |
44
45
|[awmp]|[][awmp][](https://deps.rs/crate/awmp)| An easy to use wrapper around multipart fields for Actix Web. |
45
-
|[tracing-actix-web]|[][tracing-actix-web][](https://deps.rs/crate/tracing-actix-web)| A middleware to collect telemetry data from applications built on top of the Actix Web framework. |
46
46
|[actix-hash]|[][actix-hash][](https://deps.rs/crate/actix-hash)| Hashing utilities for Actix Web. |
47
47
|[actix-bincode]|[](https://deps.rs/crate/actix-bincode)| Bincode payload extractor for Actix Web. |
48
48
|[sentinel-actix]|[](https://deps.rs/crate/sentinel-actix)| General and flexible protection for Actix Web. |
Copy file name to clipboardExpand all lines: tracing-actix-web/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ fn main() {
84
84
}
85
85
```
86
86
87
-
Check out [the examples on GitHub](https://github.com/LukeMathWalker/tracing-actix-web/tree/main/examples) to get a taste of how [`TracingLogger`] can be used to observe and monitor your
87
+
Check out [the examples on GitHub](https://github.com/actix/tracing-actix-web/tree/main/examples) to get a taste of how [`TracingLogger`] can be used to observe and monitor your
88
88
application.
89
89
90
90
# From zero to hero: a crash course in observability
@@ -312,7 +312,7 @@ You can then find all logs for the same request across all the services it touch
312
312
If you add [`tracing-opentelemetry::OpenTelemetryLayer`](https://docs.rs/tracing-opentelemetry/0.17.0/tracing_opentelemetry/struct.OpenTelemetryLayer.html)
313
313
in your `tracing::Subscriber` you will be able to export the root span (and all its children) as OpenTelemetry spans.
314
314
315
-
Check out the [relevant example in the GitHub repository](https://github.com/LukeMathWalker/tracing-actix-web/tree/main/examples/opentelemetry) for reference.
315
+
Check out the [relevant example in the GitHub repository](https://github.com/actix/tracing-actix-web/tree/main/examples/opentelemetry) for reference.
0 commit comments