diff --git a/probe/endpoint/connection_tracker.go b/probe/endpoint/connection_tracker.go index 6b66e7780..c437d9719 100644 --- a/probe/endpoint/connection_tracker.go +++ b/probe/endpoint/connection_tracker.go @@ -93,9 +93,7 @@ func (t *connectionTracker) ReportConnections(rpt *report.Report) { // seenTuples contains information about connections seen by conntrack and it will be passed to the /proc parser seenTuples := map[string]fourTuple{} - if t.flowWalker != nil { - t.performFlowWalk(rpt, &seenTuples) - } + t.performFlowWalk(rpt, &seenTuples) if t.conf.WalkProc && t.conf.Scanner != nil { t.performWalkProc(rpt, hostNodeID, &seenTuples) }