日志监控

2020-09-02  本文已影响0人  jluemmmm

性能监控

利用window.performance进行性能上报,包括白屏时间与相关资源加载时间
如何进行 web 性能监控

var time = window.performance.timing;
var fptValue = time.responseEnd - time.fetchStart;
var loadValue = time.loadEventStart - time.fetchStart;

window.addEventListener('load', function () {
  performanceReport();
});

前端监控 中有各性能采集指标

初探 performance – 监控网页与程序性能 中有各时间节点的介绍

前端性能监控:window.performance

统计指标说明

promise错误捕获

unhandledrejection捕获被reject但没有reject处理器的错误

页面生命周期

页面生命周期:DOMContentLoaded,load,beforeunload,unload
再谈 load 与 DOMContentLoaded

async、defer与DOMContentLoaded的执行先后关系

上一篇下一篇

猜你喜欢

热点阅读