From f26c8bcf3167069ccd8ac3beb9185d1bf480a83f Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Tue, 22 Oct 2024 01:41:08 -0700 Subject: refactor(runtime/ops): use concrete error types (#26409) --- runtime/ops/mod.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'runtime/ops/mod.rs') diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs index feed5052b..67065b901 100644 --- a/runtime/ops/mod.rs +++ b/runtime/ops/mod.rs @@ -9,7 +9,6 @@ pub mod process; pub mod runtime; pub mod signal; pub mod tty; -mod utils; pub mod web_worker; pub mod worker_host; -- cgit v1.2.3 From aa546189be730163ee5370029e4dfdb3b454ab96 Mon Sep 17 00:00:00 2001 From: snek Date: Wed, 13 Nov 2024 11:38:46 +0100 Subject: feat: OpenTelemetry Tracing API and Exporting (#26710) Initial import of OTEL code supporting tracing. Metrics soon to come. Implements APIs for https://jsr.io/@deno/otel so that code using OpenTelemetry.js just works tm. There is still a lot of work to do with configuration and adding built-in tracing to core APIs, which will come in followup PRs. --------- Co-authored-by: Luca Casonato --- runtime/ops/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/ops/mod.rs') diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs index 67065b901..c2e402f33 100644 --- a/runtime/ops/mod.rs +++ b/runtime/ops/mod.rs @@ -4,6 +4,7 @@ pub mod bootstrap; pub mod fs_events; pub mod http; pub mod os; +pub mod otel; pub mod permissions; pub mod process; pub mod runtime; -- cgit v1.2.3