File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const cheerioCache = new QuickLRU({
25
25
// Don't use arrow function so we can access `this`.
26
26
onEviction : function onEviction ( ) {
27
27
const { heapUsed } = process . memoryUsage ( )
28
- statsd . gauge ( 'rendering_cache_cheerio' , heapUsed , [ `size:${ this . size } ` ] )
28
+ statsd . gauge ( 'middleware. rendering_cache_cheerio' , heapUsed , [ `size:${ this . size } ` ] )
29
29
} ,
30
30
} )
31
31
@@ -34,7 +34,7 @@ const gzipCache = new QuickLRU({
34
34
// Don't use arrow function so we can access `this`.
35
35
onEviction : function onEviction ( ) {
36
36
const { heapUsed } = process . memoryUsage ( )
37
- statsd . gauge ( 'rendering_cache_gzip' , heapUsed , [ `size:${ gzipCache . size } ` ] )
37
+ statsd . gauge ( 'middleware. rendering_cache_gzip' , heapUsed , [ `size:${ gzipCache . size } ` ] )
38
38
} ,
39
39
} )
40
40
You can’t perform that action at this time.
0 commit comments