1、harviewer
Direct installation tag trouble, there is a chrome plugin: Har Viewer
2. Online analysis tool
https://ericduran.github.io/chromeHAR/ The format is messy
https://toolbox.googleapps.com/apps/har_analyzer/ Recommended, the format is good-looking, and it supports search, but the display is a bit small
HARViewer is built
Introduction to HAR
HAR (HTTP Archive) is a common file format used to store HTTP request/response information, based on JSON. The emergence of this format allows HTTP monitoring tools to export the collected data in a common format that can be used by other HAR-enabled HTTP analysis tools (including Firebug, httpwatch, Fiddler, etc.) to analyze website performance bottlenecks. The latest version of the HAR specification is HAR 1.2. The HAR file must be UTF-8 encoded, and it doesn't matter if there is a BOM or not.
About HARViewer
HARViewer is an online tool whose purpose is to visualize HTTP Archive (HAR) log files created by HTTP tracing tools. These files contain logs of HTTP request/response session information that can be used for further analysis of page load performance.
HARViewer installation:
Source code download address: https://github.com/janodvarko/harviewer/archive/master.zip
After the download is completed, after unzipping, copy the webapp directory to the website directory with php environment (IIS I use myself, I also configure php, the port is configured casually, I set 5565 myself)
Visit: http://localhost:5565/
You can export har information through Chrome, copy and paste it into the text box and click the "Preview" button to see the visual effect.
|