Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
k-rister committed Aug 20, 2024
1 parent 3dad7ea commit 518b3a0
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
@@ -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}

0 comments on commit 518b3a0

Please sign in to comment.