Some incomplete notes
- Driver - Interfaces with Chrome Debugging Protocol (API viewer)
- Gatherers - Uses Driver to collect information about the page. Minimal post-processing.
- Artifacts - output of a gatherer
- Audits - Using the Artifacts as input, Audits evaluate a test and assign pass/fail/scoring.
- Computed Artifacts - Generated on-demand from artifacts, these add additional meaning, and are often shared amongst multiple audits.
- Categories - Grouping audit results into a user-facing section of the report (eg.
Best Practices
). Applies weighting and overall scoring to the section.
- Interacting with Chrome: The Chrome protocol connection maintained via WebSocket for the CLI
chrome.debuggger
API when in the Chrome extension. - Event binding & domains: Some domains must be
enable()
d so they issue events. Once enabled, they flush any events that represent state. As such, network events will only issue after the domain is enabled. All the protocol agents resolve theirDomain.enable()
callback after they have flushed any pending events. See example:
// will NOT work
driver.sendCommand('Security.enable').then(_ => {
driver.on('Security.securityStateChanged', state => { /* ... */ });
})
// WILL work! happy happy. :)
driver.on('Security.securityStateChanged', state => { /* ... */ }); // event binding is synchronous
driver.sendCommand('Security.enable');
- Debugging the protocol: Read Better debugging of the Protocol.
lighthouse-core/gather/computed/trace-of-tab.js
and lighthouse-core/lib/traces/tracing-processor.js
provide the core transformation of a trace into more meaningful objects. Each raw trace event has a monotonically increasing timestamp in microseconds, a thread ID, a process ID, a duration in microseconds (potentially), and other applicable metadata properties such as the event type, the task name, the frame, etc. Learn more about trace events.
{
'pid': 41904, // process ID
'tid': 1295, // thread ID
'ts': 1676836141, // timestamp in microseconds
'ph': 'X', // trace event type
'cat': 'toplevel', // trace category from which this event came
'name': 'MessageLoop::RunTask', // relatively human-readable description of the trace event
'dur': 64, // duration of the task in microseconds
'args': {}, // contains additional data such as frame when applicable
}
Trace-of-tab identifies trace events for key moments (navigation start, first meaningful paint, DOM content loaded, trace end, etc) and provides filtered views of just the main process and the main thread events. Because the timestamps are not necessarily interesting in isolation, trace-of-tab also calculates the times in milliseconds of key moments relative to navigation start, thus providing the typical interpretation of first meaningful paint in ms.
{
processEvents: [/* all trace events in the main process */],
mainThreadEvents: [/* all trace events on the main thread */],
timings: {
navigationStart: 0,
firstPaint: 150, // firstPaint time in ms after nav start
/* other key moments */
traceEnd: 16420, // traceEnd time in ms after nav start
},
timestamps: {
navigationStart: 623000000, // navigationStart timestamp in microseconds
firstPaint: 623150000, // firstPaint timestamp in microseconds
/* other key moments */
traceEnd: 639420000, // traceEnd timestamp in microseconds
},
}
Tracing processor takes the output of trace of tab and identifies the top-level main thread tasks, their durations, and corresponding impact on page responsiveness. Tracing processor also translates task timestamps to milliseconds since navigation start for easier interpretation in computed gatherers and audits.
The return value of each audit takes this shape.
The details
object is parsed in report-renderer.js. View other audits for guidance on how to structure details
.