[Webkit-unassigned] [Bug 40227] New: Web Inspector: Provide detailed network info in the resources panel.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 7 04:33:00 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=40227

           Summary: Web Inspector: Provide detailed network info in the
                    resources panel.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: pfeldman at chromium.org
                CC: timothy at apple.com, rik at webkit.org, keishi at webkit.org,
                    pmuellr at yahoo.com, joepeck at webkit.org,
                    pfeldman at chromium.org, yurys at chromium.org,
                    bweinstein at apple.com


I looked at what information other tools provide:

1) Firebug Network info:
- DNS Lookup: DNS resolution time
- Connecting: Elapsed time required to create a TCP connection.
- Blocking: Elapsed time spent in a browser queue waiting for a network connection. Displayed only in the case where this situation happens.
- Sending: Time needed to send request data to the server.
- Waiting: Waiting for the response (till the first byte is received from the server).
- Receiving: Time necessary to download response body.

FireBug Cache info:
- Last Modified - last time the cache entry was modified
- Last Fetched - last time the cache entry was opened
- Expires - expiration time of the cache entry
- Data Size - cache entry data size
- Fetch Count - number of times the cache entry has been opened
- Device - id for the device that stores this cache entry

2) Page Speed
- DNS - The browser is performing a DNS lookup for this resource
- Wait - The browser is waiting to establish a network (TCP) connection with the web server.
- Connect - The browser is establishing a network (TCP) connection with the web server. This event only appears for new connections; not for connections that are reused.
- Send - The browser has sent the HTTP request. Only GET requests are shown.
- Connected - The browser is waiting for data over the network. The event ends when the browser ends the TCP connection. Resources that show lengthy Connected events may benefit from optimization to reduce payload size, such as compression

3) dynaTrace seems to present subset:
- DNS
- Connect
- Server
- Transfer

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list