Documentation
¶
Index ¶
Constants ¶
View Source
const ( // DefaultMapRoot is the default path where BPFFS should be mounted DefaultMapRoot = "/sys/fs/bpf" // DefaultMapPrefix is the default path prefix where Tetragon maps should be pinned DefaultMapPrefix = "tetragon" // DefaultEventMap is the default name of the Event map DefaultEventMap = "tcpmon" // DefaultMapRootFallback is the path which is used when /sys/fs/bpf has // a mount, but with the other filesystem than BPFFS. DefaultMapRootFallback = "/run/cilium/bpffs" // DefaultRunDir is the default run directory for runtime DefaultRunDir = "/var/run/tetragon/" // Default Path to where cgroup2 is mounted (Prefix with /run) Cgroup2Dir = "/run/tetragon/cgroup2" // DedfaultNetnsDir is the default network namespace directory for runtime DefaultNetnsDir = "/var/run/docker/netns/" // Default kernel exposed BTF file path DefaultBTFFile = "/sys/kernel/btf/vmlinux" // Default location for BPF programs and BTF files DefaultTetragonLib = "/var/lib/tetragon/" // InitInfoFile is the file location for the info file. // After initialization, InitInfoFile will contain a json representation of InitInfo // Used by both client cli to guess unix socket address and by bugtool InitInfoFile = DefaultRunDir + "tetragon-info.json" // BugtoolExtraFiles is the file location for extra files to include in bugtool archives. // Written by the daemon at startup, read by the CLI at bugtool time. BugtoolExtraFiles = DefaultRunDir + "tetragon-bugtool-extra-files.json" // Default directory from where to load tracing policies. DefaultTpDir = "/etc/tetragon/tetragon.tp.d" // Default secure export logs permissions DefaultLogsPermission = "600" // Pid file where to write tetragon main PID DefaultPidFile = DefaultRunDir + "tetragon.pid" // defaults for the event cache DefaultEventCacheNumRetries = 15 DefaultEventCacheRetryDelay = 2 // defaults for the process cache DefaultProcessCacheGCInterval = 30 * time.Second // defaults for the {k,u}retprobes lru cache DefaultRetprobesCacheSize = 4096 // DefaultMaxGRPCRecvMsgSize is the default maximum gRPC receive message // size for the tetra CLI (10MB). DefaultMaxGRPCRecvMsgSize = 10 * 1024 * 1024 )
Variables ¶
View Source
var ( // NetnsDir is the network namespace directory for runtime NetnsDir = DefaultNetnsDir )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.