Skip to content

Commit 39b9c30

Browse files
committed
feat: skip cloud sensors to only report on user endpoints
1 parent e52ee70 commit 39b9c30

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/falcon/extractor.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,11 @@ func GetMessages(config *config.Config, ctx context.Context) (results map[string
223223

224224
for _, detail := range allHostDetails {
225225

226+
// skip all cloud sensors since those are auto-managed
227+
if detail.ServiceProvider != "" {
228+
continue
229+
}
230+
226231
email, err := findEmailTag(detail.Tags, config.Email.Domains)
227232
if err != nil || email == "" {
228233
email = "_NOTAG/" + detail.Hostname

0 commit comments

Comments
 (0)