We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e52ee70 commit 39b9c30Copy full SHA for 39b9c30
pkg/falcon/extractor.go
@@ -223,6 +223,11 @@ func GetMessages(config *config.Config, ctx context.Context) (results map[string
223
224
for _, detail := range allHostDetails {
225
226
+ // skip all cloud sensors since those are auto-managed
227
+ if detail.ServiceProvider != "" {
228
+ continue
229
+ }
230
+
231
email, err := findEmailTag(detail.Tags, config.Email.Domains)
232
if err != nil || email == "" {
233
email = "_NOTAG/" + detail.Hostname
0 commit comments