WebmasterID logoWebmasterID
Event tracking

Page timing and Navigation Timing events

Page timing events record how long parts of a page load took — DNS, connection, time to first byte, DOM content loaded, and full load. The browser's Navigation Timing API exposes these durations precisely, and you can send them as analytics events to monitor real-world speed. They are pure timings, so they are among the safest events to collect, carrying no information about who the visitor is.

Verified against primary sources

What this means

The browser's Navigation Timing API (and the newer PerformanceNavigationTiming entry) records timestamps across the page-load lifecycle: domainLookupStart/End, connectStart/End, responseStart (time to first byte), domContentLoadedEventEnd, and loadEventEnd. Subtracting these timestamps yields durations you can send as timing events to see how fast real visitors load each page.

What to record and why

Useful derived timings include DNS lookup, connection time, time to first byte (server responsiveness), DOM interactive, and full load. Field timings beat lab tests because they reflect real devices and networks. Aggregate them by page and device class, not by visitor: a timing event needs only the metric name, the value in milliseconds, and a path — never anything identifying.

How it appears in analytics and logs

Rising time-to-first-byte points at server or network latency; a large gap between DOM-ready and load points at heavy scripts or images on that page.

Diagnostic use case

Record real-user load milestones (TTFB, DOM ready, full load) as events to spot slow pages and server-side bottlenecks across templates and regions.

What WebmasterID can help detect

WebmasterID can ingest load-timing signals as first-party events, so real-user speed sits next to engagement metrics without cookies or fingerprinting.

Common mistakes

Privacy and accuracy notes

Navigation Timing values are durations measured in the visitor's browser, not identities. Send the milestone name, value, and page path only. This is educational, not legal advice.

Related pages

Sources and verification notes

Last reviewed 2026-06-24. Facts are checked against primary/official sources where available; uncertain specifics are marked “Data not yet verified” rather than guessed.