Hi,
I'm looking at real time monitoring with netdata.
Looking at the network interfaces I get docker0<code> rather than the name of the container.
Is there any way to get it to provide the container's name? If not how would I look trace it back to a container?
My docker compose:
I'm looking at real time monitoring with netdata.
Looking at the network interfaces I get docker0<code> rather than the name of the container.
Is there any way to get it to provide the container's name? If not how would I look trace it back to a container?
My docker compose:
Any help greatly appreciated.version: '3'
services:
netdata:
image: netdata/netdata
container_name: netdata
ports:
- 19999:19999
restart: unless-stopped
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- /volume2/docker/netdata/config:/etc/netdata
- /volume2/docker/netdata/lib:/var/lib/netdata
- /volume2/docker/netdata/cache:/var/cache/netdata
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /var/run/docker.sock:/var/run/docker.sock:ro