vow-tracing
vow-tracing names root and child spans for distributed tracing — labels only in v0.1. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-tracingvpm installQuick start
Section titled “Quick start”import vtrace from vow_tracing
fn main(caps: Caps) -> int { let root = vtrace.span("main"); print vtrace.child(root, "step"); return 0;}Run tests
Section titled “Run tests”cd vow-libs/vow-tracing && vow test tests/tracing.vow