Artem
05/16/2022, 10:20 AMSELECT * FROM processes WHERE on_disk=0 AND pid NOT IN (SELECT pid FROM docker_container_processes where id=(SELECT id FROM docker_containers))
Using it I can find processes without disk binary on host machine via exclude of processes inside containers.
Bad part of this is the lack of proper detecting processes without binary inside containers.
There is no on_disk
parameter in docker_container_processes
table.
Su currently this detection can work properly only on host machine.alessandrogario
file
table + pid_with_namespace
Artem
05/17/2022, 6:02 PMalessandrogario
Artem
05/17/2022, 6:14 PMdocker_container_processes
table, there is no such column.alessandrogario
Artem
05/17/2022, 6:30 PMalessandrogario
Artem
05/18/2022, 8:16 PM