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