With docker networking in one standard configuration, each container has it's own virtual NIC.
I'm interested in monitoring all those simultaneously, scraping IP src and dst address as well as TCP or UDP src and dst port if applicable.
How costly is doing this likely to be?
Is there any way to do what I want which is monitoring just the docker bridge interface when in bridge mode?
When dealing with multiple docker networks communicating with each other via flannel in Kubernetes, I found that many src and dst IP addressee were just the bridge address. (Presumably, the bridge does NAT, but for some reason, I wasn't seeing translation rules under iptables -t nat -L)