Open vvuk opened 1 year ago
Forgot to mention -- for some reason setting display.show_children_in_tree
to false doesn't hide the Edge children above.
@vvuk Nice feature request. I came here looking for help on simple fixed string exclusion, which I think is possible in the current version 0.14. For example, to list bash
but not -bash
. Do you know if this is possible?
Many times I want to basically do
ps -ef | grep foo
and get a specific foo's pid. However, sometimes foo actually spawns a million child processes, and I really only care about some specific ones where "some" might be the primary parent process, but might also be a subset of child processes. So, two features:with the new option, should only show process 11101 and 11103 (because 11103 is not a child of 11101, unlike all the other framework processes).
--exclude
that takes a regexp argument, that filters out processes whose command lines match the regex. In the above example, adding--filter-out handshake-fd
would also filter out process 11103, because it contains "handshake-fd".While we're at it, could make the default keyword search a regex as well!