Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions daemon/aicode_otel_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,8 @@ func mapEventName(name string, source string) string {
return model.AICodeEventApiRequest
case "codex.api_error":
return model.AICodeEventApiError
case "codex.tool_decision":
return model.AICodeEventToolDecision
case "codex.exec_command":
return model.AICodeEventExecCommand
case "codex.conversation_starts":
Expand Down
1 change: 1 addition & 0 deletions daemon/aicode_otel_processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ func TestMapEventName_Codex(t *testing.T) {
{"codex.tool_result", model.AICodeEventToolResult},
{"codex.api_request", model.AICodeEventApiRequest},
{"codex.api_error", model.AICodeEventApiError},
{"codex.tool_decision", model.AICodeEventToolDecision},
{"codex.exec_command", model.AICodeEventExecCommand},
{"codex.conversation_starts", model.AICodeEventConversationStarts},
{"codex.sse_event", model.AICodeEventSSEEvent},
Expand Down