Skip to content

Commit

Permalink
Merge pull request #294 from kubescape/buffered-events
Browse files Browse the repository at this point in the history
Increase buffer size
  • Loading branch information
David Wertenteil authored May 28, 2024
2 parents dd255f4 + 7bfc3dc commit 47854c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/containerwatcher/v1/container_watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -290,11 +290,11 @@ func CreateIGContainerWatcher(cfg config.Config, applicationProfileManager appli

// Channels
capabilitiesWorkerChan: make(chan *tracercapabilitiestype.Event, 1000),
execWorkerChan: make(chan *tracerexectype.Event, 1000),
openWorkerChan: make(chan *traceropentype.Event, 100000),
networkWorkerChan: make(chan *tracernetworktype.Event, 50000),
dnsWorkerChan: make(chan *tracerdnstype.Event, 10000),
randomxWorkerChan: make(chan *tracerandomxtype.Event, 500),
execWorkerChan: make(chan *tracerexectype.Event, 10000),
openWorkerChan: make(chan *traceropentype.Event, 500000),
networkWorkerChan: make(chan *tracernetworktype.Event, 500000),
dnsWorkerChan: make(chan *tracerdnstype.Event, 100000),
randomxWorkerChan: make(chan *tracerandomxtype.Event, 5000),

// cache
ruleBindingPodNotify: ruleBindingPodNotify,
Expand Down

0 comments on commit 47854c6

Please sign in to comment.