diff --git a/pkg/dynamicinstrumentation/ditypes/config.go b/pkg/dynamicinstrumentation/ditypes/config.go index bd0a9b426e30e..3614a6754e30f 100644 --- a/pkg/dynamicinstrumentation/ditypes/config.go +++ b/pkg/dynamicinstrumentation/ditypes/config.go @@ -29,7 +29,7 @@ const ConfigBPFProbeID = "config" // ConfigBPFProbeID is the ID used for the con var ( CaptureParameters = true // CaptureParameters is the default value for if probes should capture parameter values ArgumentsMaxSize = 10000 // ArgumentsMaxSize is the default size in bytes of the output buffer used for param values - StringMaxSize = 64 // StringMaxSize is the default size in bytes of a single string + StringMaxSize = 512 // StringMaxSize is the length limit MaxReferenceDepth uint8 = 4 // MaxReferenceDepth is the default depth that DI will traverse datatypes for capturing values MaxFieldCount = 20 // MaxFieldCount is the default limit for how many fields DI will capture in a single data type SliceMaxLength = 10 // SliceMaxLength is the default limit in number of elements of a slice