mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
feat: metrics on shell snapshot (#9527)
This commit is contained in:
@@ -710,10 +710,18 @@ impl Session {
|
||||
let mut default_shell = shell::default_user_shell();
|
||||
// Create the mutable state for the Session.
|
||||
if config.features.enabled(Feature::ShellSnapshot) {
|
||||
let timer = otel_manager.start_timer("codex.shell_snapshot.duration_ms", &[]);
|
||||
default_shell.shell_snapshot =
|
||||
ShellSnapshot::try_new(&config.codex_home, conversation_id, &default_shell)
|
||||
.await
|
||||
.map(Arc::new);
|
||||
let success = if default_shell.shell_snapshot.is_some() {
|
||||
"true"
|
||||
} else {
|
||||
"false"
|
||||
};
|
||||
let _ = timer.map(|timer| timer.record(&[("success", success)]));
|
||||
otel_manager.counter("codex.shell_snapshot", 1, &[("success", success)])
|
||||
}
|
||||
let state = SessionState::new(session_configuration.clone());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user