diff --git a/README.md b/README.md index b5d97dfd..4484be2a 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,7 @@ Only the latest version gets security updates. We won't support older versions. * `CWAgent` - CloudWatch agent * `ECS/ContainerInsights` - ECS/ContainerInsights (Fargate metrics) * `Glue` - AWS Glue Jobs + * `CloudWatchSynthetics` - CloudWatch Synthetics ## Feature flags diff --git a/pkg/config/services.go b/pkg/config/services.go index b04b4711..7c451552 100644 --- a/pkg/config/services.go +++ b/pkg/config/services.go @@ -1101,4 +1101,14 @@ var SupportedServices = serviceConfigs{ regexp.MustCompile(":core-network/(?P[^/]+)$"), }, }, + { + Namespace: "CloudWatchSynthetics", + Alias: "synthetics", + ResourceFilters: []*string{ + aws.String("synthetics:canary"), + }, + DimensionRegexps: []*regexp.Regexp{ + regexp.MustCompile(":canary:(?P[^:]+)$"), + }, + }, }