Android的日志收集器:Puree
jopen
10年前
Puree是一个日志收集器,它提供如下一些特性:
- 过滤: 能够在发送日志前中断过程。你可以添加一些常用的参数至日志或对日志进行采样
- 缓存:缓存存储日志,直到日志被发送
- 批处理:一个请求发送多条日志
- 重试:如果发送日志失败后,会按设定的时间间隔自动重新发送日志。
帮助你统一你的日志基础设施。
用法
初始化
Configure Puree on application created.
public class DemoApplication extends Application { @Override public void onCreate() { Puree.initialize(buildConfiguration(this)); } public static PureeConfiguration buildConfiguration(Context context) { PureeFilter addEventTimeFilter = new AddEventTimeFilter(); return new PureeConfiguration.Builder(context) .registerOutput(new OutLogcat()) .registerOutput(new OutBufferedLogcat(), addEventTimeFilter) .build(); } }
发送日志
Log class should extend JsonConvertible.
public class ClickLog extends JsonConvertible { @SerializedName("page") private String page; @SerializedName("label") private String label; public ClickLog(String page, String label) { this.page = page; this.label = label; } }
Call Puree.send
in an arbitary timing.
Puree.send(new ClickLog("MainActivity", "Hello"), OutLogcat.TYPE);