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.
containerd_containers
Information about containerd containers.
Column | Type | Description |
---|---|---|
command | text | Command used to start the container. |
created | integer | Unix timestamp of when the container was created. |
id | text | Container ID. |
image | text | Image name. |
image_digest | text | Image digest (SHA256). |
namespace | text | Namespace of the container. |
pid | integer | PID of the container process. |
runtime | text | Name of the container runtime (e.g. io.containerd.runc.v2). |
state | text | Container state (e.g. running, stopped). |
Get all containers from all namespaces:
SELECT * FROM containerd_containers;
Get only running containers in the default
namespace:
SELECT * FROM containerd_containers WHERE namespace='default' AND state='running';
This table is not a core osquery table. It is included as part of Fleet's agent (fleetd).
The containerd
table is available on Linux systems with containerd installed. It provides
information about the containers managed by containerd, including their state, image, and runtime.
This table is useful for systems using containerd as a container runtime, such as those running
Kubernetes. See the docker_containers
table for information about containers managed by Docker.