Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
process_envs
A key/value table of environment variables for each process.
Column | Type | Description |
---|---|---|
key | text | Environment variable name |
pid | integer | Process (or thread) ID |
value | text | Environment variable value |
See what PATH is configured as an environment variable.
SELECT DISTINCT value, key FROM process_envs WHERE key='PATH';