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.
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;