har文件分析http_如何使用HAR文件分析一段时间内的性能

har文件分析http

When I consider the performance of a website, several things come to mind. I think about looking at the requests of a page, understanding what resources are being loaded, and how long these resources take to be available to users.

当我考虑网站的性能时,会想到几件事。 我考虑查看页面的请求,了解正在加载哪些资源以及这些资源可供用户使用多长时间。

The network tab will give you a table containing all assets loaded on the page. It will also show you relevant information about the origin of those assets (domain, HTTP status code, size), who initiated the request, and the order in which they were loaded in a waterfall representation.

网络标签会为您提供一个表格,其中包含页面上加载的所有资产。 它还将向您显示有关这些资产的来源(域,HTTP状态代码,大小),发起请求的人以及以瀑布表示形式加载它们的顺序的相关信息。

You can add more information to this table by right-clicking one of the table headers and choosing other columns.

您可以通过右键单击表标题之一并选择其他列来向该表添加更多信息。

The size, time and waterfall columns will be crucial to understanding the performance of a page. The size value will present the gzipped size of the resource (when applicable), while the time column shows the total duration from the start of the request to the receipt of the final byte in the response.

大小,时间和瀑布列对于理解页面的性能至关重要。 size值将显示资源的压缩大小(如果适用),而time列显示从请求开始到响应中最后一个字节接收的总持续时间。

Last, but not least, the waterfall column demonstrates when the asset is loaded along with the other requests.

最后但并非最不重要的一点是,瀑布列说明了何时将资产与其他请求一起加载。

Performance improvements are noticeable by changes in your code/environment. So how do we keep track of what is being analyzed by the Network tab? By exporting the page in HAR format.

通过更改代码/环境,可以显着提高性能。 那么,我们如何跟踪“网络”选项卡正在分析的内容? 通过以HAR格式导出页面。

什么是HAR文件? (What is a HAR file?)

A HAR (short for HTTP Archive) file is a JSON file containing all information about a browser’s interactions with a page. It will contain the HTML document and its respective JS and CSS files.

HAR(HTTP存档的缩写)文件是一个JSON文件,其中包含有关浏览器与页面交互的所有信息。 它将包含HTML文档及其各自的JS和CSS文件。

Along with this content, a HAR file will also contain all headers’ information and the browser metadata (that is, the time of each request).

除此内容外,HAR文件还将包含所有标头的信息和浏览器元数据(即每个请求的时间)。

It is important to mention here that cookies and form data will also be logged in the file, so be careful to not include sensitive information (personal details, passwords, credit card numbers) while auditing pages.

在此必须提及,cookie和表单数据也将记录在文件中,因此在审核页面时请注意不要包含敏感信息(个人详细信息,密码,信用卡号)。

Also, you should audit pages in private windows, which avoids browser extensions. It's important to avoid a browser’s extensions since they may modify the loading times of a page.

另外,您应该在专用窗口中审核页面,这样可以避免浏览器扩展。 避免浏览器扩展很重要,因为它们可能会修改页面的加载时间。

生成HAR文件 (Generating HAR files)

谷歌浏览器 (Google Chrome)

  • Close all incognito windows in Google Chrome.

    关闭Google Chrome中的所有隐身窗口。
  • Open a new incognito window in Google Chrome.

    在Google Chrome浏览器中打开一个新的隐身窗口。
  • Go to View > Developer > Developers Tools.

    转到查看>开发人员>开发人员工具。
  • In the Developer Tools panel, choose the Network tab.

    在“开发人员工具”面板中,选择“网络”选项卡。
  • Check the Preserve Log and Disable cache checkboxes to record all interactions.

    选中保留日志和禁用缓存复选框以记录所有交互。
  • Refresh the page.

    刷新页面。
  • Click the Export HAR (down arrow icon) to export the HAR file.

    单击导出HAR(向下箭头图标)以导出HAR文件。
  • Save the HAR file.

    保存HAR文件。

火狐浏览器 (Firefox)

  • Close all private windows in Firefox.

    关闭Firefox中的所有私有窗口。
  • Open a new private window in Firefox.

    在Firefox中打开一个新的私有窗口。
  • Go to Tools > Developer > Network or ctrl-shift-E.

    转到工具>开发人员>网络或ctrl-shift-E。
  • Refresh the page.

    刷新页面。
  • In the Cog icon (upper right side of the page), choose Save All As Har.

    在齿轮图标(页面右上角)中,选择全部另存为Har。
  • Save the HAR file.

    保存HAR文件。

苹果浏览器 (Safari)

  • Ensure that Show Develop menu in menu bar checkbox is checked under Safari > Preferences > Advanced.

    确保在Safari>偏好设置>高级下选中了在菜单栏中的显示开发菜单复选框。
  • Choose File > Open New Private Window.

    选择“文件”>“打开新的专用窗口”。
  • Visit the web page where the issue occurs.

    访问发生问题的网页。
  • Choose Develop > Show Web Inspector. The Web Inspector window appears.

    选择“开发>显示Web检查器”。 出现“ Web检查器”窗口。
  • Refresh the page.

    刷新页面。
  • Click Export on the upper right side of the pane.

    单击窗格右上方的导出。
  • Save the HAR file.

    保存HAR文件。

读取HAR文件 (Reading HAR files)

Once you have a HAR file, you can try a few HAR viewers online. My personal favourite is the one created by Jan Odavarko.

拥有HAR文件后,您可以在线尝试一些HAR查看器。 我个人最喜欢的是Jan Odavarko创建的 。

What I like about this viewer in particular is the fact you can have multiple files open at the same time, which makes it easier to compare them.

我特别喜欢这个查看器,因为您可以同时打开多个文件,这使得比较它们变得更加容易。

使用HAR文件分析页面的性能 (Using HAR files to analyze the performance of a page)

HAR files can be useful to collect information about the assets of a page. Since you have detailed information about their content, you can compare what has improved (or in some cases, not improved) after a new feature is launched or a redesign is completed, for example.

HAR文件可用于收集有关页面资产的信息。 由于您具有有关其内容的详细信息,因此,例如,在启动新功能或完成重新设计后,您可以比较哪些方面有所改进(或在某些情况下没有改进)。

During my workflow, I like to keep track of the final size/time values of a few pages of the product that I am working on.

在工作流程中,我想跟踪正在处理的产品几页的最终大小/时间值。

更多信息 (More information)

  • Measure Resource Loading Times

    测量资源加载时间

  • HAR Viewer source code

    HAR Viewer源代码

Also posted on my blog. If you like this content, follow me on Twitter and GitHub. Cover photo by William Daigneault/Unsplash

也张贴在我的博客上 。 如果您喜欢此内容,请在Twitter和GitHub上关注我。 威廉·戴格诺 ( William Daigneault)/ Unsplash的封面照片

翻译自: https://www.freecodecamp.org/news/using-har-files-to-analyze-performance-over-time/

har文件分析http

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390208.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

第一阶段:前端开发_Mysql——表与表之间的关系

2018-06-26 表与表之间的关系 一、一对多关系: 常见实例:分类和商品,部门和员工一对多建表原则:在从表(多方)创建一个字段,字段作为外键指向主表(一方)的一方      …

按钮提交在url后添加字段_在输入字段上定向单击“清除”按钮(X)

按钮提交在url后添加字段jQuery makes it easy to get your project up and running. Though its fallen out of favor in recent years, its still worth learning the basics, especially if you want quick access to its powerful methods.jQuery使您可以轻松启动和运行项目…

429. N 叉树的层序遍历

429. N 叉树的层序遍历 给定一个 N 叉树,返回其节点值的层序遍历。(即从左到右,逐层遍历)。 树的序列化输入是用层序遍历,每组子节点都由 null 值分隔(参见示例)。 - 示例 1:输入…

javascript如何阻止事件冒泡和默认行为

阻止冒泡: 冒泡简单的举例来说,儿子知道了一个秘密消息,它告诉了爸爸,爸爸知道了又告诉了爷爷,一级级传递从而以引起事件的混乱,而阻止冒泡就是不让儿子告诉爸爸,爸爸自然不会告诉爷爷。下面的d…

89. Gray Code - LeetCode

为什么80%的码农都做不了架构师&#xff1f;>>> Question 89. Gray Code Solution 思路&#xff1a; n 0 0 n 1 0 1 n 2 00 01 10 11 n 3 000 001 010 011 100 101 110 111 Java实现&#xff1a; public List<Integer> grayCode(int n) {List&…

400. 第 N 位数字

400. 第 N 位数字 在无限的整数序列 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, …中找到第 n 位数字。 注意&#xff1a;n 是正数且在 32 位整数范围内&#xff08;n < 231&#xff09;。 示例 1&#xff1a; 输入&#xff1a;3 输出&#xff1a;3 示例 2&#xff1a; 输入&…

1.初识Linux

1.Linux 区分大小写 2.shell命令行-bash 进入终端->[stulocalhost~]$ (其中,Stu为登录用户名&#xff0c;localhost为登录主机名&#xff0c;’~’ 表示当前用户正处在stu用户的家目录中, 普通用户的提示符以$结尾&#xff0c;而根用户以’#’结尾) 3.Linux中所谓的命令(…

这份NLP研究进展汇总请收好,GitHub连续3天最火的都是它

最近&#xff0c;有一份自然语言处理 (NLP) 进展合辑&#xff0c;一发布就受到了同性交友网站用户的疯狂标星&#xff0c;已经连续3天高居GitHub热门榜首位。 合集里面包括&#xff0c;20多种NLP任务前赴后继的研究成果&#xff0c;以及用到的数据集。 这是来自爱尔兰的Sebasti…

基于模型的嵌入式开发流程_如何使用基于模型的测试来改善工作流程

基于模型的嵌入式开发流程Unit testing is not enough – so lets start using model-based testing to improve our workflows.单元测试还不够–因此&#xff0c;让我们开始使用基于模型的测试来改善我们的工作流程。 Software testing is an important phase in building a …

166. 分数到小数

166. 分数到小数 给定两个整数&#xff0c;分别表示分数的分子 numerator 和分母 denominator&#xff0c;以 字符串形式返回小数 。 如果小数部分为循环小数&#xff0c;则将循环的部分括在括号内。 如果存在多个答案&#xff0c;只需返回 任意一个 。 对于所有给定的输入…

最近用.NET实现DHT爬虫,全.NET实现

最近用.NET实现DHT爬虫&#xff0c;全.NET实现&#xff0c;大家可以加我QQ交流下 309159808 转载于:https://www.cnblogs.com/oshoh/p/9236186.html

C++贪吃蛇

动画链接 GitHub链接&#xff1a;https://github.com/yanpeng1314/Snake 1 #include "Snake.h"2 3 int iScore 0;4 int iGrade 1;5 6 //蛇头蛇尾初始位置7 int x_head 1, y_head 3;8 int x_tail 1, y_tail 1;9 10 //地图坐标11 int i_Map 1, j_Map 1;12 13 /…

远程办公招聘_招聘远程人才时要寻找的5种技能

远程办公招聘Remote work is a fast emerging segment of the labor market. How to embrace this shift as an employer - and find, recruit, and empower remote staff - is a question many companies and hiring managers are grappling with.远程工作是劳动力市场中快速崛…

10分钟腾讯云配置免费https

腾讯云免费证书申请地址&#xff1a; https://console.cloud.tencent... 填写相关信息 域名身份验证 文件验证 将fileauth.text 创建在网站访问根目录的 .well-known/pki-validation/目录使得 www.**.com/.well-known/pki-validation/fileauth.text 能够访问详情 等待5分钟左右…

1588. 所有奇数长度子数组的和

1588. 所有奇数长度子数组的和 给你一个正整数数组 arr &#xff0c;请你计算所有可能的奇数长度子数组的和。 子数组 定义为原数组中的一个连续子序列。 请你返回 arr 中 所有奇数长度子数组的和 。 示例 1&#xff1a; 输入&#xff1a;arr [1,4,2,5,3] 输出&#xff1…

洛谷P3195 [HNOI2008]玩具装箱TOY(单调队列优化DP)

题目描述 P教授要去看奥运&#xff0c;但是他舍不下他的玩具&#xff0c;于是他决定把所有的玩具运到北京。他使用自己的压缩器进行压缩&#xff0c;其可以将任意物品变成一堆&#xff0c;再放到一种特殊的一维容器中。P教授有编号为1...N的N件玩具&#xff0c;第i件玩具经过压…

680. 验证回文字符串 Ⅱ

680. 验证回文字符串 Ⅱ 给定一个非空字符串 s&#xff0c;最多删除一个字符。判断是否能成为回文字符串。 示例 1: 输入: s “aba” 输出: true 示例 2: 输入: s “abca” 输出: true 解释: 你可以删除c字符。 示例 3: 输入: s “abc” 输出: false 解题思路 使用…

Android--RxJava2更新体验

截止日前最新版2017-3-15: RxJava compile ‘io.reactivex:rxjava:1.2.7’ compile ‘io.reactivex:rxandroid:1.2.1’ RxJava2 compile “io.reactivex.rxjava2:rxjava:2.0.7” compile “io.reactivex.rxjava2:rxandroid:2.0.1” 1:create操作改变 Rxjava CompositeSubscri…

kotlin和java语言_Kotlin VS Java – 2020年您应该学习哪种编程语言?

kotlin和java语言It has been several years since Kotlin came out, and it has been doing well. Since it was created specifically to replace Java, Kotlin has naturally been compared with Java in many respects.自Kotlin问世以来已经有好几年了&#xff0c;而且一切…

oracle部署--安装oracle软件与部署单实例数据库

一、安装oracle数据库软件 1.创建相应的用户组及用户 groupadd oinstall groupadd oper groupadd dba useradd -g oinstall -G oper,dba oracle 2.创建oracle software安装路径 mkdir -p /u01/app/oracle/product/11.2.0/db_1 3.修改安装路径权限 chown -R oracle:oinstall …