mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 02:32:56 +00:00
Merge pull request #8591 from overleaf/jpa-fix-pdf-caching-metrics
[clsi] fix options forwarding to pdf caching summary metrics GitOrigin-RevId: 255fca6a1e980f08deec97ede5bc1d27e83dbda1
This commit is contained in:
parent
a4fa86deed
commit
338eaf9a07
1 changed files with 1 additions and 7 deletions
|
@ -29,7 +29,7 @@ function emitPdfStats(stats, timings, request) {
|
|||
emitPdfCachingStats(stats, timings, request)
|
||||
} else {
|
||||
// How much bandwidth will the pdf incur when downloaded in full?
|
||||
Metrics.summary('pdf-bandwidth', stats['pdf-size'], 1, request.metricsOpts)
|
||||
Metrics.summary('pdf-bandwidth', stats['pdf-size'], request.metricsOpts)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,6 @@ function emitPdfCachingStats(stats, timings, request) {
|
|||
Metrics.summary(
|
||||
'overhead-compute-pdf-ranges',
|
||||
fraction * 100 - 100,
|
||||
1,
|
||||
request.metricsOpts
|
||||
)
|
||||
|
||||
|
@ -95,7 +94,6 @@ function emitPdfCachingStats(stats, timings, request) {
|
|||
Metrics.summary(
|
||||
'new-pdf-ranges-relative-to-total-ranges',
|
||||
(stats['pdf-caching-n-new-ranges'] / stats['pdf-caching-n-ranges']) * 100,
|
||||
1,
|
||||
request.metricsOpts
|
||||
)
|
||||
}
|
||||
|
@ -104,7 +102,6 @@ function emitPdfCachingStats(stats, timings, request) {
|
|||
Metrics.summary(
|
||||
'cacheable-ranges-to-pdf-size',
|
||||
(stats['pdf-caching-total-ranges-size'] / stats['pdf-size']) * 100,
|
||||
1,
|
||||
request.metricsOpts
|
||||
)
|
||||
|
||||
|
@ -120,7 +117,6 @@ function emitPdfCachingStats(stats, timings, request) {
|
|||
Metrics.summary(
|
||||
'pdf-bandwidth-savings',
|
||||
100 - (sizeWhenDownloadedInFull / stats['pdf-size']) * 100,
|
||||
1,
|
||||
request.metricsOpts
|
||||
)
|
||||
|
||||
|
@ -128,7 +124,6 @@ function emitPdfCachingStats(stats, timings, request) {
|
|||
Metrics.summary(
|
||||
'pdf-bandwidth',
|
||||
sizeWhenDownloadedInFull,
|
||||
1,
|
||||
request.metricsOpts
|
||||
)
|
||||
|
||||
|
@ -137,7 +132,6 @@ function emitPdfCachingStats(stats, timings, request) {
|
|||
Metrics.summary(
|
||||
'pdf-ranges-disk-size',
|
||||
stats['pdf-caching-new-ranges-size'] - stats['pdf-caching-reclaimed-space'],
|
||||
1,
|
||||
request.metricsOpts
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue