mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
The existing query used a CROSS JOIN with USING(id), which is not valid SQL in Fleet/SQLite and resulted in a syntax error when saving the query. This change replaces the CROSS JOIN with a standard JOIN ... ON ... clause. The explicit ON form was chosen for clarity: - Makes the join condition (c.id = p.id) obvious to readers - Avoids the subtle column-merging behavior of USING This preserves the intended behavior (joining containers with their processes by ID) while ensuring the query can be saved and run correctly in Fleet. |
||
|---|---|---|
| .. | ||
| 01-Using-Fleet | ||
| Configuration | ||
| Contributing | ||
| Deploy | ||
| files | ||
| Get started | ||
| images | ||
| REST API | ||
| Using Fleet | ||
| queries.yml | ||
| README.md | ||
Fleet documentation
Welcome to the documentation for Fleet, the lightweight management platform for laptops and servers.
You can also read the Fleet docs over at https://fleetdm.com/docs.
Using Fleet
Resources for using the Fleet UI, fleetctl CLI, and Fleet REST API.
Deploying
Resources for installing Fleet's infrastructure dependencies, configuring Fleet, deploying osquery to hosts, and viewing example deployment scenarios.
Contributing
If you're interested in interacting with the Fleet source code, you'll find information on modifying and building the code here.
If you have any questions, please don't hesitate to File a GitHub issue or join us on Slack. You can find us in the #fleet channel.