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;