Browse Source

fix usage of regex.Match in cloudwatch module (#986)

blotus 3 years ago
parent
commit
f0db3742de
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/acquisition/modules/cloudwatch/cloudwatch.go

+ 1 - 1
pkg/acquisition/modules/cloudwatch/cloudwatch.go

@@ -329,7 +329,7 @@ func (cw *CloudwatchSource) LogStreamManager(in chan LogStreamTailConfig, outCha
 			}
 			}
 
 
 			if cw.Config.StreamRegexp != nil {
 			if cw.Config.StreamRegexp != nil {
-				match, err := regexp.Match(newStream.StreamName, []byte(*cw.Config.StreamRegexp))
+				match, err := regexp.Match(*cw.Config.StreamRegexp, []byte(newStream.StreamName))
 				if err != nil {
 				if err != nil {
 					cw.logger.Warningf("invalid regexp : %s", err)
 					cw.logger.Warningf("invalid regexp : %s", err)
 				} else {
 				} else {