From e07d0ba2e4aa21853ccc5f9016638f7e5f87bf6c Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Thu, 19 Feb 2026 14:17:11 -0500 Subject: [PATCH] Add telemetry for stack trace view (#49642) Release Notes: - N/A --- 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 800e9e2d2b0feda6b759c8e76f7218c7897dbd8c..4e1ea7131b42f7d3056561f40bfd3a809c6ecf00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4641,6 +4641,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 =