diff --git a/.github/actions/integration-tests/run-ci-stage1 b/.github/actions/integration-tests/run-ci-stage1 index 880b04e..acae5da 100755 --- a/.github/actions/integration-tests/run-ci-stage1 +++ b/.github/actions/integration-tests/run-ci-stage1 @@ -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}