Skip to content

Commit 03dd4e8

Browse files
Add browser timing metrics (#263)
* Upgrade puppeteer and typescript * Upgrade prettier * Add latest TS * Use PUPPETEER_REVISIONS * Update revisions path * Performance issue investigation + add metrics * clean up timing metrics * fixes * update dev flags * clean up * add metric for reusable mode * update image rendering service dashboard * add back waitUntil * fix Docker config volume * revert changes to Docker volume * fix change to HA docker-compose Co-authored-by: Clarity-89 <[email protected]>
1 parent d38ae75 commit 03dd4e8

File tree

12 files changed

+349
-131
lines changed

12 files changed

+349
-131
lines changed

default.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
},
3939

4040
"verboseLogging": false,
41-
"dumpio": false
41+
"dumpio": false,
42+
"timingMetrics": false
4243
}
4344
}

dev.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
"maxConcurrency": 5
3838
},
3939

40-
"verboseLogging": false,
41-
"dumpio": true
40+
"verboseLogging": true,
41+
"dumpio": false,
42+
"timingMetrics": true
4243
}
4344
}

devenv/docker/ha/config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"service": {
33
"port": 8081,
44
"metrics": {
5-
"enabled": false,
5+
"enabled": true,
66
"collectDefaultMetrics": true,
77
"requestDurationBuckets": [1, 5, 7, 9, 11, 13, 15, 20, 30]
88
}
@@ -12,11 +12,11 @@
1212
"chromeBin": null,
1313
"args": ["--no-sandbox", "--disable-gpu"],
1414
"ignoresHttpsErrors": false,
15-
"timingMetrics": true,
1615
"mode": "default",
1716
"clustering": {
1817
"mode": "browser",
1918
"maxConcurrency": 5
20-
}
19+
},
20+
"timingMetrics": true
2121
}
2222
}

0 commit comments

Comments
 (0)