Trace Event Format summary CLI
0

Configure Feed

Select the types of activity you want to include in your feed.

Regenerate root files

+7 -6
+1
test/cram/helpers.sh
··· 11 11 -e 's/(fixture.large_alloc.*alloc=)[0-9.]+[kKMGT]?B/\1LARGE/g' \ 12 12 -e 's/(fixture.noalloc.*alloc=)[0-9.]+[kKMGT]?B/\1LOW/g' \ 13 13 -e 's/alloc=[0-9.]+[kKMGT]?B/alloc=BYTES/g' \ 14 + -e 's|\([0-9.]+[kKMGT]?B/s\)|(RATE/s)|g' \ 14 15 -e 's/(gc busy us \\(domain [0-9]+\\) busy[[:space:]]+1)[[:space:]]+[^[:space:]]+[[:space:]]+[^[:space:]]+[[:space:]]+[^[:space:]]+/\1 TIME TIME TIME/g' \ 15 16 -e 's/(ocaml_probe.energy energy_nj[[:space:]]+1)[[:space:]]+[^[:space:]]+[[:space:]]+[^[:space:]]+[[:space:]]+[^[:space:]]+/\1 TIME TIME TIME/g' 16 17 }
+6 -6
test/cram/probe-summary.t/run.t
··· 13 13 14 14 Spans 15 15 16 - fixture.workload n=1 total=TIMEms p50=TIMEms p99=TIMEms max=TIMEms alloc=BYTES 17 - └── fixture.request n=1 total=TIMEms p50=TIMEms p99=TIMEms max=TIMEms alloc=BYTES 16 + fixture.workload n=1 total=TIMEms p50=TIMEms p99=TIMEms max=TIMEms alloc=BYTES bytes=1.2kB (RATE/s) 17 + └── fixture.request n=1 total=TIMEms p50=TIMEms p99=TIMEms max=TIMEms alloc=BYTES bytes=900B (RATE/s) 18 18 ├── fixture.large_alloc n=1 total=TIMEms p50=TIMEms p99=TIMEms max=TIMEms alloc=LARGE 19 19 ├── fixture.noalloc n=1 total=TIMEms p50=TIMEms p99=TIMEms max=TIMEms 20 20 └── fixture.step n=2 total=TIMEms p50=TIMEms p99=TIMEms max=TIMEms alloc=BYTES ··· 34 34 35 35 Event values 36 36 37 - Event value n Sum Mean p50 p99 Max 38 - fixture.io bytes 2 2100 1050.0 900 1200 1200 39 - fixture.result status 1 200 200.0 200 200 200 40 - fixture.result body_bytes 1 42 42.0 42 42 42 37 + Event value n Sum Mean p50 p99 Max 38 + fixture.io bytes 2 2.1kB 1.05kB 900B 1.2kB 1.2kB 39 + fixture.result status 1 200 200 200 200 200 40 + fixture.result body_bytes 1 42B 42B 42B 42B 42B 41 41