I've got some containers on docker running and im accessing them but it isnt showing as connected on the logs and therefore is shutting down while they are in use. in the spoiler has the a snippet from one of the logs while in fake mode. is there any extra config i have to do on docker for it to pick up the activity on those ports?
Code
May 4 19:18:01 server autoshutdown[385904]: root: INFO: 'FAKE-Mode: main(): New supervision cycle started, checking system activity'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: __run_check(): Calling: _check_net_status()'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 22: Found active connections:'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): tcp 0 0 192.168.1.24:ssh 192.168.1.16:62508'
May 4 19:18:01 server autoshutdown[385904]: root: INFO: 'FAKE-Mode: _check_net_status(): Found 1 active connection(s) on port 22 (SSH) from: 192.168.1.16'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 80: Found active connections:'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): tcp 0 0 192.168.1.24:http 192.168.1.16:62510'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): tcp 0 0 192.168.1.24:http 192.168.1.16:62511'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): tcp 0 0 192.168.1.24:http 192.168.1.16:62512'
May 4 19:18:01 server autoshutdown[385904]: root: INFO: 'FAKE-Mode: _check_net_status(): Found 3 active connection(s) on port 80 (HTTP) from: 192.168.1.16'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 81: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 90: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 445: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 7878: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 8000: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 8096: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 8920: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 8989: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: DEBUG: 'FAKE-Mode: _check_net_status(): Port 9000: Found no active connections'
May 4 19:18:01 server autoshutdown[385904]: root: INFO: 'FAKE-Mode: _check_net_status(): Found 4 active socket(s) from port(s): 22,80,81,90,445,7878,8000,8096,8920,8989,9000'
May 4 19:18:01 server autoshutdown[385904]: root: INFO: 'FAKE-Mode: main(): Active check failed, 5 cycles until shutdown ...'
May 4 19:18:01 server autoshutdown[385904]: root: INFO: 'FAKE-Mode: main(): Sleep for 60s'
Display More