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.
fleetd_logs
Returns the logs from fleetd's current session. Logs are stored in memory, so they are erased when it restarts.
Column | Type | Description |
---|---|---|
error | text | The error attached to the event |
level | text | The log-level of the event. Info, Debug, etc. |
message | text | The message attached to the event |
payload | text | Any extra data attached to the event, JSON |
time | text | The time the event was captured, UTC. |
SELECT * FROM fleetd_logs
Return only log entries with errors attached
SELECT * FROM fleetd_logs WHERE error != ""