Capturing a NetLog gives you a surgical, millisecond-by-millisecond replay of everything Chrome’s network stack did—making it the go-to tool when a plain HAR or DevTools waterfall can’t explain that stubborn TLS error, proxy hiccup, or protocol downgrade.
When you click Start logging to disk on chrome://net-export/
(or run Chrome with --log-net-log=file.json
), you turn on NetLog, Chrome’s built-in event tracer for the entire network stack.
DNS_LOOKUP_START, DNS_LOOKUP_END
TCP_CONNECT, SSL_HANDSHAKE, PROXY_CONNECT
HTTP2_SESSION, QUIC_SESSION
URL_REQUEST_START, HTTP_STREAM_JOB, URL_REQUEST_END
SOCKET_POOL_CREATED_SOCKET, SOCKET_POOL_BOUND_TO_CONNECT_JOB
DNS_LOOKUP_START
to URL_REQUEST_END
. https://netlog-viewer.appspot.com
) for filtering, timeline graphs, and per-event inspection