前端性能监控

先上大佬地址  https://www.jianshu.com/p/1355232d525a

let performance = window.performance ||window.msPerformance ||window.webkitPerformance;
if(performance) {
  console.log(performance); 
 }

这个就比较大头了 如果面对万级以上的用户 这个就需要仔细研究了。。。

粗略看了下  除了监控性能  还可以作为监控前进 后退 进入页面 刷新页面的方法

 

也可以 谷歌浏览器搜索   ctrl+p  搜索 >performance monitor  可视化  

前端性能监控_第1张图片

 

 

如果  再想粗略点。。。那么 打开任务管理器   (如果不会  就ctrl+alt+del(也就是数字键盘小数点)) 就可以找到了  点到性能这块。。进行页面操作观看lcpu使用率  基本到了100%  肯定卡

前端性能监控_第2张图片

你可能感兴趣的:(前端性能监控)