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.
shell_history
A line-delimited (command) table of per-user .*_history data.
Column | Type | Description |
---|---|---|
command | text | Unparsed date/line/command history line |
history_file | text | Path to the .*_history for this user |
time | integer | Entry timestamp. It could be absent, default value is 0. |
uid | bigint | Shell history owner |
SELECT * FROM users CROSS JOIN shell_history USING (uid);
See command line executions and related timestamps. Useful for threat hunting when a device is suspected of being compromised.
SELECT u.username, s.command, s.time FROM users u CROSS JOIN shell_history s USING (uid);
users
table. Learn more