Audit: - docs/AUDIT-2026-05-25.md: full protocol audit covering 8 findings (4 critical, 2 high, 5 medium, 4 low) with code references and fix effort estimates - vault/Audit/Tasks.md: Obsidian Tasks plugin file tracking all audit items with priorities, due dates, and per-step checklists Architecture docs updated for Wire format v2 and Wave 5/6 features: - ARCHITECTURE.md: adds wzp-video to dependency graph and project structure; wire format updated to v2 (16B header, 5B MiniHeader); relay concurrency section corrected (DashMap+RwLock is current, not a future optimization); test count 571→702; Android note - PROGRESS.md: Wave 5 and Wave 6 sections appended; test count 372→702; current status and open blockers as of 2026-05-25 - ROAD-TO-VIDEO.md: implementation status table inserted (✅/🟡/🔴/🔲 per phase); 6-step critical path to first video call - WZP-SPEC.md: MediaHeader updated to v2 (16B byte-aligned); MiniHeader updated to 5B with seq_delta; codec IDs 9-12 added (H.264/H.265/AV1); version negotiation section added Obsidian vault (vault/): - 114 files across Architecture/, PRDs/, Reports/, Android/, Reference/, Audit/ with YAML frontmatter - 00 - Home.md index note with wiki links - .obsidian/app.json config Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3.0 KiB
3.0 KiB
tags, type, status
| tags | type | status | ||
|---|---|---|---|---|
|
report | Pending Review |
T2.6 — Prometheus metrics for conformance
Status: Pending Review Agent: Kimi Code CLI Started: 2026-05-11T17:45Z Completed: 2026-05-11T17:55Z Commit: 846c98e PRD: ../PRD-relay-conformance.md
What I changed
-
crates/wzp-relay/src/metrics.rs:- Updated
conformance_violations: IntCounterVeclabels from["violation_type"]to["tier", "codec_id", "media_type", "verdict"]. - Added
conformance_bytes: HistogramVec— packet size distribution, labelmedia_type. - Added
conformance_iat_ms: HistogramVec— inter-arrival time distribution, labelmedia_type. - Added
record_conformance(header, payload_len, iat_ms, violation)helper:- Records bytes + IAT histograms on every packet.
- Increments violation counter (with full labels) only on violations.
- Updated
-
crates/wzp-relay/src/room.rs:- Both
run_participant_plainandrun_participant_trunkedcallmetrics.record_conformance()on every incoming packet. recv_gap_ms(already computed for gap logging) is reused as the IAT measurement.
- Both
Why these choices
Histograms are recorded per-packet so operators can see the full distribution of traffic, not just the abusive tail. The media_type label separates audio, video, data, and control traffic without over-labeling (codec_id on histograms would create too many time-series).
The violation counter uses four labels:
tier— "A", "B", or "C" (which conformance check failed)codec_id—Debugrepresentation (e.g., "Opus24k")media_type—Debugrepresentation (e.g., "Audio")verdict—Debugrepresentation ofViolationenum
This gives operators enough dimensions to correlate violations with specific codecs and traffic types.
Deviations from the task spec
None.
Verification output
$ cargo test -p wzp-relay conformance
running 10 tests
...(all 10 pass)...
test result: ok. 10 passed; 0 failed; 0 ignored; 0 measured; 76 filtered out; finished in 0.00s
$ cargo test -p wzp-relay
running 86 tests
...(all 86 pass)...
test result: ok. 86 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
Test summary
- Tests added: 0 (metrics are exercised indirectly by conformance tests)
- Tests modified: 0
wzp-relaytest count: 86 (unchanged)cargo clippy -p wzp-relay --lib: pass (no new warnings)cargo fmt --all -- --check: pass
Risks / follow-ups
- Histogram cardinality is bounded:
media_typehas 4 values, soconformance_bytesandconformance_iat_mseach produce 4 time-series. Safe for Prometheus. - Violation counter cardinality:
tier(3) ×codec_id(~9) ×media_type(4) ×verdict(3) = ~324 max combinations. In practice, most participants use only 1-2 codecs, so actual cardinality is much lower.
Reviewer checklist (filled in by reviewer)
- Code matches PRD intent
- Verification output is real
- No backward-incompat surprises
- Tests cover the new behavior
- Approved