Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
power_sensors
Machine power (currents, voltages, wattages, etc) sensors.
Column | Type | Description |
---|---|---|
category | text | The sensor category: currents, voltage, wattage |
key | text | The SMC key on macOS |
name | text | Name of power source |
value | text | Power in Watts |
See the total power usage of an Intel Mac.
SELECT * FROM power_sensors WHERE key='PSTR';
Returns useful results on Intel Macs only.