cypress-io / cypress

Fast, easy and reliable testing for anything that runs in a browser.
https://cypress.io
MIT License
46.69k stars 3.16k forks source link

Spike in CPU usage when iterating over large 'body' object with long timeout. #6944

Closed BirgitPohl closed 2 years ago

BirgitPohl commented 4 years ago

Current behavior:

Cypress interactive mode is trying things out with long timeouts.

CPU usage goes high and computer becomes warm.

Assumptions: Therefore doing too much on my CPU and network and therefore networks turns off.

https://youtu.be/IIpUElTV1Sk (Unlisted video, only you can see it)

When I kill the Cypress process, wifi turns on by itself.

Desired behavior:

Cypress does handle long timeouts.

It does not overflow the system and therefore does not overuse CPU and network, so that nothing turns itself off.

Test code to reproduce

Versions

MacOS 10.15.3

"cypress-cucumber-preprocessor": "^2.0.1", "cypress": "^4.2.0",

The timeout length is intentionally set:

{
  "testFiles": "**/*.feature",
  "chromeWebSecurity": false,
  "defaultCommandTimeout": 60000,
  "video": true
}
jennifer-shehane commented 4 years ago

This is fairly difficult to reproduce on our end without a fully reproducible example of the tests. Can you provide the tests?

I would try removing the cypress-cucumber-preprocessor to see if this makes a difference, the preprocessor may be utilizing a lot of memory.

Can you follow these instructions that will log CPU and memory usage of processes during the Cypress run and share these results also? https://on.cypress.io/troubleshooting#Log-memory-and-CPU-usage

BirgitPohl commented 4 years ago

Here is the repo. The preprocessor is removed and the test build like it is using the preprocessor.

As I suspected, it was not the preprocessor, because the only thing which changed was the defaultCommandTimeout and this is a Cypress thing. cy.get() and cy.visit() as well as listening to routes is a Cypress thing. :)

The Logs

```text > DEBUG=cypress:server:util:process_profiler cypress open cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────┬──────────────┬────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────┼──────────────┼────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'cypress' │ 1 │ '18344' │ 75.1 │ 75.1 │ 96.2 │ 96.2 │ 96.2 │ cypress:server:util:process_profiler │ 1 │ 'other' │ 2 │ '18348, 18349' │ 0 │ 0 │ 1.9 │ 1.9 │ 1.9 │ cypress:server:util:process_profiler │ 2 │ 'TOTAL' │ 3 │ '-' │ 75.1 │ 75.1 │ 98.1 │ 98.1 │ 98.1 │ cypress:server:util:process_profiler └─────────┴───────────┴──────────────┴────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +0ms GET /__/ 200 6.957 ms - - GET /__cypress/runner/cypress_runner.css 200 5.259 ms - - GET /__cypress/runner/cypress_runner.js 200 4.175 ms - - GET /__cypress/static/favicon.ico 200 1.543 ms - - GET /__cypress/iframes/integration/visit_spec.js 200 3.749 ms - 739 GET /__cypress/runner/fonts/fa-solid-900.woff2 200 1.508 ms - 76120 GET /__cypress/runner/fonts/fa-regular-400.woff2 200 765.022 ms - 13600 GET /__cypress/tests?p=cypress/support/index.js-737 200 1272.452 ms - - GET /__cypress/tests?p=cypress/integration/visit_spec.js-373 200 1262.705 ms - - GET /__/ 200 0.791 ms - - GET /__cypress/runner/cypress_runner.css 200 2.264 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬─────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼─────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 5 │ '18381, 18390, 18385, 18387, 18405' │ 64.1 │ 64.1 │ 397.43 │ 397.43 │ 397.43 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 38.5 │ 56.8 │ 231.88 │ 164.04 │ 231.88 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 12.9 │ 12.9 │ 92.96 │ 92.96 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 64.07 │ 64.07 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 39.11 │ 39.11 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18410, 18411' │ 0 │ 0 │ 1.91 │ 1.9 │ 1.91 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 12 │ '-' │ 115.5 │ 95.3 │ 827.35 │ 462.72 │ 827.35 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴─────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s GET /__cypress/runner/cypress_runner.js 200 1.519 ms - - GET /__cypress/iframes/integration/visit_spec.js 200 1.149 ms - 743 GET /__cypress/runner/fonts/fa-solid-900.woff2 200 2.524 ms - 76120 GET /__cypress/runner/fonts/fa-regular-400.woff2 200 2.118 ms - 13600 GET /__cypress/tests?p=cypress/support/index.js-059 200 5.739 ms - - GET /__cypress/tests?p=cypress/integration/visit_spec.js-725 200 4.919 ms - - GET / 200 25.895 ms - - GET /typo3temp/assets/compressed/merged-0f48aab13049e2b9b231ff24e69b7753-235c020fe0296f72edead210ca8161fb.css 200 136.043 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/adw_flugreise_white.png 200 129.977 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/logo.svg 200 155.296 ms - - GET /typo3temp/assets/compressed/c5da614ee3-a6f6c0736298b631fcd82f6119829985.css 200 151.411 ms - - GET /typo3temp/assets/compressed/merged-54fc1b424197f6902573664c562b52ae-c3503a625a154af1f7490a80ea7dbef8.js 200 166.410 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/sk-bundle-styles-c3be4924cd16b8844d5d.css 200 157.139 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/adw_kreuzfahrt_white.png 200 27.600 ms - - GET /fileadmin/user_upload/fly_help_Teaser-Button.jpg 200 31.881 ms - - GET /fileadmin/user_upload/All-Inclusive-Teaser_Button.jpg 200 60.213 ms - - GET /fileadmin/user_upload/Gutscheine_Ostern-Teaser-Button.jpg 200 43.340 ms - - GET /fileadmin/user_upload/Buchen_ohne_Risiko_Teaser-Button.png 200 58.459 ms - - GET /fileadmin/user_upload/kuechenparty_Teaser-Button.jpg 200 62.426 ms - - GET /fileadmin/user_upload/reise-outlet-Teaser-Button.png 200 67.620 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ekomi.jpg 200 151.580 ms - - GET /fileadmin/_processed_/7/1/csm_guenstige-urlaubsreisen-sonnenklar.tv_0fc98592f2.jpg 200 73.482 ms - - GET /fileadmin/_processed_/e/d/csm_guenstiger-urlaub-mit-sonnenklar.tv_9c5b75f1d1.jpg 200 79.557 ms - - GET /fileadmin/_processed_/d/1/csm_rom-kolosseum_b1b583c88d.jpg 200 201.417 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/sk-input-icon.png 200 31.993 ms - - GET /fileadmin/_processed_/1/d/csm_Header-Standard-Traeume-haben-keine-Grenzen_v2_a56c0d33ce.jpg 200 55.238 ms - - GET /fileadmin/_processed_/a/1/csm_Roc-Barlovento_ADWADT-Tease_f256c97beb.jpg 200 25.776 ms - - GET /fileadmin/_processed_/0/b/csm_AbuDhabi_ADWADT-Teaser_4b4fe26dc1.jpg 200 29.771 ms - - GET /img/e/524/365/top5/HS_Splendida_003.jpg 200 47.793 ms - - GET /fileadmin/_processed_/4/c/csm_ADW_Vorschau_AdWAdT-Teaser_c146dd72ed.jpg 200 36.922 ms - - GET /img/e/524/365/top5/2014_0000077648.jpg 200 43.609 ms - - GET /fileadmin/_processed_/3/6/csm_212986AIDANovaADW_41c04c8c5d.jpg 200 65.425 ms - - GET /img/e/524/365/top5/2014_0000092718.jpg 200 53.063 ms - - GET /fileadmin/_processed_/3/d/csm_adw-adt-teaser-tv-deals_neu_aa95719961.jpg 200 31.224 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/sk-bundle-javascript-643d731ad0d3ad68982c.js 200 64.311 ms - - GET /fileadmin/_processed_/5/5/csm_TV-Archiv_Teaser_NEU_3e823f4962.jpg 200 82.080 ms - - GET /fileadmin/_processed_/f/f/csm_Kostenlos-stornierbar_Karussellteaser_haeckchen_c7564f8f6e.jpg 200 25.529 ms - - GET /fileadmin/_processed_/3/2/csm_Reisehinweis_Test_bb580ba561.jpg 200 78.198 ms - - GET /fileadmin/_processed_/c/e/csm_217219_Kairaba-Mirbat-UFA_0e4ac43ad8.jpg 200 89.462 ms - - GET /fileadmin/_processed_/5/0/csm_Fernreisejuwelen_Karussellt_4bd094ed36.jpg 200 52.164 ms - - GET /fileadmin/_processed_/5/d/csm_Flims_Sliderteaser_fee164cab5.jpg 200 42.985 ms - - GET /fileadmin/_processed_/2/c/csm_UFA_Waterworld_Belek_ADWADT_71a1263e0f.jpg 200 72.952 ms - - GET /fileadmin/_processed_/4/8/csm_Reisetipp-Deutschland-nordsee_Sliderteaser_589963c840.jpg 200 81.065 ms - - GET /fileadmin/_processed_/2/9/csm_Abu-Dhabi_NEU_Sliderteaser_14442b917c.jpg 200 82.490 ms - - GET /fileadmin/_processed_/a/1/csm_Gambia_Sliderteaser_Neu_38966b95d4.jpg 200 74.562 ms - - GET /fileadmin/_processed_/2/0/csm_emirate-dubai-slider-teaser_714d907216.jpg 200 74.997 ms - - GET /fileadmin/_processed_/4/e/csm_portugal-slider-teaser_db5ad792f9.jpg 200 55.209 ms - - GET /fileadmin/_processed_/0/f/csm_aegypten-slider-teaser_5db80d6424.jpg 200 80.893 ms - - GET /fileadmin/_processed_/4/4/csm_thailand-slider-teaser_9db37332f0.jpg 200 42.567 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ekomiStarsIn.png 200 36.959 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ekomiStars.png 200 41.523 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Social/facebook.png 200 32.220 ms - - GET /fileadmin/_processed_/6/5/csm_karibik-urlaub-slider-tease_e3a3b9acf3.jpg 200 51.356 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Social/instagram.png 200 34.710 ms - - GET /fileadmin/_processed_/e/4/csm_kanaren-slider-teaser_acd9625d47.jpg 200 31.111 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Social/youtube.png 200 39.929 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Social/pinterest.png 200 33.936 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Social/googleplay.png 200 31.945 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Social/appstore.png 200 28.904 ms - - GET /fileadmin/_processed_/1/5/csm_tuerkei-slider-teaser_50fc0cea80.jpg 200 36.212 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Deutschlandcard.png 200 31.143 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Security/ekomiStarsInSmall.png 200 26.531 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Security/komi.png 200 25.004 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Security/tuev-leistung.png 200 24.622 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Security/tuev-service.png 200 25.466 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Security/ekomiStarsSmall.png 200 45.225 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Security/ssl.png 200 38.147 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Security/norstat.png 200 41.563 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Payment/visa.png 200 26.285 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Payment/americanexpress.png 200 29.527 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Payment/mastercard.png 200 26.481 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Payment/sepa.png 200 35.111 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/footer/Payment/rechnung.png 200 45.001 ms - - GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 25.511 ms - - HEAD / - - ms - - HEAD / - - ms - - HEAD / - - ms - - GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 32.536 ms - - POST /ajax/getUserCookie 200 95.330 ms - - GET //typo3conf/ext/theme/Resources/Public/Images/vip-logo-ausgeloggt.png 200 26.619 ms - - POST /auth/is-logged 200 74.248 ms - - GET //typo3conf/ext/theme/Resources/Public/Images/logo.svg 200 24.369 ms - - POST /ajax/tvLive 200 166.646 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/sktv-tv-live-poster.jpg 200 40.097 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/flowplayer726.css?v=201810230920 200 25.914 ms - - GET /typo3conf/ext/theme/Resources/Public/Js/flowplayer.min.js?v=201810230920&_=1586349193425 200 58.036 ms - - GET /typo3conf/ext/theme/Resources/Public/Js/flowplayer.dashjs.min.js?v=201810230920&_=1586349193426 200 58.128 ms - - GET /typo3conf/ext/theme/Resources/Public/Fonts/flowplayer.woff2 200 25.874 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/loading-white.gif 200 24.999 ms - - GET /suchen/weltweit/zeitraum(01.05.2020-01.05.2021,beliebig) 200 104.161 ms - - GET /typo3conf/ext/theme/Resources/Public/ibe-bundles/sk-bundle-javascript-77a2071e9bda7a611b7c.css 200 29.003 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/loading-image.svg 200 24.635 ms - - GET /typo3conf/ext/theme/Resources/Public/ibe-bundles/sk-bundle-styles-77a2071e9bda7a611b7c.css 200 33.207 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ibe-breadcrump-PREV.svg 200 29.884 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/hotel-area-gray.png 200 24.497 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/club-gray.png 200 29.694 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/family-items-gray.png 200 27.525 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ibe-breadcrump-CURRENT.svg 200 69.483 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ibe-breadcrump-grey.svg 200 61.908 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/internet-grey.png 200 46.694 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/wellness-gray.png 200 27.925 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/pool-gray.png 200 32.846 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/sport-gray.png 200 31.104 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/adultshotel-grey.png 200 28.157 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/region-list-waves.png 200 28.161 ms - - GET /typo3conf/ext/theme/Resources/Public/ibe-bundles/sk-bundle-javascript-03e04b477c288d8ac089.js 200 42.960 ms - - GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 26.120 ms - - GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 25.665 ms - - POST /auth/is-logged 200 65.746 ms - - GET /fileadmin/sonnenklar/redakteur/pics/destinations/Beliebteste-Reiseziele-IBE.jpg 200 46.322 ms - - GET /fileadmin/sonnenklar/redakteur/pics/destinations/tuerkei/Tuerkei_Infos.jpg 200 34.523 ms - - GET /fileadmin/user_upload/Ibiza.jpg 200 30.148 ms - - GET /fileadmin/user_upload/Italien.jpg 200 25.913 ms - - GET /fileadmin/user_upload/Malta.jpg 200 45.498 ms - - GET /fileadmin/sonnenklar/redakteur/pics/destinations/Spanien_Kueste_92071246.jpg 200 33.181 ms - - GET /suchen/Mallorca,T%C3%BCrkische%20%C3%84g%C3%A4is%20&%20Halbinsel%20Bodrum,Rhodos,Hurghada%20-%20Safaga%20-%20El%20Gouna/reiseart(pauschal)/zeitraum(01.05.2020-01.05.2021,beliebig) 200 72.280 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/hotel-area-gray2.png 200 27.829 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/sport-gray2.png 200 28.086 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/family-items-gray2.png 200 24.896 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/internet-gray2.png 200 29.249 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/pool-gray2.png 200 27.602 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/holidaycheck_logo.png 200 29.426 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ibe-breadcrump-blue.svg 200 25.814 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/search/wellness-gray2.png 200 25.902 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 153.3 │ 108.7 │ 765.18 │ 581.31 │ 765.18 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 15.9 │ 43.17 │ 248.4 │ 192.16 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 6.45 │ 87.56 │ 90.26 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.95 │ 64.01 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 36.26 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18420, 18421' │ 0 │ 0 │ 2 │ 1.94 │ 2 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 169.2 │ 119.93 │ 1200.49 │ 708.65 │ 1200.49 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 73.895 ms - - GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 29.703 ms - - POST /auth/is-logged 200 76.784 ms - - GET /img/tt/320/240/00000/THB_999_H2474.jpg 200 26.075 ms - - GET /img/tt/320/240/00000/THB_999_H2421.jpg 200 34.440 ms - - GET /img/tt/320/240/175000/THB_999_H179987.jpg 200 28.825 ms - - GET /img/tt/320/240/00000/THB_999_H2565.jpg 200 25.941 ms - - GET /img/tt/320/240/20000/THB_999_H21149.jpg 200 42.111 ms - - GET /img/tt/320/240/00000/THB_999_H2374.jpg 200 43.363 ms - - GET /img/tr/320/240/20657/65476174.jpg 200 27.730 ms - - GET /img/tt/320/240/85000/THB_999_H86510.jpg 200 29.818 ms - - GET /img/tt/320/240/45000/THB_999_H48733.jpg 200 30.707 ms - - GET /de/merkzettel?integrated=1 200 376.045 ms - - GET /_nuxt/d16a3f6ee197ce028053.js 200 58.505 ms - - GET /_nuxt/d5e1cd681f9a218d50c8.js 200 48.807 ms - - GET /_nuxt/98d3fd57f57d193ff8fd.css 200 121.549 ms - - GET /_nuxt/92c11ca02fb99f052467.css 200 128.460 ms - - GET /_nuxt/c6b99d398f227ce4de16.css 200 161.874 ms - - GET /_nuxt/da4e6fa19b5086594c63.js 200 58.424 ms - - GET /_nuxt/c413df8c85852660567f.js 200 179.397 ms - - GET /_nuxt/341261c99464e6cef730.js 200 145.815 ms - - GET /_nuxt/74d2407257170b668856.js 200 37.338 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18387, 18385, 18405, 18418' │ 130 │ 115.8 │ 893.34 │ 685.32 │ 893.34 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 54.8 │ 46.08 │ 248.09 │ 206.14 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 4.3 │ 87.57 │ 89.36 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.95 │ 63.99 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 35.3 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18424, 18425' │ 0 │ 0 │ 2 │ 1.95 │ 2 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 184.8 │ 136.15 │ 1328.34 │ 863.57 │ 1328.34 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s GET /_nuxt/img/f74e278.svg 200 77.516 ms - - GET /_nuxt/img/09cf861.svg 200 85.901 ms - - GET /_nuxt/img/736b898.svg 200 86.917 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18418, 18405' │ 138.3 │ 121.43 │ 1026.65 │ 770.65 │ 1026.65 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 2.8 │ 37.42 │ 248.32 │ 214.58 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 3.23 │ 87.57 │ 88.92 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.92 │ 63.97 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 34.83 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18430, 18431' │ 0 │ 0 │ 2.01 │ 1.96 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 141.1 │ 137.14 │ 1461.89 │ 983.23 │ 1461.89 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18418, 18405' │ 116 │ 120.34 │ 1381.72 │ 892.86 │ 1381.72 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 1.5 │ 31.43 │ 192.49 │ 210.9 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 2.58 │ 87.51 │ 88.63 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.92 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 34.54 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18432, 18433' │ 0 │ 0 │ 1.9 │ 1.95 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 117.5 │ 133.87 │ 1760.94 │ 1112.85 │ 1760.94 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18418, 18405' │ 124.7 │ 121.07 │ 1249.19 │ 952.25 │ 1381.72 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 1.6 │ 27.17 │ 190.17 │ 207.94 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 2.15 │ 87.51 │ 88.45 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.92 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 34.35 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18434, 18435' │ 0 │ 0 │ 1.95 │ 1.95 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 126.3 │ 132.79 │ 1626.14 │ 1186.18 │ 1760.94 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18418, 18405' │ 116 │ 120.34 │ 1204 │ 988.22 │ 1381.72 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 2.9 │ 24.14 │ 190.99 │ 205.82 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 1.84 │ 87.51 │ 88.31 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.92 │ 63.95 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 34.22 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18438, 18439' │ 0 │ 0 │ 1.91 │ 1.95 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 118.9 │ 131.05 │ 1581.73 │ 1235.62 │ 1760.94 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 122.5 │ 120.61 │ 1444.32 │ 1045.23 │ 1444.32 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 1 │ 21.57 │ 190.77 │ 204.15 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 1.61 │ 87.51 │ 88.21 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.92 │ 63.95 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 34.11 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18440, 18441' │ 0 │ 0 │ 1.94 │ 1.95 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 123.5 │ 130.21 │ 1821.86 │ 1300.76 │ 1821.86 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 158 │ 124.77 │ 1311.88 │ 1074.86 │ 1444.32 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 31 │ 22.51 │ 192.5 │ 202.98 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 1.43 │ 87.51 │ 88.13 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 64 │ 63.95 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 34.03 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18443, 18444' │ 0 │ 0 │ 1.92 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 189 │ 136.09 │ 1691.21 │ 1339.8 │ 1821.86 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s GET / 200 16.346 ms - - GET /typo3temp/assets/compressed/c5da614ee3-a6f6c0736298b631fcd82f6119829985.css 200 80.580 ms - - GET /typo3temp/assets/compressed/merged-0f48aab13049e2b9b231ff24e69b7753-235c020fe0296f72edead210ca8161fb.css 200 72.173 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/sk-bundle-styles-c3be4924cd16b8844d5d.css 200 101.727 ms - - GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 25.456 ms - - GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 25.532 ms - - POST /ajax/getUserCookie 200 77.532 ms - - POST /auth/is-logged 200 61.250 ms - - POST /ajax/tvLive 200 155.260 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/flowplayer726.css?v=201810230920 200 31.399 ms - - GET /typo3conf/ext/theme/Resources/Public/Js/flowplayer.min.js?v=201810230920&_=1586349272518 200 83.847 ms - - GET /typo3conf/ext/theme/Resources/Public/Js/flowplayer.dashjs.min.js?v=201810230920&_=1586349272519 200 64.283 ms - - GET /suchen/weltweit/zeitraum(01.05.2020-01.05.2021,beliebig) 200 102.271 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/logo.svg 200 26.519 ms - - GET //typo3conf/ext/theme/Resources/Public/Images/vip-logo-ausgeloggt.png 200 28.202 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/adw_flugreise_white.png 200 28.342 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/adw_flugreise_white.png 200 41.505 ms - - GET /fileadmin/user_upload/reise-outlet-Teaser-Button.png 200 27.891 ms - - GET /fileadmin/user_upload/All-Inclusive-Teaser_Button.jpg 200 65.076 ms - - GET /fileadmin/user_upload/Gutscheine_Ostern-Teaser-Button.jpg 200 26.764 ms - - GET /fileadmin/user_upload/Buchen_ohne_Risiko_Teaser-Button.png 200 28.303 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/adw_kreuzfahrt_white.png 200 141.566 ms - - GET /fileadmin/user_upload/fly_help_Teaser-Button.jpg 200 86.822 ms - - GET /fileadmin/_processed_/e/d/csm_guenstiger-urlaub-mit-sonnenklar.tv_9c5b75f1d1.jpg 200 50.659 ms - - GET /fileadmin/_processed_/7/1/csm_guenstige-urlaubsreisen-sonnenklar.tv_0fc98592f2.jpg 200 46.286 ms - - GET /fileadmin/user_upload/kuechenparty_Teaser-Button.jpg 200 117.880 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ekomi.jpg 200 61.306 ms - - GET /fileadmin/_processed_/d/1/csm_rom-kolosseum_b1b583c88d.jpg 200 49.770 ms - - GET //typo3conf/ext/theme/Resources/Public/Images/logo.svg 200 60.027 ms - - GET //typo3conf/ext/theme/Resources/Public/Images/vip-logo-ausgeloggt.png 200 34.895 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/logo.svg 200 29.816 ms - - GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 24.562 ms - - GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 27.900 ms - - GET //typo3conf/ext/theme/Resources/Public/Images/logo.svg 200 26.614 ms - - POST /auth/is-logged 200 70.964 ms - - GET /suchen/Mallorca,T%C3%BCrkische%20%C3%84g%C3%A4is%20&%20Halbinsel%20Bodrum,Rhodos,Hurghada%20-%20Safaga%20-%20El%20Gouna/reiseart(pauschal)/zeitraum(01.05.2020-01.05.2021,beliebig) 200 68.389 ms - - GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 28.368 ms - - GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 32.625 ms - - POST /auth/is-logged 200 69.011 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 135.1 │ 125.8 │ 1305.09 │ 1097.88 │ 1444.32 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 3.4 │ 20.77 │ 202.5 │ 202.94 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 1.29 │ 87.51 │ 88.07 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 64 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.97 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18447, 18448' │ 0 │ 0 │ 1.95 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 138.5 │ 136.31 │ 1694.45 │ 1372.05 │ 1821.86 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s GET /de/merkzettel?integrated=1 200 75.109 ms - - GET /_nuxt/c6b99d398f227ce4de16.css 200 44.361 ms - - GET /_nuxt/92c11ca02fb99f052467.css 200 47.330 ms - - GET /_nuxt/98d3fd57f57d193ff8fd.css 200 66.996 ms - - GET /_nuxt/74d2407257170b668856.js 200 102.382 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 119.9 │ 125.26 │ 1421.13 │ 1127.27 │ 1444.32 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 1 │ 19.13 │ 202.3 │ 202.88 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 1.17 │ 87.51 │ 88.02 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 64 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.92 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18449, 18450' │ 0 │ 0 │ 1.93 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 120.9 │ 135.03 │ 1810.26 │ 1408.56 │ 1821.86 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 120.6 │ 124.88 │ 1754.85 │ 1179.56 │ 1754.85 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 2.7 │ 17.86 │ 191.03 │ 201.97 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 1.08 │ 87.51 │ 87.98 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.98 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.88 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18451, 18452' │ 1.7 │ 0.13 │ 1.94 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 125 │ 134.25 │ 2132.71 │ 1464.27 │ 2132.71 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 192.2 │ 130.05 │ 2104.02 │ 1250.68 │ 2104.02 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.8 │ 16.64 │ 191.22 │ 201.2 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.99 │ 87.51 │ 87.94 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.98 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.84 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18453, 18454' │ 0 │ 0.12 │ 1.97 │ 1.95 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 193 │ 138.45 │ 2482.11 │ 1536.97 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18418, 18405, 18387' │ 119.6 │ 129.31 │ 1781.88 │ 1288.62 │ 2104.02 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.2 │ 15.55 │ 191.73 │ 200.57 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.92 │ 87.51 │ 87.91 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.98 │ 63.97 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.81 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18455, 18456' │ 0 │ 0.11 │ 1.9 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 119.8 │ 137.21 │ 2160.4 │ 1578.53 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 122.2 │ 128.83 │ 2011.09 │ 1336.78 │ 2104.02 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 2.7 │ 14.74 │ 191.45 │ 200 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.86 │ 87.51 │ 87.88 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 64 │ 63.97 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.78 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18457, 18458' │ 0 │ 0.11 │ 1.9 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 124.9 │ 136.44 │ 2389.36 │ 1629.21 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 121.7 │ 128.39 │ 1676.45 │ 1358.01 │ 2104.02 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 1.1 │ 13.94 │ 192.33 │ 199.55 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.81 │ 87.52 │ 87.86 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.88 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.76 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18460, 18461' │ 0 │ 0.1 │ 1.9 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 122.8 │ 135.64 │ 2055.47 │ 1654.28 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s GET / 200 6.226 ms - - GET /typo3temp/assets/compressed/c5da614ee3-a6f6c0736298b631fcd82f6119829985.css 200 78.077 ms - - GET /typo3temp/assets/compressed/merged-0f48aab13049e2b9b231ff24e69b7753-235c020fe0296f72edead210ca8161fb.css 200 82.258 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/adw_flugreise_white.png 200 77.941 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/adw_kreuzfahrt_white.png 200 96.427 ms - - GET /fileadmin/user_upload/All-Inclusive-Teaser_Button.jpg 200 31.617 ms - - GET /fileadmin/user_upload/fly_help_Teaser-Button.jpg 200 31.694 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/sk-bundle-styles-c3be4924cd16b8844d5d.css 200 109.074 ms - - GET /fileadmin/user_upload/Buchen_ohne_Risiko_Teaser-Button.png 200 33.859 ms - - GET /fileadmin/user_upload/reise-outlet-Teaser-Button.png 200 48.374 ms - - GET /fileadmin/user_upload/kuechenparty_Teaser-Button.jpg 200 63.853 ms - - GET /fileadmin/_processed_/e/d/csm_guenstiger-urlaub-mit-sonnenklar.tv_9c5b75f1d1.jpg 200 38.719 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ekomi.jpg 200 38.482 ms - - GET /fileadmin/user_upload/Gutscheine_Ostern-Teaser-Button.jpg 200 125.141 ms - - GET /fileadmin/_processed_/7/1/csm_guenstige-urlaubsreisen-sonnenklar.tv_0fc98592f2.jpg 200 35.081 ms - - GET /fileadmin/_processed_/d/1/csm_rom-kolosseum_b1b583c88d.jpg 200 65.387 ms - - GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 26.650 ms - - GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 65.438 ms - - POST /ajax/getUserCookie 200 74.571 ms - - GET //typo3conf/ext/theme/Resources/Public/Images/vip-logo-ausgeloggt.png 200 27.910 ms - - POST /ajax/tvLive 200 91.380 ms - - POST /auth/is-logged 200 114.693 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/flowplayer726.css?v=201810230920 200 24.409 ms - - GET /typo3conf/ext/theme/Resources/Public/Js/flowplayer.min.js?v=201810230920&_=1586349347383 200 58.846 ms - - GET /typo3conf/ext/theme/Resources/Public/Js/flowplayer.dashjs.min.js?v=201810230920&_=1586349347384 200 67.244 ms - - GET /angebot/217859.html 200 61.350 ms - - GET /typo3temp/assets/compressed/c5da614ee3-a6f6c0736298b631fcd82f6119829985.css 200 24.521 ms - - GET /typo3temp/assets/compressed/merged-0f48aab13049e2b9b231ff24e69b7753-235c020fe0296f72edead210ca8161fb.css 200 26.614 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/sk-bundle-styles-c3be4924cd16b8844d5d.css 200 27.651 ms - - GET /fileadmin/sonnenklar/redakteur/pics/destinations/spanien/Fuerteventurai.jpg 200 26.684 ms - - GET /fileadmin/sonnenklar/admin/searchdata/181434bbce358a98e22ecdacae92a449.operators.json 200 30.861 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 157.6 │ 130.11 │ 1689.24 │ 1377.5 │ 2104.02 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 12.6 │ 13.87 │ 200.98 │ 199.63 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0.1 │ 0.76 │ 87.52 │ 87.84 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 63.86 │ 63.96 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 33.4 │ 33.74 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18466, 18467' │ 0 │ 0.09 │ 2.01 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 170.3 │ 137.56 │ 2077.01 │ 1677.77 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s GET /fileadmin/sonnenklar/admin/searchdata/67299417a1598934f4ea7b6b76f49f78.destinations.json 200 23.829 ms - - GET /typo3conf/ext/theme/Resources/Public/Images/ico-gmaps.png 200 27.487 ms - - POST /auth/is-logged 200 70.478 ms - - GET /typo3conf/ext/theme/Resources/Public/bundles/ajax-loader.gif 404 41.868 ms - - GET /img/e/800/600/217859/2018_0000325911.jpg 200 151.141 ms - - GET /fileadmin/transfer/videos16_9/tn640_i-54393.jpg 200 167.558 ms - - GET /fileadmin/transfer/videos16_9/tn640_i-77328.jpg 200 111.754 ms - - GET /fileadmin/transfer/videos16_9/tn640_i-77352.jpg 200 119.049 ms - - GET /fileadmin/transfer/videos16_9/tn640_i-73281.jpg 200 112.849 ms - - GET /fileadmin/transfer/videos16_9/tn640_i-61046.jpg 200 111.343 ms - - GET /fileadmin/transfer/videos16_9/tn640_i-73581.jpg 200 115.970 ms - - GET /de/merkzettel?integrated=1 200 119.997 ms - - GET /_nuxt/98d3fd57f57d193ff8fd.css 200 40.248 ms - - GET /_nuxt/c6b99d398f227ce4de16.css 200 38.946 ms - - GET /_nuxt/92c11ca02fb99f052467.css 200 44.265 ms - - GET /_nuxt/74d2407257170b668856.js 200 100.535 ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18387, 18385, 18418, 18405' │ 220.6 │ 135.13 │ 1805.52 │ 1401.28 │ 2104.02 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 2.9 │ 13.29 │ 179.98 │ 198.6 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0.1 │ 0.73 │ 69.13 │ 86.8 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 43.55 │ 62.82 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 26.84 │ 33.35 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18469, 18470' │ 0 │ 0.09 │ 1.98 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 223.6 │ 142.09 │ 2127.01 │ 1701.41 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18387, 18385, 18418, 18405' │ 207.6 │ 138.95 │ 2013.77 │ 1433.51 │ 2104.02 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 14.4 │ 13.35 │ 177.4 │ 197.54 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.69 │ 68.2 │ 85.82 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 42.35 │ 61.74 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 25.32 │ 32.93 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18471, 18472' │ 1.9 │ 0.18 │ 1.93 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 223.9 │ 146.18 │ 2328.96 │ 1732.79 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18387, 18385, 18418, 18405' │ 259.7 │ 144.98 │ 2167.88 │ 1470.23 │ 2167.88 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 23.7 │ 13.84 │ 174.68 │ 196.45 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.66 │ 66.76 │ 84.87 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 42.32 │ 60.77 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.73 │ 32.47 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18473, 18474' │ 0 │ 0.17 │ 1.94 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 283.4 │ 152.71 │ 2477.32 │ 1768.24 │ 2482.11 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18387, 18385, 18405, 18418' │ 254 │ 150.18 │ 2283.93 │ 1508.98 │ 2283.93 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 16.5 │ 13.96 │ 178.73 │ 195.64 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.62 │ 65.98 │ 83.97 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 42.31 │ 59.89 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.73 │ 32.05 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18475, 18476' │ 0 │ 0.16 │ 1.99 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 270.5 │ 158.07 │ 2596.67 │ 1805.9 │ 2596.67 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18418, 18405' │ 163.7 │ 150.79 │ 2466.75 │ 1552.51 │ 2466.75 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.4 │ 13.37 │ 177.84 │ 194.87 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.6 │ 65.99 │ 83.15 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0.1 │ 0 │ 41.28 │ 59.05 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.73 │ 31.68 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18488, 18489' │ 0 │ 0.16 │ 1.92 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 164.2 │ 158.33 │ 2777.51 │ 1848.14 │ 2777.51 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s HEAD / - - ms - - HEAD / - - ms - - HEAD / - - ms - - cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18418, 18405' │ 173.3 │ 151.77 │ 2572.3 │ 1596.85 │ 2572.3 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 13.2 │ 13.36 │ 175.52 │ 194.06 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.57 │ 66 │ 82.41 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 41.38 │ 58.28 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.75 │ 31.33 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18514, 18515' │ 0.1 │ 0.15 │ 1.96 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 186.6 │ 159.51 │ 2880.91 │ 1891.18 │ 2880.91 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: Between the upper output and the lower output the wifi turned off cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 397.3 │ 162 │ 2642.39 │ 1640.42 │ 2642.39 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 5 │ 13.03 │ 177.68 │ 193.41 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.55 │ 66.02 │ 81.72 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 41.39 │ 57.58 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.75 │ 31.02 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18517, 18518' │ 3.3 │ 0.28 │ 1.98 │ 1.95 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 405.6 │ 169.36 │ 2953.22 │ 1933.66 │ 2953.22 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18418, 18405, 18387' │ 17.6 │ 156.22 │ 2437.08 │ 1672.28 │ 2642.39 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.2 │ 12.53 │ 178.44 │ 192.83 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.52 │ 66.04 │ 81.1 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 41.41 │ 56.93 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.76 │ 30.72 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18520, 18521' │ 0 │ 0.27 │ 1.96 │ 1.95 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 17.8 │ 163.53 │ 2748.7 │ 1965 │ 2953.22 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18387, 18405, 18418' │ 6.8 │ 150.48 │ 2420.99 │ 1701.08 │ 2642.39 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.4 │ 12.09 │ 180.5 │ 192.37 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.5 │ 66.05 │ 80.52 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 41.39 │ 56.33 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.76 │ 30.46 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18522, 18523' │ 0 │ 0.26 │ 1.9 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 7.2 │ 157.74 │ 2734.59 │ 1993.51 │ 2953.22 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18385, 18390, 18405, 18387, 18418' │ 4 │ 145.05 │ 2407.81 │ 1727.25 │ 2642.39 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.4 │ 11.67 │ 176.16 │ 191.8 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.49 │ 66.07 │ 79.98 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 41.39 │ 55.78 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.76 │ 30.21 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18525, 18526' │ 0 │ 0.25 │ 1.9 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 4.4 │ 152.26 │ 2717.09 │ 2019.35 │ 2953.22 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18385, 18390, 18405, 18387, 18418' │ 3.8 │ 140.01 │ 2407.64 │ 1751.55 │ 2642.39 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.4 │ 11.28 │ 176.76 │ 191.28 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.47 │ 66.08 │ 79.49 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 41.39 │ 55.26 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.76 │ 29.98 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18528, 18529' │ 0 │ 0.24 │ 1.9 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 4.2 │ 147.16 │ 2717.53 │ 2043.43 │ 2953.22 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18405, 18387, 18418' │ 92.9 │ 138.38 │ 2008.55 │ 1760.42 │ 2642.39 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 0.4 │ 10.92 │ 177.35 │ 190.81 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0 │ 0.45 │ 66.09 │ 79.02 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18352, 18350' │ 0 │ 0 │ 41.39 │ 54.79 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.76 │ 29.76 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18530, 18531' │ 0 │ 0.23 │ 1.9 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 93.3 │ 145.36 │ 2319.04 │ 2052.61 │ 2953.22 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s cypress:server:util:process_profiler current & mean memory and CPU usage by process group: cypress:server:util:process_profiler ┌─────────┬───────────────────┬──────────────┬────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐ cypress:server:util:process_profiler │ (index) │ group │ processCount │ pids │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │ cypress:server:util:process_profiler ├─────────┼───────────────────┼──────────────┼────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤ cypress:server:util:process_profiler │ 0 │ 'Chrome' │ 6 │ '18381, 18390, 18385, 18418, 18405, 18387' │ 13.3 │ 134.21 │ 1987.37 │ 1767.98 │ 2642.39 │ cypress:server:util:process_profiler │ 1 │ 'cypress' │ 1 │ '18344' │ 2.7 │ 10.65 │ 173.55 │ 190.26 │ 248.4 │ cypress:server:util:process_profiler │ 2 │ 'desktop-gui' │ 1 │ '18353' │ 0.1 │ 0.44 │ 66.16 │ 78.6 │ 92.96 │ cypress:server:util:process_profiler │ 3 │ 'electron-shared' │ 2 │ '18350, 18352' │ 0 │ 0 │ 41.39 │ 54.34 │ 64.07 │ cypress:server:util:process_profiler │ 4 │ 'plugin' │ 1 │ '18380' │ 0 │ 0 │ 23.76 │ 29.56 │ 39.11 │ cypress:server:util:process_profiler │ 5 │ 'other' │ 2 │ '18542, 18543' │ 0 │ 0.23 │ 1.92 │ 1.94 │ 2.01 │ cypress:server:util:process_profiler │ 6 │ 'TOTAL' │ 13 │ '-' │ 16.1 │ 141.19 │ 2294.15 │ 2060.4 │ 2953.22 │ cypress:server:util:process_profiler └─────────┴───────────────────┴──────────────┴────────────────────────────────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘ +10s ^C ```

The CPU goes up and up and up until it reaches around 180 percent usage and when the wifi turns off, it goes up again to over 400. This is also when the computer gets really warm. It works when the dashboard is open. Then I can cypress run, the CPU goes up, but maybe it takes a bit more to crash the wifi.

Edit: BTW: I updated to Cypress 4.3.0 :)

jennifer-shehane commented 4 years ago

Setting numTestsKeptInMemory: 0 in the cypress.json may help reduce the CPU usage. I'd suggest doing that to help for now.

I think this is due to a few lines in your test, where you are wrapping over the entire body of an iframe and asserting against the body, with the increasing timeout making the issue worse.

There shouldn't be a reason to have the commandTimeout : 60000 for this specific .find() command (since you already have the body object, retrying will not change the Object value) - and I'd suggest overwriting it with a lower timeout as a current workaround.

I can recreate a spike in CPU using the following code:

index.html

<!DOCTYPE html>
<html>
<body>
  <iframe src="iframe.html"></iframe>
</body>
</html>

iframe.html

// basically some very large HTML
it("visit example", () => {
  cy.visit("index.html")
  cy.get("iframe")
    .its("0.contentDocument.body").should("not.be.empty")
    .then(cy.wrap)
     // increase timeout to see issue
    .find(".wishlist h6", { timeout: 60000 }) 
    .should("be.visible")
})

Without { timeout: 60000 }

Screen Shot 2020-04-09 at 5 27 43 PM

With { timeout: 60000 }

Screen Shot 2020-04-09 at 5 30 38 PM

Seems to be spending a lot of time on this formatProperty method.

https://github.com/cypress-io/cypress/blob/develop/packages/driver/src/cy/chai/inspect.js#L314:L314

bahunov commented 3 years ago

Setting numTestsKeptInMemory: 0 in the cypress.json may help reduce the CPU usage. I'd suggest doing that to help for now.

I think this is due to a few lines in your test, where you are wrapping over the entire body of an iframe and asserting against the body, with the increasing timeout making the issue worse.

There shouldn't be a reason to have the commandTimeout : 60000 for this specific .find() command (since you already have the body object, retrying will not change the Object value) - and I'd suggest overwriting it with a lower timeout as a current workaround.

I can recreate a spike in CPU using the following code:

index.html

<!DOCTYPE html>
<html>
<body>
  <iframe src="iframe.html"></iframe>
</body>
</html>

iframe.html

// basically some very large HTML
it("visit example", () => {
  cy.visit("index.html")
  cy.get("iframe")
    .its("0.contentDocument.body").should("not.be.empty")
    .then(cy.wrap)
     // increase timeout to see issue
    .find(".wishlist h6", { timeout: 60000 }) 
    .should("be.visible")
})

Without { timeout: 60000 }

Screen Shot 2020-04-09 at 5 27 43 PM

With { timeout: 60000 }

Screen Shot 2020-04-09 at 5 30 38 PM

Seems to be spending a lot of time on this formatProperty method.

https://github.com/cypress-io/cypress/blob/develop/packages/driver/src/cy/chai/inspect.js#L314:L314

@jennifer-shehane why does longer timeout impact CPU usage? I have in some of my e2e cases set to following:

pageLoadTimeout: 120000,
    defaultCommandTimeout: 30000,
    responseTimeout: 100000,
    retries: {
      runMode: 1,
      openMode: 0
    }

I'm also seeing spike in cpu usage in logs then it just hangs:

[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.312Z cypress:proxy:http:response-middleware received response { req: { method: 'POST', proxiedUrl: 'http://localhost:9000/app/internalRemarks/fetchRemarks', headers: { host: 'localhost:9000', 'proxy-connection': 'keep-alive', 'content-length': '202', accept: 'application/json, text/plain, */*', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/85.0.4183.102 Safari/537.36', 'content-type': 'application/json;charset=UTF-8', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:9000/dpr', 'accept-encoding': 'gzip', 'accept-language': 'en-US' } }, incomingRes: { headers: { 'x-powered-by': 'Express', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'cache-control': 'no-cache, no-store, max-age=0, must-revalidate', pragma: 'no-cache', expires: '0', 'content-type': 'application/json;charset=UTF-8', 'transfer-encoding': 'chunked', date: 'Tue, 01 Dec 2020 19:52:47 GMT', connection: 'close' }, statusCode: 200 } }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.312Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'AttachPlainTextStreamFn' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'InterceptResponse' }
[2020-12-01T19:52:47.336Z] Tue, 01 Dec 2020 19:52:47 GMT cypress:net-stubbing:server:intercept-response InterceptResponse { req: { url: '/app/internalRemarks/fetchRemarks' }, backendRequest: undefined }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'PatchExpressSetHeader' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'SetInjectionLevel' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http:response-middleware injection levels: { isInitial: false, wantsInjection: false, wantsSecurityRemoved: false }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'OmitProblematicHeaders' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'MaybePreventCaching' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'MaybeStripDocumentDomainFeaturePolicy' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'CopyCookiesFromIncomingRes' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'MaybeSendRedirectToClient' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'CopyResponseStatusCode' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'ClearCyInitialCookie' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:server:server Getting remote state: { auth: null, props: { port: '9000', tld: 'localhost', domain: '' }, origin: 'http://localhost:9000', strategy: 'http', visiting: false, domainName: 'localhost', fileServer: null }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'MaybeEndWithEmptyBody' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'MaybeInjectHtml' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'MaybeRemoveSecurity' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'GzipBody' }
[2020-12-01T19:52:47.336Z] 2020-12-01T19:52:47.313Z cypress:proxy:http Running middleware { stage: 'IncomingResponse', middlewareName: 'SendResponseBodyToClient' }
[2020-12-01T19:52:49.848Z] 2020-12-01T19:52:49.317Z cypress:server:util:socket_allowed allowed socket closed, removing { localPort: 40408 }
[2020-12-01T19:52:49.848Z] 2020-12-01T19:52:49.318Z cypress:server:util:socket_allowed allowed socket closed, removing { localPort: 42302 }
[2020-12-01T19:52:57.920Z] 2020-12-01T19:52:57.290Z cypress:server:util:process_profiler current & mean memory and CPU usage by process group:
[2020-12-01T19:52:57.920Z] ┌─────────┬───────────────────┬──────────────┬───────────────────────────────────────────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐
[2020-12-01T19:52:57.920Z] │ (index) │       group       │ processCount │                         pids                          │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │
[2020-12-01T19:52:57.920Z] ├─────────┼───────────────────┼──────────────┼───────────────────────────────────────────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤
[2020-12-01T19:52:57.920Z] │    0    │     'Chrome'      │      7       │ '3804, 3817, 3818, 3839, 3869, 3841 ... 1 more items' │   460.02   │     20.25      │  291.2   │   1282.73    │   2524.43   │
[2020-12-01T19:52:57.920Z] │    1    │     'cypress'     │      1       │                        '1081'                         │    0.11    │      1.06      │  224.51  │    307.71    │   369.85    │
[2020-12-01T19:52:57.920Z] │    2    │ 'electron-shared' │      4       │               '1093, 1253, 1094, 1289'                │     0      │       0        │  172.04  │    170.94    │   172.04    │
[2020-12-01T19:52:57.920Z] │    3    │     'plugin'      │      1       │                        '1337'                         │     0      │       0        │  83.38   │    85.78     │    91.05    │
[2020-12-01T19:52:57.920Z] │    4    │      'other'      │      2       │                     '5499, 5500'                      │     0      │       0        │   3.49   │     3.57     │    5.46     │
[2020-12-01T19:52:57.920Z] │    5    │      'TOTAL'      │      15      │                          '-'                          │   460.13   │     20.81      │  774.62  │   1818.01    │   3022.21   │
[2020-12-01T19:52:57.920Z] └─────────┴───────────────────┴──────────────┴───────────────────────────────────────────────────────┴────────────┴
BlueWinds commented 2 years ago

This seems closely related to a bug fixed in 9,2, where unnecessary snapshots were being created while retrying commands. In some browsers this manifested as a memory leak followed by the browser crashing or hanging, while in others in caused an unnecessarily large amount of CPU usage, scaling with the size of the page under test.

https://github.com/cypress-io/cypress/issues/18549

A more technical discussion of the causes and resolution of the issue can be found in the PR that closed it: https://github.com/cypress-io/cypress/pull/19311

I'm going close this issue as resolved in 9.2,0 - if anyone involved is still seeing it after updating to that release, please let me know and I'll reopen.