fleet/schema/tables/process_open_files.yml

9 lines
332 B
YAML
Raw Normal View History

name: process_open_files
examples: |-
See what processes have which files open, for example, what processes are
currently interacting with files with 1Password in their name?
```
SELECT f.path file_path, p.path process_path FROM process_open_files f JOIN processes p ON p.pid = f.pid WHERE f.path LIKE '%1Password%';
```