Skip to content

Commit

Permalink
Merge pull request #2739 from weaveworks/bump-default-conntrack-buffe…
Browse files Browse the repository at this point in the history
…rsize

increase default conntrack buffer size
  • Loading branch information
rade authored Jul 25, 2017
2 parents 518a0e2 + 9cc6cdb commit ea85296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prog/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ func setupFlags(flags *flags) {

// Proc & endpoint
flag.BoolVar(&flags.probe.useConntrack, "probe.conntrack", true, "also use conntrack to track connections")
flag.IntVar(&flags.probe.conntrackBufferSize, "probe.conntrack.buffersize", 208*1024, "conntrack buffer size")
flag.IntVar(&flags.probe.conntrackBufferSize, "probe.conntrack.buffersize", 4096*1024, "conntrack buffer size")
flag.BoolVar(&flags.probe.spyProcs, "probe.proc.spy", true, "associate endpoints with processes (needs root)")
flag.StringVar(&flags.probe.procRoot, "probe.proc.root", "/proc", "location of the proc filesystem")
flag.BoolVar(&flags.probe.procEnabled, "probe.processes", true, "produce process topology & include procspied connections")
Expand Down

0 comments on commit ea85296

Please sign in to comment.