Added "codex." prefix to "conversation.turn.count" metric name (#9594)

All other metrics names start with "codex.", so I presume this was an
unintended omission.
This commit is contained in:
Eric Traut
2026-01-21 02:00:47 -08:00
committed by GitHub
parent a22a61e678
commit 16b9380e99

View File

@@ -2576,7 +2576,7 @@ mod handlers {
.filter(|item| is_user_turn_boundary(item))
.count();
sess.services.otel_manager.counter(
"conversation.turn.count",
"codex.conversation.turn.count",
i64::try_from(turn_count).unwrap_or(0),
&[],
);