[PATCH 4/6] blktests: add monitor-results support for interim monitoring
Daniel Gomez <[email protected]>
| Newsgroups | dev.linux.lists.kdevops |
|---|---|
| Message-ID | <[email protected]> |
From: Daniel Gomez <[email protected]> Add monitor-results target to blktests workflow Makefile to support interim monitoring data collection without stopping monitoring services. This brings blktests in line with fstests workflow monitoring support. The target uses the existing monitor-results.yml playbook with proper extra_vars and host limiting support. Generated-by: Claude AI Signed-off-by: Daniel Gomez <[email protected]> --- workflows/blktests/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/workflows/blktests/Makefile b/workflows/blktests/Makefile index 6acb3a71..047aba3b 100644 --- a/workflows/blktests/Makefile +++ b/workflows/blktests/Makefile @@ -113,6 +113,12 @@ blktests-dev-results: --extra-vars '{ kdevops_run_blktests: True }' \ --extra-vars=@./extra_vars.yaml $(LIMIT_HOSTS) +monitor-results: $(KDEVOPS_EXTRA_VARS) + $(Q)ansible-playbook $(ANSIBLE_VERBOSE) \ + playbooks/monitor-results.yml \ + --extra-vars=@./extra_vars.yaml \ + $(LIMIT_HOSTS) + blktests-help-menu: @echo "blktests options:" @echo "blktests - Git clones blktests, builds and install it" @@ -122,6 +128,7 @@ blktests-help-menu: @echo "blktests-dev-results - Only collect results for dev hosts" @echo "blktests-baseline-skip-kdevops-update - Run blktests but skip updating kdevops" @echo "blktests-baseline-run-oscheck-only - Only run oscheck" + @echo "monitor-results - Collect interim monitoring data without stopping monitoring" @echo "" HELP_TARGETS += blktests-help-menu -- 2.50.1