diff --git a/probe/endpoint/reporter.go b/probe/endpoint/reporter.go index 99c3742e2..dfb239c7c 100644 --- a/probe/endpoint/reporter.go +++ b/probe/endpoint/reporter.go @@ -160,6 +160,10 @@ func (r *Reporter) Report() (report.Report, error) { fromNodeInfo[process.PID] = strconv.Itoa(e.Pid) fromNodeInfo[report.HostNodeID] = hostNodeID + switch e.Type { + case Connect, Accept: + r.addConnection(&rpt, tuple, "", fromNodeInfo, toNodeInfo) + } }) }