We’re launching free support for BYOD Android devices and looking for early feedback. Interested?
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';