fleet/handbook/queries/get-macos-disk-free-space-percentage.md
Mike Thomas 549f17f90e
Create get-macos-disk-free-space-percentage.md (#547)
Add "Get macOS disk free space percentage" query to `/handbook/queries`
2021-03-26 15:10:43 -07:00

290 B

Get macOS disk free space percentage

Displays the percentage of free space available on the primary disk partition.

Support

macOS

Query

SELECT (blocks_available * 100 / blocks) AS pct, * FROM mounts WHERE path = '/';

Purpose

Informational

Remediation

N/A