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.
ssh_configs
A table of parsed ssh_configs.
Column | Type | Description |
---|---|---|
block | text | The host or match block |
option | text | The option and value |
ssh_config_file | text | Path to the ssh_config file |
uid | bigint | The local owner of the ssh_config file |
SELECT * FROM users CROSS JOIN ssh_configs USING (uid);
Identify SSH clients configured to send their locales to the server.
SELECT * FROM ssh_configs WHERE option='sendenv lang lc_*';
Querying this table requires joining against the users
table. Learn more