Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Extend Fleet
Integrate your favorite tools with Fleet.
Customers
Stripe + Fleet
Stripe consolidates multiple tools with Fleet.
Foursquare + Fleet
Foursquare quickly migrates to Fleet for device management.
What people are saying
Stories from the Fleet community.
More
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
groups
Local system groups.
Column | Type | Description |
---|---|---|
comment | text | Remarks or comments associated with the group Only available on Windows |
gid | bigint | Unsigned int64 group ID |
gid_signed | bigint | A signed int64 version of gid |
group_sid | text | Unique group ID Only available on Windows |
groupname | text | Canonical local group name |
is_hidden | integer | IsHidden attribute set in OpenDirectory Only available on macOS |
pid_with_namespace | integer | Pids that contain a namespace Only available on Linux |
See all groups with the IsHidden
OpenDirectory attribute:
SELECT * FROM groups WHERE is_hidden='1';
Collect the users that are members of the admin
group:
SELECT * FROM groups JOIN user_groups USING (gid) JOIN users USING (uid) WHERE groupname='admin';
gid
and gid_signed
are always the same