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.
platform_info
The platform_info
osquery table collects boot platform information from a computer. The platform_info
table works on Linux, macOS and Windows.
Column | Type | Description |
---|---|---|
address | text | Relative address of firmware mapping Only available on Linux and macOS |
date | text | Self-reported platform code update date |
extra | text | Platform-specific additional information |
firmware_type | text | The type of firmware (uefi, bios, iboot, openfirmware, unknown). |
revision | text | BIOS major and minor revision |
size | text | Size in bytes of firmware Only available on Linux and macOS |
vendor | text | Platform code vendor |
version | text | Platform code version |
volume_size | integer | (Optional) size of firmware volume Only available on Linux and macOS |
Basic query:
SELECT extra,firmware_type,vendor FROM platform_info;
This query results in a listing of the following attributes on a macOS host running a Windows 11 virtual machine in the Parallels.app:
Mac -
Windows -
Links: