memories/write/src/metrics.rs
11 lines
pub(crate) const MEMORY_STARTUP: &str = "codex.memory.startup";pub(crate) const MEMORY_PHASE_ONE_JOBS: &str = "codex.memory.phase1";pub(crate) const MEMORY_PHASE_ONE_E2E_MS: &str = "codex.memory.phase1.e2e_ms";pub(crate) const MEMORY_PHASE_ONE_OUTPUT: &str = "codex.memory.phase1.output";pub(crate) const MEMORY_PHASE_ONE_TOKEN_USAGE: &str = "codex.memory.phase1.token_usage";pub(crate) const MEMORY_PHASE_TWO_JOBS: &str = "codex.memory.phase2";pub(crate) const MEMORY_PHASE_TWO_E2E_MS: &str = "codex.memory.phase2.e2e_ms";pub(crate) const MEMORY_PHASE_TWO_INPUT: &str = "codex.memory.phase2.input";pub(crate) const MEMORY_PHASE_TWO_TOKEN_USAGE: &str = "codex.memory.phase2.token_usage";