diff --git a/pkg/falcon/extractor.go b/pkg/falcon/extractor.go index 02c0e64..1e9bd56 100644 --- a/pkg/falcon/extractor.go +++ b/pkg/falcon/extractor.go @@ -223,6 +223,11 @@ func GetMessages(config *config.Config, ctx context.Context) (results map[string for _, detail := range allHostDetails { + // skip all cloud sensors since those are auto-managed + if detail.ServiceProvider != "" { + continue + } + email, err := findEmailTag(detail.Tags, config.Email.Domains) if err != nil || email == "" { email = "_NOTAG/" + detail.Hostname