@oneuptime/common 10.0.10 → 10.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Server/Utils/Browser.ts
CHANGED
|
@@ -16,7 +16,7 @@ export type Page = PlaywrightPage;
|
|
|
16
16
|
export type Browser = PlaywrightBrowser;
|
|
17
17
|
|
|
18
18
|
export default class BrowserUtil {
|
|
19
|
-
// Chromium arguments for stability in containerized environments
|
|
19
|
+
// Chromium arguments for stability and memory optimization in containerized environments
|
|
20
20
|
public static chromiumStabilityArgs: string[] = [
|
|
21
21
|
"--no-sandbox",
|
|
22
22
|
"--disable-setuid-sandbox",
|
|
@@ -26,9 +26,32 @@ export default class BrowserUtil {
|
|
|
26
26
|
"--disable-dbus", // no D-Bus daemon in containers
|
|
27
27
|
"--disable-features=dbus", // additional D-Bus feature gate
|
|
28
28
|
"--no-zygote", // skip zygote process that fails OOM score adjustments in containers
|
|
29
|
+
// Memory optimization flags
|
|
30
|
+
"--single-process", // run browser in single process to reduce memory overhead
|
|
31
|
+
"--disable-extensions", // no extensions needed for monitoring
|
|
32
|
+
"--disable-background-networking", // disable background network requests
|
|
33
|
+
"--disable-default-apps", // don't load default apps
|
|
34
|
+
"--disable-sync", // no sync needed
|
|
35
|
+
"--disable-translate", // no translation needed
|
|
36
|
+
"--disable-backgrounding-occluded-windows", // don't throttle hidden windows
|
|
37
|
+
"--disable-renderer-backgrounding", // don't background renderers
|
|
38
|
+
"--disable-background-timer-throttling", // don't throttle timers
|
|
39
|
+
"--disable-ipc-flooding-protection", // allow high IPC throughput
|
|
40
|
+
"--memory-pressure-off", // disable memory pressure signals that cause GC
|
|
41
|
+
"--js-flags=--max-old-space-size=256", // limit V8 heap to 256MB
|
|
42
|
+
"--disable-features=TranslateUI,BlinkGenPropertyTrees", // disable unused features
|
|
43
|
+
"--disable-component-update", // don't update components
|
|
44
|
+
"--disable-domain-reliability", // no domain reliability monitoring
|
|
45
|
+
"--disable-client-side-phishing-detection", // no phishing detection
|
|
46
|
+
"--no-first-run", // skip first run experience
|
|
47
|
+
"--disable-hang-monitor", // no hang monitor
|
|
48
|
+
"--disable-popup-blocking", // allow popups for testing
|
|
49
|
+
"--disable-prompt-on-repost", // no repost prompts
|
|
50
|
+
"--metrics-recording-only", // disable metrics uploading
|
|
51
|
+
"--safebrowsing-disable-auto-update", // no safe browsing updates
|
|
29
52
|
];
|
|
30
53
|
|
|
31
|
-
// Firefox preferences for stability in containerized environments
|
|
54
|
+
// Firefox preferences for stability and memory optimization in containerized environments
|
|
32
55
|
public static firefoxStabilityPrefs: Record<
|
|
33
56
|
string,
|
|
34
57
|
string | number | boolean
|
|
@@ -37,6 +60,21 @@ export default class BrowserUtil {
|
|
|
37
60
|
"media.hardware-video-decoding.enabled": false, // disable hardware video decoding
|
|
38
61
|
"layers.acceleration.disabled": true, // disable GPU-accelerated layers
|
|
39
62
|
"network.http.spdy.enabled.http2": true, // keep HTTP/2 enabled
|
|
63
|
+
// Memory optimization preferences
|
|
64
|
+
"javascript.options.mem.max": 256 * 1024, // limit JS memory to 256MB in KB
|
|
65
|
+
"javascript.options.mem.high_water_mark": 128, // GC high water mark in MB
|
|
66
|
+
"browser.cache.memory.capacity": 16384, // limit memory cache to 16MB
|
|
67
|
+
"browser.cache.disk.enable": false, // disable disk cache
|
|
68
|
+
"browser.sessionhistory.max_entries": 3, // limit session history
|
|
69
|
+
"browser.sessionhistory.max_total_viewers": 0, // don't keep pages in bfcache
|
|
70
|
+
"dom.ipc.processCount": 1, // single content process
|
|
71
|
+
"extensions.update.enabled": false, // no extension updates
|
|
72
|
+
"network.prefetch-next": false, // no prefetching
|
|
73
|
+
"network.dns.disablePrefetch": true, // no DNS prefetch
|
|
74
|
+
"network.http.speculative-parallel-limit": 0, // no speculative connections
|
|
75
|
+
"browser.tabs.remote.autostart": false, // disable multi-process
|
|
76
|
+
"media.peerconnection.enabled": false, // disable WebRTC
|
|
77
|
+
"media.navigator.enabled": false, // disable getUserMedia
|
|
40
78
|
};
|
|
41
79
|
|
|
42
80
|
@CaptureSpan()
|
|
@@ -170,7 +170,7 @@ class BrowserUtil {
|
|
|
170
170
|
throw new BadDataException("Firefox executable path not found.");
|
|
171
171
|
}
|
|
172
172
|
}
|
|
173
|
-
// Chromium arguments for stability in containerized environments
|
|
173
|
+
// Chromium arguments for stability and memory optimization in containerized environments
|
|
174
174
|
BrowserUtil.chromiumStabilityArgs = [
|
|
175
175
|
"--no-sandbox",
|
|
176
176
|
"--disable-setuid-sandbox",
|
|
@@ -180,13 +180,51 @@ BrowserUtil.chromiumStabilityArgs = [
|
|
|
180
180
|
"--disable-dbus", // no D-Bus daemon in containers
|
|
181
181
|
"--disable-features=dbus", // additional D-Bus feature gate
|
|
182
182
|
"--no-zygote", // skip zygote process that fails OOM score adjustments in containers
|
|
183
|
+
// Memory optimization flags
|
|
184
|
+
"--single-process", // run browser in single process to reduce memory overhead
|
|
185
|
+
"--disable-extensions", // no extensions needed for monitoring
|
|
186
|
+
"--disable-background-networking", // disable background network requests
|
|
187
|
+
"--disable-default-apps", // don't load default apps
|
|
188
|
+
"--disable-sync", // no sync needed
|
|
189
|
+
"--disable-translate", // no translation needed
|
|
190
|
+
"--disable-backgrounding-occluded-windows", // don't throttle hidden windows
|
|
191
|
+
"--disable-renderer-backgrounding", // don't background renderers
|
|
192
|
+
"--disable-background-timer-throttling", // don't throttle timers
|
|
193
|
+
"--disable-ipc-flooding-protection", // allow high IPC throughput
|
|
194
|
+
"--memory-pressure-off", // disable memory pressure signals that cause GC
|
|
195
|
+
"--js-flags=--max-old-space-size=256", // limit V8 heap to 256MB
|
|
196
|
+
"--disable-features=TranslateUI,BlinkGenPropertyTrees", // disable unused features
|
|
197
|
+
"--disable-component-update", // don't update components
|
|
198
|
+
"--disable-domain-reliability", // no domain reliability monitoring
|
|
199
|
+
"--disable-client-side-phishing-detection", // no phishing detection
|
|
200
|
+
"--no-first-run", // skip first run experience
|
|
201
|
+
"--disable-hang-monitor", // no hang monitor
|
|
202
|
+
"--disable-popup-blocking", // allow popups for testing
|
|
203
|
+
"--disable-prompt-on-repost", // no repost prompts
|
|
204
|
+
"--metrics-recording-only", // disable metrics uploading
|
|
205
|
+
"--safebrowsing-disable-auto-update", // no safe browsing updates
|
|
183
206
|
];
|
|
184
|
-
// Firefox preferences for stability in containerized environments
|
|
207
|
+
// Firefox preferences for stability and memory optimization in containerized environments
|
|
185
208
|
BrowserUtil.firefoxStabilityPrefs = {
|
|
186
209
|
"gfx.webrender.all": false, // disable GPU-based WebRender
|
|
187
210
|
"media.hardware-video-decoding.enabled": false, // disable hardware video decoding
|
|
188
211
|
"layers.acceleration.disabled": true, // disable GPU-accelerated layers
|
|
189
212
|
"network.http.spdy.enabled.http2": true, // keep HTTP/2 enabled
|
|
213
|
+
// Memory optimization preferences
|
|
214
|
+
"javascript.options.mem.max": 256 * 1024, // limit JS memory to 256MB in KB
|
|
215
|
+
"javascript.options.mem.high_water_mark": 128, // GC high water mark in MB
|
|
216
|
+
"browser.cache.memory.capacity": 16384, // limit memory cache to 16MB
|
|
217
|
+
"browser.cache.disk.enable": false, // disable disk cache
|
|
218
|
+
"browser.sessionhistory.max_entries": 3, // limit session history
|
|
219
|
+
"browser.sessionhistory.max_total_viewers": 0, // don't keep pages in bfcache
|
|
220
|
+
"dom.ipc.processCount": 1, // single content process
|
|
221
|
+
"extensions.update.enabled": false, // no extension updates
|
|
222
|
+
"network.prefetch-next": false, // no prefetching
|
|
223
|
+
"network.dns.disablePrefetch": true, // no DNS prefetch
|
|
224
|
+
"network.http.speculative-parallel-limit": 0, // no speculative connections
|
|
225
|
+
"browser.tabs.remote.autostart": false, // disable multi-process
|
|
226
|
+
"media.peerconnection.enabled": false, // disable WebRTC
|
|
227
|
+
"media.navigator.enabled": false, // disable getUserMedia
|
|
190
228
|
};
|
|
191
229
|
export default BrowserUtil;
|
|
192
230
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Browser.js","sourceRoot":"","sources":["../../../../Server/Utils/Browser.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAGL,QAAQ,EACR,OAAO,GACR,MAAM,YAAY,CAAC;AACpB,OAAO,SAAS,MAAM,aAAa,CAAC;AACpC,OAAO,gBAAgB,MAAM,wCAAwC,CAAC;AACtE,OAAO,cAAc,MAAM,4BAA4B,CAAC;AACxD,OAAO,WAAW,MAAM,yBAAyB,CAAC;AAClD,OAAO,MAAM,MAAM,UAAU,CAAC;AAC9B,OAAO,WAAW,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,MAAM,IAAI,CAAC;AAKpB,MAAqB,WAAW;
|
|
1
|
+
{"version":3,"file":"Browser.js","sourceRoot":"","sources":["../../../../Server/Utils/Browser.ts"],"names":[],"mappings":"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"}
|