summaryrefslogtreecommitdiff
path: root/internal/config/buffers.go
blob: 61986d8f16dac1f3d5ea120098f271a17e399ace (plain)
1
2
3
4
5
6
7
8
9
10
package config

const (
	// DefaultChannelBufferSize is the shared default for high-volume trace and
	// TUI event channels.
	DefaultChannelBufferSize = 4096

	// DefaultEventMapSize is the default BPF event ring-buffer map size.
	DefaultEventMapSize = DefaultChannelBufferSize * 16
)