Tim Lee
Tim Lee
In today's mobile-driven workplace, the health of a device's battery plays a crucial role in maintaining productivity and reliability. Fleet utilizes osquery to monitor device metrics, providing comprehensive insights into battery health and helping IT teams keep their fleets running smoothly.
Fleet gathers data on battery health by focusing on two essential metrics:
To ensure a device continues to perform optimally, Fleet defines battery health by considering the following thresholds:
Battery health will be reported as Normal or Service recommended, following the same standards for both macOS and Windows.
If you need more detailed information about a specific battery, you can run a live query on the device using the following osquery command:
SELECT * FROM battery;
or a command specifying a capacity_degradation column to sort your devices by battery capacity degradation:
SELECT *,
CASE
WHEN designed_capacity = 0 THEN NULL
ELSE CAST(max_capacity AS FLOAT) / CAST(designed_capacity AS FLOAT)
END AS capacity_degradation
FROM battery;
By regularly monitoring battery health with Fleet, IT teams can proactively maintain devices, reducing downtime and extending device lifespans—keeping teams productive and operational. Battery health is vital for the productivity and longevity of devices within a fleet.
For more tips and detailed guides, don’t forget to check out the Fleet documentation.