Battery Metrics is a lightweight android library to quickly instrument several metrics for understanding battery consumption.
As a developer, it's surprisingly hard to understand how your application affects battery life on Android — relying on the operating system level reported battery level tends to be inaccurate (because the reported levels are fairly coarse, affected by every app running on the device and smoothed out) and while it's possible to get really good measurements locally you don't really know what sort of experience users are having in the wild.
The library helps instrument hardware utilization to be able to understand how the application is behaving -- most of the underlying hardware metrics are either exposed by the OS, or not directly accessible -- which is where this library comes into play. We've written several metrics collectors that read from procfiles, or provide a consistent way to call into to instrument your application.
Add jcenter
to your repositories –
repositories {
jcenter()
}
And add dependencies on the projects you'd like to use in build.gradle
–
dependencies {
implementation 'com.facebook.battery:metrics:1.0.0'
implementation 'com.facebook.battery:reporters:1.0.0' // optional
implementation 'com.facebook.battery:serializers:1.0.0' // optional
}
As a simple quickstart, let's instrument sample activity to check CPU time while the activity is being used in the foreground --
class SampleActivity extends Activity {
private static final CpuMetricsCollector sCollector = new CpuMetricsCollector();
private final CpuMetrics mInitialMetrics = sCollector.createMetrics();
private final CpuMetrics mFinalMetrics = sCollector.createMetrics();
@Override
protected void onResume() {
super.onResume();
sCollector.getSnapshot(mInitialMetrics);
}
@Override
protected void onPause() {
super.onPause();
sCollector.getSnapshot(mFinalMetrics);
Log.d("BatteryMetrics", mFinalMetrics.diff(mInitialMetrics).toString());
}
}
And foregrounding and background the application prints the metrics to logcat --
CpuMetrics{userTimeS=0.06, systemTimeS=0.04, childUserTimeS=0.0, childSystemTimeS=0.0}
Building further on this, there are many more metrics to collect, and some utility classes to reduce boilerplate -- a more detailed deep dive into using the API is in the sample app: check out sample/../BatteryApplication.java.
You can quickly install and run the app --
./gradlew :sample:installDebug
- JavaDocs -- a reasonably comprehensive reference to all the exposed APIs.
- Roadmap -- our planned, but unprioritized roadmap. Give us feedback!
- Additional reading -- some sources we've found useful.
- API description -- a brief description of the terms used throughout the project.
- Getting started -- the core of the sample app described. Make sure you check out sample/../BatteryApplication.java.
- Mistrusting battery level -- why we don't rely on the os reported battery level
- Contribution guidelines -- we'd love to see contributions to the project.
BatteryMetrics is MIT-licensed.