Disable connection self-check as it uses the old process detection

This commit is contained in:
Daniel 2023-08-11 11:55:29 +02:00
parent 8138a2aa4c
commit 9ccdfad328

View file

@ -31,7 +31,9 @@ type deciderFn func(context.Context, *network.Connection, *profile.LayeredProfil
var defaultDeciders = []deciderFn{ var defaultDeciders = []deciderFn{
checkPortmasterConnection, checkPortmasterConnection,
checkSelfCommunication, // TODO: This is currently very slow.
// Find a way to improve performance using the eBPF data.
// checkSelfCommunication,
checkIfBroadcastReply, checkIfBroadcastReply,
checkConnectionType, checkConnectionType,
checkConnectionScope, checkConnectionScope,