-
Notifications
You must be signed in to change notification settings - Fork 477
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new query to workstations canary to help fleetd release verificat…
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
- name: Collect fleetd information | ||
description: "Collects fleetd information from agents" | ||
query: | | ||
SELECT | ||
os_version.platform as platform, | ||
system_info.cpu_type as cpu_type, | ||
osquery_info.version as osquery_version, | ||
orbit_info.* | ||
FROM os_version, system_info, osquery_info, orbit_info; | ||
interval: 300 # 5 minutes | ||
observer_can_run: true | ||
automations_enabled: false | ||
platform: darwin,linux,windows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters