Skip to content

Commit

Permalink
Turn on more providers during tracing and do a full dump
Browse files Browse the repository at this point in the history
This notably enables Microsoft-Windows-Win32k which has struct
properties which may have allowed us to catch issue mstange#10 in CI
  • Loading branch information
jrmuizel committed Apr 10, 2024
1 parent da28ff1 commit 7d7e175
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
- name: Run tests
run: cargo test --verbose --lib
- name: Run xperf
run: xperf -on latency -stackwalk profile
run: xperf -start "NT Kernel Logger" -on latency -stackwalk profile+cswitch -start "usersession" -on Microsoft-Windows-Win32k
- name: Stop xperf
run: xperf -d out.etl
run: xperf -stop "NT Kernel Logger" -stop "usersession" -d out.etl
- run: cargo run --example event-types out.etl
- run: cargo run --example dump out.etl
- run: cargo run out.etl xperf
#- run: cargo run -- --merge-threads out.etl xperf

0 comments on commit 7d7e175

Please sign in to comment.