Skip to content

Commit

Permalink
increase the number of get metric queries and add additional complexi…
Browse files Browse the repository at this point in the history
…ty to the integration test action

- use additional breakout fields to add complexity and require more
  processing
  • Loading branch information
k-rister committed Aug 20, 2024
1 parent 3dad7ea commit a606618
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/actions/integration-tests/run-ci-stage1
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,15 @@ function post_run_cmd {

period_id=$(echo "${line}" | awk '{ print $1 }')

run_cmd "crucible get metric --run ${run_id} --period ${period_id} --source mpstat --type Busy-CPU --breakout cstype,csid"

run_cmd "crucible get metric --run ${run_id} --period ${period_id} --source procstat --type interrupts-sec --breakout cstype,csid"
query="crucible get metric --run ${run_id} --period ${period_id} --source mpstat --type Busy-CPU --breakout cstype,csid"
run_cmd "${query}"
query+=",num,type"
run_cmd "${query}"

query="crucible get metric --run ${run_id} --period ${period_id} --source procstat --type interrupts-sec --breakout cstype,csid"
run_cmd "${query}"
query+=",irq,type,cpu"
run_cmd "${query}"

echo
done 9< ${tmp_file}
Expand Down

0 comments on commit a606618

Please sign in to comment.