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.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
More
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.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
Apple
Linux
Windows
ChromeOS
docker_images
Docker images information.
| Column | Type | Description |
|---|---|---|
| created | bigint | Time of creation as UNIX time |
| id | text | Image ID |
| size_bytes | bigint | Size of image in bytes |
| tags | text | Comma-separated list of repository tags |
See how much storage is used by Docker images. Requires Docker to be running.
SELECT ROUND(SUM(size_bytes * 10e-10),2) as gigabytes_of_images FROM docker_images;