Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
disk_info
Retrieve basic information about the physical disks of a system.
Column | Type | Description |
---|---|---|
description | text | The OS's description of the disk. Only available on Windows |
disk_index | integer | Physical drive number of the disk. Only available on Windows |
disk_size | bigint | Size of the disk. |
hardware_model | text | Hard drive model. Only available on Windows |
id | text | The unique identifier of the drive on the system. |
manufacturer | text | The manufacturer of the disk. Only available on Windows |
name | text | The label of the disk object. |
partitions | integer | Number of detected partitions on disk. Only available on Windows |
pnp_device_id | text | The unique identifier of the drive on the system. Only available on Windows |
serial | text | The serial number of the disk. Only available on Windows |
type | text | The interface type of the disk. |
SELECT * FROM disk_info;
On ChromeOS, this table requires the fleetd Chrome extension.
Available for ChromeOS 91+.