From d1bf543a6cc74b59f45344293782ea6a50c525ee Mon Sep 17 00:00:00 2001 From: William Dumont Date: Thu, 12 Oct 2023 19:48:29 +0200 Subject: [PATCH] wip --- .github/workflows/integration-tests.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index b18d1f0744a6..9c4434cd0407 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -21,8 +21,10 @@ jobs: run: echo "OTEL_EXPORTER_ENDPOINT=http://172.17.0.1:8080" >> $GITHUB_ENV - name: Run tests run: | - top -b -n 10 -d 5 > top_output.txt & - TOP_PID=$! + vmstat 5 10 > vmstat_output.txt & + VMSTAT_PID=$! cd integration-tests/tests ./run-integration-tests.sh - kill $TOP_PID \ No newline at end of file + kill $VMSTAT_PID + - name: Display vmstat output + run: cat vmstat_output.txt \ No newline at end of file