Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cli/cmd/gotls.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ func goTLSCommandFunc(command *cobra.Command, args []string) error {
gotlsConfig.SetBTF(globalConf.BtfMode)
gotlsConfig.SetPerCpuMapSize(globalConf.PerCpuMapSize)
gotlsConfig.SetTruncateSize(globalConf.TruncateSize)
gotlsConfig.SetEventCollectorAddr(globalConf.EventCollectorAddr)
// Run probe using the common entry point
return runProbe(factory.ProbeTypeGoTLS, gotlsConfig)
}
1 change: 1 addition & 0 deletions cli/cmd/tls.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ func openSSLCommandFunc(command *cobra.Command, args []string) error {
opensslConfig.SetBTF(globalConf.BtfMode)
opensslConfig.SetPerCpuMapSize(globalConf.PerCpuMapSize)
opensslConfig.SetTruncateSize(globalConf.TruncateSize)
opensslConfig.SetEventCollectorAddr(globalConf.EventCollectorAddr)

// Run probe using the common entry point
return runProbe(factory.ProbeTypeOpenSSL, opensslConfig)
Expand Down
Loading