This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git
The following commit(s) were added to refs/heads/master by this push:
new 83223659194 HDDS-15660. Skip prometheus container during stack
collection (#10631)
83223659194 is described below
commit 832236591945494039d946f6513403ba1e6945ab
Author: Chi-Hsuan Huang <[email protected]>
AuthorDate: Mon Jun 29 23:00:56 2026 +0800
HDDS-15660. Skip prometheus container during stack collection (#10631)
---
hadoop-ozone/dist/src/main/compose/testlib.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hadoop-ozone/dist/src/main/compose/testlib.sh
b/hadoop-ozone/dist/src/main/compose/testlib.sh
index 903fdad7de3..3c31de9b484 100755
--- a/hadoop-ozone/dist/src/main/compose/testlib.sh
+++ b/hadoop-ozone/dist/src/main/compose/testlib.sh
@@ -290,7 +290,7 @@ reorder_om_nodes() {
## @description Create stack dump of each java process in each container
create_stack_dumps() {
local c pid procname
- for c in $(docker-compose ps | cut -f1 -d' ' | grep -e datanode -e om -e
recon -e s3g -e scm); do
+ for c in $(docker-compose ps | cut -f1 -d' ' | grep -e datanode -e om -e
recon -e s3g -e scm | grep -v -e prometheus); do
while read -r pid procname; do
echo "jstack $pid > ${RESULT_DIR}/${c}_${procname}.stack"
docker exec "${c}" bash -c "jstack $pid" >
"${RESULT_DIR}/${c}_${procname}.stack"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]