mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
[ContentCacheMetrics] add new metric for absolute time spent in PDF.js
This commit is contained in:
parent
11a44ff07c
commit
97693b49c2
1 changed files with 3 additions and 0 deletions
|
@ -30,6 +30,9 @@ function emitPdfStats(stats, timings) {
|
|||
function emitPdfCachingStats(stats, timings) {
|
||||
if (!stats['pdf-size']) return // double check
|
||||
|
||||
// How much extra time did we spent in PDF.js?
|
||||
Metrics.timing('compute-pdf-caching', timings['compute-pdf-caching'])
|
||||
|
||||
// How large is the overhead of hashing up-front?
|
||||
const fraction =
|
||||
timings.compileE2E - timings['compute-pdf-caching'] !== 0
|
||||
|
|
Loading…
Reference in a new issue