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.
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';