From 20eaa5aa949a3c9d8376d778aaef76179918892d Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 19:29:49 +0000 Subject: [PATCH] Add telemetry for stack trace view (#49642) (cherry-pick to preview) (#49644) Cherry-pick of #49642 to preview ---- Release Notes: - N/A Co-authored-by: Cole Miller --- Cargo.lock | 1 + crates/debugger_ui/Cargo.toml | 1 + crates/debugger_ui/src/stack_trace_view.rs | 2 ++ 3 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 95ed1ba504af2fcc6c54766128884151b20a98b1..aa3f6a0ec0457e1eaadebfced815eda0e8a66541 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4642,6 +4642,7 @@ dependencies = [ "sysinfo 0.37.2", "task", "tasks_ui", + "telemetry", "terminal_view", "text", "theme", diff --git a/crates/debugger_ui/Cargo.toml b/crates/debugger_ui/Cargo.toml index f95712b05129b7f86699f658c4c2c3effbd7d216..fb79b1b0790b28d7204774720bf9c413cfed64e6 100644 --- a/crates/debugger_ui/Cargo.toml +++ b/crates/debugger_ui/Cargo.toml @@ -64,6 +64,7 @@ settings.workspace = true sysinfo.workspace = true task.workspace = true tasks_ui.workspace = true +telemetry.workspace = true terminal_view.workspace = true text.workspace = true theme.workspace = true diff --git a/crates/debugger_ui/src/stack_trace_view.rs b/crates/debugger_ui/src/stack_trace_view.rs index adefa5e499341fb4f4a3a89eb1f18579721794b6..02d6e793f290863cc002101bba00ac7a46446bb7 100644 --- a/crates/debugger_ui/src/stack_trace_view.rs +++ b/crates/debugger_ui/src/stack_trace_view.rs @@ -47,6 +47,8 @@ impl StackTraceView { window: &mut Window, cx: &mut Context, ) -> Self { + telemetry::event!("Stack Trace View Deployed"); + let multibuffer = cx.new(|_| MultiBuffer::new(Capability::ReadWrite)); let editor = cx.new(|cx| { let mut editor =