-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
什么是 offlineLog ? #25
Labels
Comments
您好,首先非常感谢各位开源了badjs这套有用的前端错误上报系统。 //初始化
BJ_REPORT.init();
//记录离线日志
BJ_REPORT.offlineLog("offlineLog");
//上报离线日志
BJ_REPORT.reportOfflineLog(); 没有在管理后台看到离线日志相关数据啊。info debug都没有问题
求解答,各位辛苦了 |
@hellovigoss 已经更新了。 你再重新更新一下 badjs-web 就能看到离线日志的入口。 |
@caihuiji 非常感谢。 |
非常感谢 @caihuiji |
……这几时加的,也不跟我说下 |
请问离线的上报方式为什么没有和普通上报一致(图片get),而是主动上报用iframe的表单提交,自动上报用srcipt访问离线日志上报接口,再上报? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
为什么要有 offlineLog?
badjs 本身已经支持 info 级别用于记录用户操作日志。但是腾讯许多业务PV 往往很高,频繁的上报info 级别日志,不仅浪费用户流量,而且也浪费存储。
所以badjs-report1.3 提供了存储在用户本地的日志,而且在离线状态下也可以用。
什么时候用 offlineLog?
所以我们建议每个小时高于500左右的上报量,我们可以建议采用offlineLog ,而且我们推荐你使用 offlienLog 详细记录用户的操作日志,便于后面排查问题
offlineLog 原理是什么?
offloneLog 使用浏览器的 indexdb 进行存储日志的,badjs-report 的所有上报都会记录到离线日志中。而且有效期默认是最近5天,所以用户不用担心用户本地的日志过多。
怎么使用?
The text was updated successfully, but these errors were encountered: