fix(process-check): support Alpine Linux ps command - #89
Merged
Conversation
Replaced unsupported `ps -efww` with `ps -eo pid,args` for BusyBox compatibility. Moved filtering logic to PHP/grep to ensure reliable process detection on Alpine-based containers. Signed-off-by: pierreboissinot <pierre.boissinot@lephare.com>
pierreboissinot
force-pushed
the
process-alpine
branch
from
August 18, 2025 11:33
c137e56 to
818fdc7
Compare
Signed-off-by: pierreboissinot <pierre.boissinot@lephare.com>
pierreboissinot
force-pushed
the
process-alpine
branch
from
August 18, 2025 11:38
bf15a2a to
de80218
Compare
Member
|
Could you point to documentation somewhere about new command usage? Add reference comment on the code with Thank you. |
Signed-off-by: pierreboissinot <pierre.boissinot@lephare.com>
pierreboissinot
force-pushed
the
process-alpine
branch
from
August 18, 2025 12:40
0e69149 to
aee33e5
Compare
Member
|
@samsonasik Can you please merge if this is good to go? |
samsonasik
approved these changes
Dec 8, 2025
Member
|
@gsteel sure, I changed target branch to 1.29.x |
Member
|
Thank you @pierreboissinot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Replaced unsupported
ps -efwwwithps -eo pid,argsfor BusyBox compatibility. Moved filtering logic to PHP/grep to ensure reliable process detection on Alpine-based containers.