diff --git a/pkg/maps/lxcmap/lxcmap.go b/pkg/maps/lxcmap/lxcmap.go index 505902f083ef73..deb81c9af00f91 100644 --- a/pkg/maps/lxcmap/lxcmap.go +++ b/pkg/maps/lxcmap/lxcmap.go @@ -163,13 +163,14 @@ func (v *EndpointInfo) String() string { return "(localhost)" } - return fmt.Sprintf("id=%-5d sec_id=%-5d flags=0x%04X ifindex=%-3d mac=%s nodemac=%s", + return fmt.Sprintf("id=%-5d sec_id=%-5d flags=0x%04X ifindex=%-3d mac=%s nodemac=%s parent_ifindex=%-3d", v.LxcID, v.SecID, v.Flags, v.IfIndex, v.MAC, v.NodeMAC, + v.ParentIfIndex, ) }