如何使用 firebug 加载和/或执行时间轻松创建图表?
我需要创建图表来显示加载特定页面时最耗时的任务。 嗯,Firebug 有这个很好的功能,可以向您显示网络部分中文件的所有加载时间,或者我是否可以使用分析器(控制台)。
现在我正在寻找从结果中获取图表(饼图)的最简单方法,而无需将所有文件和时间值输入到 Excel 表格中。
有什么建议吗?
I need to create diagram showing the most time consuming tasks when a specific page gets loaded.
Well, Firebug has this nice feature to show you all loading times of files in the network section or if i can use the profiler alternatively (console).
Now i am looking for the easiest way to get a diagram (pie chart) from the results without typing all the files and time values into an excell table.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以导出为 Har 文件(允许 firebug Har 日志文件导出的扩展),此 HarViewer 看起来有希望...
https://github.com/janodvarko/harviewer
HAR Viewer 是一个 Web 应用程序 ( PHP + Javascript),允许基于 HTTP 存档格式 (HAR) 可视化 HTTP 跟踪日志。这些文件包含有关网页执行的 HTTP 流量的记录信息。
---同时 ---
http://www.imagossoftware.com/harlog/
HarLog 采用 HAR 格式文件或 HAR HTTP 格式流并创建制表符分隔的输出文件。然后可以将输出文件导入 Excel 或类似文件中以创建图形报告。
You can export as a Har file (extension to allow firebug Har log file export), this HarViewer looks promising...
https://github.com/janodvarko/harviewer
HAR Viewer is a web application (PHP + Javascript) that allows to visualize HTTP tracing logs based on HTTP Archive format (HAR). These files contain recorded information about HTTP traffic performed by web pages.
---Also---
http://www.imagossoftware.com/harlog/
HarLog takes HAR format files or a HAR HTTP formatted stream and creates a tab delimited output file. The output file can then be imported into Excel or similar to create graphical reports.
您可以使用 Google Chart API 生成图表:http://code.google.com /intl/de/apis/chart/ 直接在浏览器中。 (不需要 Excel ;-) )
You can generate a chart using the Google Chart API: http://code.google.com/intl/de/apis/chart/ directly in the browser. (no excell needed ;-) )