工具开源地址:https://github.com/google/battery-historian
根据
gitbub上面介绍,Battery History工具的安装有两种方式:
1. 通过安装
Docker环境来安装。(这种方式很简单,Docker真心好用,太彪悍了!)
Docker是一种容器,一般用于云计算和大数据平台。提倡的一种思想就是:软件即服务。这句话不是盖的,一句话就可以将别人发布的docker服务环境一次全部copy过来(注意是整个软件环境哦,相当于复制了一台一模一样的主机,连软件都不要安装了,全有了。彪悍吧!)
Docker只支持Windows10
Gitbub上面是这样的命令及地址:
docker -- run -p <port>:9999 gcr.io/android-battery-historian:2.1 --port 9999
docker run -d -p 9999:9999 bhaavan/battery-historian
2.通过编译gitbub上面的源码来安装。
这个就很麻烦了,要装一堆软件哦。见下面(“一、”到“五、”步骤)
一、GO环境安装:
1.下载
下载目录:
https://golang.org/doc/install
https://golang.org/doc/install?download=go1.7.3.windows-amd64.msi
2.安装GO
3. 配置GOROOT和GOPATH(注意环境变量的配置)
a. GOROOT的作用是告诉Go 命令和其他相关工具,在哪里去找到安装在你系统上的Go包,所以这里配置的是GO的安装目录
b.GOPATH可以简单理解为是工程的目录,所以创建一个GO的工程路径
C.最后配置一下环境变量,把Go的bin目录放到path环境变量中
d.查看配置是否正确 go env
4. 检查Go是否安装成功,打开命令行输入Go version (路径不能一致,win10 上下的环境变量配置)
二、安装Git
1. 点击下载(https://git-scm.com/);
2. 按照步骤安装;
3. 安装完成检查:命令行输入 git version
也可以直接打开git bash检查
三、安装Python
1. 点击下载【下载】,注意仅支持python2.7 (https://www.python.org/ )
2. 安装完成;
环境变量配置,添加Path的路径,是Python的安装路径
4.输入命令行 python –V(注意是大写V)检查是否安装成功
四、安装Java环境
- 点击下载【下载】;
- 完成安装。
五、下载Battery Historian源码并且运行
1.输入命令行go get -d -u github.com/google/battery-historian/…
**下载到GOPATH配置目录下 自动
2.进入到$GOPATH/src/github.com/google/battery-historian目录下方
$ cd $GOPATH/src/github.com/google/battery-historian
3.运行Battery Historian
1) go run setup.go
$ go run setup.go
等待数分钟或者
10分钟左右,如果仍然没有下载成功,可以手动下载,如下操作
**下载【closure-library】【[closurecompiler(https://github.com/google/closure-compiler)】和【flot-axislabels】,解压放到GOROOT目录下third_party文件夹下方的的closure-compiler和closure-library和flot-axislabels
文件夹../battery-historian\third_party;如果没有均手动创建
2)go run cmd/battery-historian/battery-historian.go
cd $GOPATH/src/github.com/google/battery-historian
$ go run cmd/battery-historian/battery-historian.go [--port <default:9999>]
4. 检查/battery-historian是否运行,登录网址http://localhost:9999查看 (没有提交,换个浏览器试试)
六、导出手机的Bugreport日志
1.输入指令adb bugreport > bugreport.txt导出。
或者用下面的命令也可以:
adb shell dumpsys batterystats > batterystats.txt
adb shell dumpsys batterystats > com.example.android.sunshine.app > batterystats.txt
七、上传bugreport.txt文件至*http://localhost:9999
1.上传bug日志
2.查看结果
historian-V1之前的版本分析方式:
将txt文档转化为html文件,命令如下。
python historian.py -a bugreport.txt > battery.html
可以进入安装的目录D:\goproject\src\github.com\google\battery-historian\scripts
如果有zip 请解压zip 获取bugreport.txt 文件来转换
参考资料:
https://github.com/google/battery-historian#wakelock-analysis