-
Hello, I left an issue because I couldn't find a cool answer while using the lighthouse api. Why are the metrics values with observed different from those without observed? (What does observed mean?) The following can be obtained from metrics from audits that can be obtained with the lighthouse API. You can see the difference between firstContentfulPaint at 982 and observedFirstContentfulPaint at 741. Why is this difference happening? (Actually, I want to get the value of load, but the only load value I can get from the api is observedLoad, so I came to this question. Lighthouse is also generating reports using non-observed figures. If so, how can I know the load..?) Another question.. observedLoad is sometimes measured as 3096 and observedLargestContentfulPaint is sometimes measured as 4464. observedLargestContentfulPaint is measured to be larger than observedLoad. I wonder if the load metric only means loading the resource, not the completion of rendering(paint) in the browser. Thank you :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
By default, Lighthouse will load the page normally without any throttling applied, and then compute what the metric values would have been if there was throttling. The variables named See https://github.com/GoogleChrome/lighthouse/blob/master/docs/throttling.md for more info
|
Beta Was this translation helpful? Give feedback.
By default, Lighthouse will load the page normally without any throttling applied, and then compute what the metric values would have been if there was throttling. The variables named
observed*
represent the metric values before throttling is simulated.See https://github.com/GoogleChrome/lighthouse/blob/master/docs/throttling.md for more info