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
containerd_mounts
Information about containerd container mounts.
| Column | Type | Description |
|---|---|---|
| container_id | text | Container ID. |
| destination | text | Destination path in the container. |
| namespace | text | Namespace of the container. |
| options | text | Mount options (comma-separated). |
| source | text | Source path on the host. |
| type | text | Mount type (e.g. bind, tmpfs, proc). |
Get all mounts for all containers:
SELECT * FROM containerd_mounts;Get mounts for a specific container:
SELECT * FROM containerd_mounts WHERE container_id='abc123';Get all bind mounts:
SELECT * FROM containerd_mounts WHERE type='bind';This table is not a core osquery table. It is included as part of Fleet's agent (fleetd).
The containerd_mounts table is available on Linux systems with containerd installed. It provides
information about the mounts configured for containers managed by containerd.
This table is useful for systems using containerd as a container runtime, such as those running
Kubernetes. See the docker_container_mounts table for information about mounts in Docker containers.