From b27bfb1a6da8e57470cdc7e7b9a10cf59073e6a8 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 20 Dec 2025 10:59:33 -0600 Subject: [PATCH] don't wrap string.filter pattern --- internal/processor/string-filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/processor/string-filter.go b/internal/processor/string-filter.go index 52a459f..e8993d0 100644 --- a/internal/processor/string-filter.go +++ b/internal/processor/string-filter.go @@ -49,7 +49,7 @@ func init() { return nil, fmt.Errorf("http.request.filter pattern must be a string") } - patternRegexp, err := regexp.Compile(fmt.Sprintf("^%s$", patternString)) + patternRegexp, err := regexp.Compile(patternString) if err != nil { return nil, err