From a6066182d3c38c56a367c65bac5fe31398ced999 Mon Sep 17 00:00:00 2001 From: Karl Rister Date: Tue, 20 Aug 2024 16:29:54 -0500 Subject: [PATCH] increase the number of get metric queries and add additional complexity to the integration test action - use additional breakout fields to add complexity and require more processing --- .github/actions/integration-tests/run-ci-stage1 | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/actions/integration-tests/run-ci-stage1 b/.github/actions/integration-tests/run-ci-stage1 index 880b04e..f2dd0fb 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}