fleet/schema/tables/mounts.yml
JD 31a308c6ed
Update schema example for mounts table (#12779)
Noticed this had the wrong table example. Updated mounts table schema
example with an example from my PSU MacAdmins presentation.
2023-07-18 15:30:33 -07:00

10 lines
287 B
YAML

name: mounts
examples: >-
Returns the drive free space in gigabytes and as percentage.
```
SELECT path, type, ROUND((blocks_available * blocks_size * 10e-10), 2) AS free_gb, ROUND ((blocks_available * 1.0 / blocks * 1.0) * 100, 2) AS free_pc FROM mounts WHERE path = '/';
```