diff --git a/internal/pkg/instrumentation/utils/ebpf.go b/internal/pkg/instrumentation/utils/ebpf.go index 3cad8d98d..d120479b1 100644 --- a/internal/pkg/instrumentation/utils/ebpf.go +++ b/internal/pkg/instrumentation/utils/ebpf.go @@ -33,7 +33,7 @@ func LoadEBPFObjects(spec *ebpf.CollectionSpec, to interface{}, opts *ebpf.Colle // Getting full verifier log is expensive, so we only do it if the user explicitly asks for it. showVerifierLogs := shouldShowVerifierLogs() if showVerifierLogs { - opts.Programs.LogSize = ebpf.DefaultVerifierLogSize * 100 + opts.Programs.LogSize = ebpf.DefaultVerifierLogSize * 10000 opts.Programs.LogLevel = ebpf.LogLevelInstruction | ebpf.LogLevelBranch | ebpf.LogLevelStats }