Add analytics for /rename and /fork (#10655)

This commit is contained in:
pap-openai
2026-02-05 20:18:29 +00:00
committed by GitHub
parent 5602edc1d0
commit 529b539564
2 changed files with 5 additions and 0 deletions

View File

@@ -3123,6 +3123,7 @@ impl ChatWidget {
self.open_review_popup();
}
SlashCommand::Rename => {
self.otel_manager.counter("codex.thread.rename", 1, &[]);
self.show_rename_prompt();
}
SlashCommand::Model => {
@@ -3342,6 +3343,7 @@ impl ChatWidget {
let trimmed = args.trim();
match cmd {
SlashCommand::Rename if !trimmed.is_empty() => {
self.otel_manager.counter("codex.thread.rename", 1, &[]);
let Some((prepared_args, _prepared_elements)) =
self.bottom_pane.prepare_inline_args_submission(false)
else {