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
curl
Perform an http request and return stats about it.
| Column | Type | Description |
|---|---|---|
| bytes | bigint | Number of bytes in the response |
| method | text | The HTTP method for the request |
| response_code | integer | The HTTP status code for the response |
| result | text | The HTTP response body |
| round_trip_time | bigint | Time taken to complete the request |
| url | text | The url for the request Required in WHERE clause |
| user_agent | text | The user-agent string to use for the request |
Connect over HTTP and retrieve statistics about the process. This is useful to detect machines on slow networks, or that have no Internet access.
SELECT round_trip_time FROM curl WHERE URL='https://fleetdm.com';