Skip to content

fix: fix problem with redirecting to desktop #60487

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

koko57
Copy link
Contributor

@koko57 koko57 commented Apr 18, 2025

Explanation of Change

Fixed Issues

$ #20121
PROPOSAL: #20121 (comment)

Tests

PREREQUISITES: for testing on dev you need to comment out this line of code:

CONFIG.ENVIRONMENT === CONST.ENVIRONMENT.DEV ||

For easier testing you can use chrome extension: REDIRECTOR properly configured to be able to click the Magic Link and being redirected to dev/staging without the need to copy/paste and change the URL

Screenshot 2025-04-18 at 14 10 00

CASE 1 - user is logged out on web and desktop

  1. Check if you see log in page on web (to verify you're logged out)
  2. Start logging in to the desktop app
  3. Go to the mailbox -> click a link (if using redirector; or copy and change the URL)
  4. Verify that after clicking or copying/pasting the URL you land on the Magic Code page with the "just sign in here" link
  5. Click that link, verify that you're successfully logged in.
  6. After that the prompt "Open Electron.app" should appear, click Open app
  7. Verify that the user is properly logged in, there is no error.

CASE 2 - user logged in on web, logging in with the same account on desktop

  1. Repeat steps 2 and 3 from the previous case
  2. Verify that after clicking or copying/pasting the URL you land on the home page, then repeat steps 6-7 from the previous case.

CASE 3 - user logged in on web (User A), logging in with a different account (User B) on the desktop

  1. Go through the same flow as for CASE 2
  2. Verify that on the web the account you're logged in is opened (User A), but in the desktop app you're logged in to the one you started logging in on desktop (User B)
  • Verify that no errors appear in the JS console

Offline tests

QA Steps

// TODO: These must be filled out, or the issue title must include "[No QA]."

Same as above

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I used JaimeGPT to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
Screen.Recording.2025-04-17.at.17.40.24.mp4
Screen.Recording.2025-04-17.at.17.39.26.mp4
Screen.Recording.2025-04-17.at.17.38.32.mp4
MacOS: Desktop

@koko57 koko57 marked this pull request as ready for review April 18, 2025 12:22
@koko57 koko57 requested a review from a team as a code owner April 18, 2025 12:22
@melvin-bot melvin-bot bot requested review from hoangzinh and removed request for a team April 18, 2025 12:22
Copy link

melvin-bot bot commented Apr 18, 2025

@hoangzinh Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@hoangzinh
Copy link
Contributor

CASE 3
Verify that on the web the account you're logged in is opened (User A), but in the desktop app you're logged in to the one you started logging in on desktop (User B)

Hi @koko57, I recall in above step, App should show magic code in Web, shouldn't it?

@koko57
Copy link
Contributor Author

koko57 commented Apr 18, 2025

@hoangzinh no for dev it shows logged in account

Screenshot 2025-04-18 at 16 03 51

this works that way even without the changes

for prod it should be
Screenshot 2025-04-18 at 16 02 34

@koko57
Copy link
Contributor Author

koko57 commented Apr 18, 2025

Screenshot 2025-04-18 at 16 28 23

I've also check on staging - here I have the magic code without link. While working on this issue I've noticed that for prod I either get the Magic Code screen or the Abracadabra while logged in on web. I think that something's off with autoAuthStateWithDefault in ValidateLoginPage.

@@ -35,16 +35,24 @@ function promptToOpenInDesktopApp(initialUrl = '') {
} else {
// Match any magic link (/v/<account id>/<6 digit code>)
const isMagicLink = CONST.REGEX.ROUTES.VALIDATE_LOGIN.test(window.location.pathname);
const shouldAuthenticateWithCurrentAccount = isMagicLink && !!currentUserAccountID && window.location.pathname.includes(currentUserAccountID.toString());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const shouldAuthenticateWithCurrentAccount = isMagicLink && !!currentUserAccountID && window.location.pathname.includes(currentUserAccountID.toString());
const shouldAuthenticateWithCurrentAccount = !isMagicLink || !!currentUserAccountID && window.location.pathname.includes(currentUserAccountID.toString());

I'm considering do we have any regression with current condition. Previously, it was always be true if it's not a magic link.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, you're right - but I will do it slightly different way -

const shouldAuthenticateWithCurrentAccount = !isMagicLink ||  (isMagicLink && !!currentUserAccountID && window.location.pathname.includes(currentUserAccountID.toString()));

@hoangzinh
Copy link
Contributor

hoangzinh commented Apr 19, 2025

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified that the composer does not automatically focus or open the keyboard on mobile unless explicitly intended. This includes checking that returning the app from the background does not unexpectedly open the keyboard.
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Screen.Recording.2025-04-24.at.20.54.59.mov
Android: mWeb Chrome
Screen.Recording.2025-04-24.at.20.46.30.mov
iOS: Native
Screen.Recording.2025-04-24.at.20.40.50.ios.mov
iOS: mWeb Safari
Screen.Recording.2025-04-24.at.20.43.23.ios.safari.mov
MacOS: Chrome / Safari
Screen.Recording.2025-04-24.at.20.05.00.web.mov
MacOS: Desktop
Screen.Recording.2025-04-24.at.19.48.57.desktop.mov

Copy link

melvin-bot bot commented Apr 24, 2025

We did not find an internal engineer to review this PR, trying to assign a random engineer to #20121 as well as to this PR... Please reach out for help on Slack if no one gets assigned!

@melvin-bot melvin-bot bot requested a review from Julesssss April 24, 2025 13:56
@Julesssss Julesssss merged commit c48fd3e into Expensify:main Apr 24, 2025
17 checks passed
@Julesssss
Copy link
Contributor

While working on this issue I've noticed that for prod I either get the Magic Code screen or the Abracadabra while logged in on web. I think that something's off with autoAuthStateWithDefault in ValidateLoginPage.

Hi @koko57, nice work here. Before moving on would you be able to look further into this potential autoAuthStateWithDefault issue? It would be great to figure out the issue here. I'll create an issue if so

@OSBotify
Copy link
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@github-actions github-actions bot added the DeployBlockerCash This issue or pull request should block deployment label Apr 24, 2025
Copy link
Contributor

Performance Comparison Report 📊 (1/8)

⚠️ Some tests did not pass successfully, so some results are omitted from final report: Report typing, Linking

Significant Changes To Duration

Name Duration
Chat opening Chat TTI 793.535 ms → 969.662 ms (+176.127 ms, +22.2%) 🔴
Show details
Name Duration
Chat opening Chat TTI Baseline
Mean: 793.535 ms
Stdev: 33.347 ms (4.2%)
Runs: 721.8410650007427 729.3144530002028 740.0018309997395 742.4369709994644 744.9958089999855 748.5842690002173 754.8994559999555 755.3356929998845 755.8247070005164 758.2403560001403 758.7320959996432 764.1754569998011 766.4512130003422 768.7663169996813 769.1635750001296 774.3448489997536 776.6800539996475 785.1019289996475 785.7657069992274 785.8350419998169 787.7648520004004 795.2121179997921 795.3706470001489 798.5847170008346 799.4224850004539 800.206949999556 801.5764569994062 803.1276049995795 803.2553310003132 804.8822020003572 805.009561999701 805.2988689998165 805.9728999994695 809.0971689997241 809.3216959992424 809.9099129997194 811.7519540004432 811.9760330002755 817.8815919999033 820.8706459999084 821.1823730003089 827.2123209992424 832.259277000092 833.7458500005305 836.988851999864 840.0999360000715 840.4907630002126 847.9140619998798 854.2539880005643 859.6093350006267

Current
Mean: 969.662 ms
Stdev: 322.073 ms (33.2%)
Runs: 486.0866290004924 603.8033039998263 627.9066969994456 685.7774260006845 726.5116379996762 742.7862959997728 748.9705409994349 754.2243659999222 754.3042399995029 754.9024249995127 755.1939709996805 757.2273760000244 761.1360680004582 761.219197999686 761.9801839999855 770.1591389998794 778.0854500001296 779.0837820004672 781.2502439999953 786.232219000347 792.1675619995221 793.441081000492 796.3767500007525 796.8298749998212 799.0614839997143 801.5883789993823 805.746907999739 809.972289999947 811.2917080000043 811.4220789996907 814.7401119992137 815.6974290004 816.6175130000338 819.972453000024 821.0248619997874 821.5774330003187 824.0670579997823 825.3468030001968 831.6639820002019 832.9089359994978 836.3685309998691 840.515788000077 873.0870360005647 1146.1293549994007 1185.4968259995803 1190.203329000622 1452.3105069994926 1460.475545999594 1467.646851000376 1470.0724289994687 1478.0240080002695 1484.6708180001006 1496.5779220005497 1526.9200449995697 1555.871907999739 1563.2246509995311 1567.9868580000475 1573.3718680003658 1594.8667820002884 1597.554891999811

Copy link
Contributor

Performance Comparison Report 📊 (2/8)

Meaningless Changes To Duration (1/7)

Show entries
Name Duration
App start time nativeLaunch 24.322 ms → 24.125 ms (-0.197 ms, -0.8%)
App start time nativeLaunchEnd_To_appCreationStart 80.183 ms → 83.217 ms (+3.033 ms, +3.8%)
App start time appCreationEnd_To_contentAppeared 512.867 ms → 515.000 ms (+2.133 ms, ±0.0%)
App start time runJsBundle 322.650 ms → 324.683 ms (+2.033 ms, +0.6%)
App start time appCreation 69.283 ms → 76.250 ms (+6.967 ms, +10.1%)
App start time regularAppStart 0.022 ms → 0.022 ms (+0.000 ms, +1.0%)
App start time TTI 1409.047 ms → 1419.801 ms (+10.754 ms, +0.8%)
App start time contentAppeared_To_screenTTI 724.105 ms → 719.383 ms (-4.722 ms, -0.7%)
App start time (CPU) 158.871 % → 157.693 % (-1.178 %, -0.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 399.142 MB → 394.121 MB (-5.021 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 29.046 % → 29.155 % (+0.109 %, ±0.0%)
Open search router TTI Load Search Options 141.772 ms → 143.043 ms (+1.271 ms, +0.9%)
Open search router TTI Open Search Router TTI 1198.617 ms → 1221.504 ms (+22.887 ms, +1.9%)
Open search router TTI (CPU) 153.291 % → 154.095 % (+0.804 %, +0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 415.995 MB → 417.304 MB (+1.310 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.760 % → 25.540 % (-0.220 %, -0.9%)
Chat opening (CPU) 164.885 % → 163.600 % (-1.285 %, -0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 411.318 MB → 412.694 MB (+1.376 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 31.574 % → 31.639 % (+0.065 %, ±0.0%)
Money request - Open Manual Tracking 142.923 ms → 145.729 ms (+2.806 ms, +2.0%)
Money request - Open Contacts 228.226 ms → 233.005 ms (+4.779 ms, +2.1%)
Money request - Open Create 143.172 ms → 140.554 ms (-2.618 ms, -1.8%)
Money request (CPU) 181.333 % → 179.813 % (-1.520 %, -0.8%)
Money request (FPS) 58.390 FPS → 58.529 FPS (+0.139 FPS, ±0.0%)
Money request (RAM) 470.766 MB → 462.673 MB (-8.093 MB, -1.7%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.597 % → 43.383 % (-0.213 %, ±0.0%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 24.322 ms
Stdev: 2.896 ms (11.9%)
Runs: 21 21 21 21 21 21 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 24 24 24 24 24 25 25 25 25 25 25 26 26 26 26 26 26 28 28 28 29 29 29 30 30 30 31 32

Current
Mean: 24.125 ms
Stdev: 2.612 ms (10.8%)
Runs: 21 21 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 26 26 26 27 29 29 30 30 30 31 31
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 80.183 ms
Stdev: 11.005 ms (13.7%)
Runs: 60 62 63 65 65 66 67 68 68 68 68 70 71 71 71 72 74 75 75 76 76 76 76 77 77 77 78 78 78 78 78 79 79 80 80 81 82 83 83 84 84 84 85 85 88 89 89 89 91 91 91 92 92 95 96 99 100 103 105 108

Current
Mean: 83.217 ms
Stdev: 11.989 ms (14.4%)
Runs: 61 65 66 67 67 68 68 70 71 71 71 71 72 72 73 73 75 75 75 76 77 79 79 80 80 80 80 80 81 81 81 81 82 83 83 84 86 86 86 89 90 91 92 92 93 94 94 94 95 95 96 96 98 99 99 100 102 104 106 118
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 512.867 ms
Stdev: 36.462 ms (7.1%)
Runs: 455 459 459 463 466 468 469 469 470 472 472 475 479 480 482 483 485 486 486 491 494 496 502 502 502 504 504 505 505 506 507 513 515 517 517 517 521 523 526 527 528 529 530 534 536 539 542 546 546 553 554 555 558 564 566 568 574 574 590 614

Current
Mean: 515.000 ms
Stdev: 36.421 ms (7.1%)
Runs: 434 454 457 462 465 465 467 472 474 478 478 481 483 484 487 488 488 489 490 492 494 502 504 505 505 506 507 508 510 510 510 512 513 513 519 523 525 528 531 532 541 542 544 544 547 548 549 552 553 553 555 561 561 562 563 563 564 577 582 594
App start time runJsBundle Baseline
Mean: 322.650 ms
Stdev: 22.474 ms (7.0%)
Runs: 275 275 283 283 285 285 287 287 290 290 293 293 293 293 296 296 299 299 300 300 304 304 304 304 305 305 306 306 307 307 307 307 308 308 309 309 309 309 310 310 311 311 312 312 312 312 312 312 316 316 318 318 319 319 319 319 320 320 320 320 321 321 322 322 324 324 325 325 326 326 327 327 327 327 328 328 331 331 332 332 334 334 334 334 335 335 338 338 340 340 340 340 340 340 343 343 346 346 348 348 348 348 350 350 350 350 352 352 353 353 355 355 357 357 358 358 363 363 383 383

Current
Mean: 324.683 ms
Stdev: 24.587 ms (7.6%)
Runs: 272 272 272 272 273 273 292 292 293 293 294 294 298 298 299 299 300 300 302 302 302 302 303 303 303 303 303 303 305 305 305 305 310 310 310 310 314 314 314 314 315 315 315 315 318 318 318 318 319 319 319 319 319 319 319 319 321 321 321 321 322 322 323 323 325 325 325 325 326 326 330 330 333 333 333 333 335 335 336 336 338 338 338 338 341 341 341 341 342 342 343 343 345 345 345 345 345 345 346 346 350 350 351 351 354 354 358 358 358 358 361 361 361 361 368 368 374 374 386 386

Copy link
Contributor

Performance Comparison Report 📊 (3/8)

Meaningless Changes To Duration (2/7)

Show entries
Name Duration
App start time nativeLaunch 24.322 ms → 24.125 ms (-0.197 ms, -0.8%)
App start time nativeLaunchEnd_To_appCreationStart 80.183 ms → 83.217 ms (+3.033 ms, +3.8%)
App start time appCreationEnd_To_contentAppeared 512.867 ms → 515.000 ms (+2.133 ms, ±0.0%)
App start time runJsBundle 322.650 ms → 324.683 ms (+2.033 ms, +0.6%)
App start time appCreation 69.283 ms → 76.250 ms (+6.967 ms, +10.1%)
App start time regularAppStart 0.022 ms → 0.022 ms (+0.000 ms, +1.0%)
App start time TTI 1409.047 ms → 1419.801 ms (+10.754 ms, +0.8%)
App start time contentAppeared_To_screenTTI 724.105 ms → 719.383 ms (-4.722 ms, -0.7%)
App start time (CPU) 158.871 % → 157.693 % (-1.178 %, -0.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 399.142 MB → 394.121 MB (-5.021 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 29.046 % → 29.155 % (+0.109 %, ±0.0%)
Open search router TTI Load Search Options 141.772 ms → 143.043 ms (+1.271 ms, +0.9%)
Open search router TTI Open Search Router TTI 1198.617 ms → 1221.504 ms (+22.887 ms, +1.9%)
Open search router TTI (CPU) 153.291 % → 154.095 % (+0.804 %, +0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 415.995 MB → 417.304 MB (+1.310 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.760 % → 25.540 % (-0.220 %, -0.9%)
Chat opening (CPU) 164.885 % → 163.600 % (-1.285 %, -0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 411.318 MB → 412.694 MB (+1.376 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 31.574 % → 31.639 % (+0.065 %, ±0.0%)
Money request - Open Manual Tracking 142.923 ms → 145.729 ms (+2.806 ms, +2.0%)
Money request - Open Contacts 228.226 ms → 233.005 ms (+4.779 ms, +2.1%)
Money request - Open Create 143.172 ms → 140.554 ms (-2.618 ms, -1.8%)
Money request (CPU) 181.333 % → 179.813 % (-1.520 %, -0.8%)
Money request (FPS) 58.390 FPS → 58.529 FPS (+0.139 FPS, ±0.0%)
Money request (RAM) 470.766 MB → 462.673 MB (-8.093 MB, -1.7%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.597 % → 43.383 % (-0.213 %, ±0.0%)
Show details
Name Duration
App start time appCreation Baseline
Mean: 69.283 ms
Stdev: 9.218 ms (13.3%)
Runs: 52 55 56 58 58 58 58 58 59 59 59 60 60 60 61 61 63 63 63 65 65 67 67 67 67 68 68 68 68 68 69 69 69 70 70 70 71 71 72 73 73 74 75 75 75 75 76 76 76 76 78 80 80 81 82 84 85 88 90 95

Current
Mean: 76.250 ms
Stdev: 9.959 ms (13.1%)
Runs: 54 54 58 61 61 62 64 66 66 66 68 68 68 68 69 69 70 70 71 72 72 72 73 74 74 74 75 75 75 75 76 78 78 78 78 78 78 80 80 80 81 81 83 83 84 85 85 86 86 86 87 87 88 89 89 89 92 93 93 100
App start time regularAppStart Baseline
Mean: 0.022 ms
Stdev: 0.003 ms (12.5%)
Runs: 0.01696799974888563 0.01769999973475933 0.017700000666081905 0.018025999888777733 0.018554999493062496 0.018757999874651432 0.018880000337958336 0.018919999711215496 0.018960999324917793 0.01912400033324957 0.019164999946951866 0.019449999555945396 0.0195720000192523 0.019612999632954597 0.019612999632954597 0.019857000559568405 0.019897999241948128 0.020181999541819096 0.020263999700546265 0.02042700070887804 0.0204670000821352 0.020669999532401562 0.02075199969112873 0.020792999304831028 0.020832999609410763 0.020874000154435635 0.021077999845147133 0.021158000454306602 0.021402999758720398 0.02144400030374527 0.021524999290704727 0.021525000222027302 0.0215659998357296 0.021566000767052174 0.02160700038075447 0.021809999831020832 0.022216999903321266 0.022297999821603298 0.022501000203192234 0.022664000280201435 0.023111999966204166 0.023152999579906464 0.023396999575197697 0.02343800012022257 0.023518000729382038 0.0236820001155138 0.023721999488770962 0.0242510000243783 0.024495000019669533 0.02465900033712387 0.024781000800430775 0.024861999787390232 0.02612300030887127 0.026814999990165234 0.02718100044876337 0.027262999676167965 0.02807600051164627 0.02937799971550703

Current
Mean: 0.022 ms
Stdev: 0.003 ms (13.3%)
Runs: 0.01721200067549944 0.017822999507188797 0.017943999730050564 0.018025999888777733 0.018148000352084637 0.018596000038087368 0.018717999570071697 0.018880000337958336 0.01896199956536293 0.019042999483644962 0.019043000414967537 0.019164999946951866 0.019247000105679035 0.019247000105679035 0.019328000023961067 0.0194089999422431 0.019898000173270702 0.019937999546527863 0.02001999970525503 0.020101000554859638 0.020142000168561935 0.020182999782264233 0.020589999854564667 0.02075199969112873 0.021077999845147133 0.021077999845147133 0.021647000685334206 0.021851000376045704 0.022013000212609768 0.022095000371336937 0.02221599966287613 0.022256999276578426 0.022299000062048435 0.022664000280201435 0.02270600013434887 0.02274599950760603 0.022948999889194965 0.023518999107182026 0.023559999652206898 0.023884999565780163 0.023884999565780163 0.023926000110805035 0.023926000110805035 0.0240879999473691 0.024128999561071396 0.024252000264823437 0.02437299955636263 0.024373000487685204 0.02490299940109253 0.025390000082552433 0.02596099954098463 0.02628600038588047 0.02636800054460764 0.026569999754428864 0.026732999831438065 0.027507000602781773 0.031046999618411064
App start time TTI Baseline
Mean: 1409.047 ms
Stdev: 66.592 ms (4.7%)
Runs: 1259.4005960002542 1273.3634799998254 1295.5536320004612 1313.0379170002416 1322.2972750002518 1322.5998510001227 1328.1619229996577 1335.5288270004094 1337.7601789999753 1341.0080930003896 1344.4350220002234 1345.6498980000615 1350.7198900002986 1351.9190809996799 1358.93017399963 1362.1916640000418 1365.1750649996102 1380.7727589998394 1396.7252430003136 1396.957706999965 1397.9912200002 1398.64332200028 1402.0341389998794 1404.9475570004433 1406.1102280002087 1408.800017000176 1418.6358439996839 1424.5571450004354 1427.2862010002136 1430.2094539999962 1438.7800879999995 1440.1380080003291 1440.3908780002967 1441.8141430001706 1444.0438280003145 1444.923427999951 1446.7308550002053 1449.7363520003855 1451.9026290001348 1455.1706159999594 1456.3913860004395 1461.5120740002021 1461.9709809999913 1473.036282000132 1473.150015000254 1482.9534440003335 1491.6587159996852 1506.2474410003051 1522.0657200003043 1526.1786270001903 1526.6833450002596 1533.561339999549

Current
Mean: 1419.801 ms
Stdev: 70.576 ms (5.0%)
Runs: 1291.3909849999472 1297.6659040004015 1299.6142199998721 1316.3461520001292 1326.2800439996645 1329.3584340000525 1330.8598830001429 1335.2064349995926 1342.2586319996044 1354.4343640003353 1355.7563239997253 1363.5853760000318 1367.4818919999525 1370.7643189998344 1373.9405190004036 1375.283228999935 1378.4947819998488 1378.6704970002174 1378.9874870004132 1381.8027739999816 1381.855282000266 1389.1258220002055 1395.8875249996781 1407.5046110004187 1411.007671999745 1414.2679500002414 1416.1512660002336 1416.7289760001004 1423.7635460002348 1423.7775980001315 1425.2651810003445 1425.5203740000725 1427.3512359997258 1428.1260810000822 1433.9160399995744 1439.391125000082 1440.7918199999258 1442.5908850003034 1444.5739280004054 1447.5356390001252 1467.5184180000797 1471.890246000141 1475.305486000143 1481.0306700002402 1492.261706000194 1503.8395189996809 1511.8250649999827 1519.4512999998406 1520.800459999591 1527.2208759998903 1535.1393600003794 1537.5905929999426 1541.4120610002428 1554.3468850003555 1566.1008919999003
App start time contentAppeared_To_screenTTI Baseline
Mean: 724.105 ms
Stdev: 44.589 ms (6.2%)
Runs: 622.3634799998254 627.4005960002542 644.5288270004094 651.5998510001227 655.0080930003896 664.2972750002518 670.9534440003335 674.2862010002136 674.5536320004612 676.64332200028 677.0379170002416 677.9190809996799 690.1619229996577 692.3908780002967 697.7601789999753 702.4350220002234 706.8141430001706 712.1102280002087 712.7800879999995 714.6358439996839 714.7727589998394 719.9475570004433 721.0341389998794 727.800017000176 728.1750649996102 728.6498980000615 730.957706999965 736.1916640000418 738.9301739996299 739.7198900002986 740.7252430003136 741.9912200002 746.0362820001319 747.9026290001348 749.923427999951 751.1380080003291 752.1500150002539 753.7363520003855 754.5571450004354 756.0438280003145 757.2474410003051 760.1786270001903 761.3913860004395 761.5613399995491 765.5120740002021 769.2094539999962 776.7308550002053 783.6587159996852 785.9709809999913 790.1706159999594 793.0657200003043 822.6833450002596

Current
Mean: 719.383 ms
Stdev: 49.377 ms (6.9%)
Runs: 624.6659040004015 634.2064349995926 640.2832289999351 646.7289760001004 656.3909849999472 656.8027739999816 668.2679500002414 670.4343640003353 673.1512660002336 675.2800439996645 676.5853760000318 677.9405190004036 677.9874870004132 679.2586319996044 682.7643189998344 683.3461520001292 683.6142199998721 685.3584340000525 685.7635460002348 687.5356390001252 691.8598830001429 692.7563239997253 703.8875249996781 707.4947819998488 709.1258220002055 709.5184180000797 712.5046110004187 713.7775980001315 715.4818919999525 715.9160399995744 719.0076719997451 720.6704970002174 721.5203740000725 728.8902460001409 729.5739280004054 736.0306700002402 741.855282000266 745.391125000082 747.7918199999258 753.1260810000822 756.3512359997258 768.5908850003034 769.8395189996809 773.2651810003445 774.305486000143 774.5905929999426 781.2208759998903 782.8250649999827 787.4512999998406 795.1393600003794 796.8004599995911 797.4120610002428 804.261706000194 809.1008919999003 812.3468850003555

Copy link
Contributor

Performance Comparison Report 📊 (4/8)

Meaningless Changes To Duration (3/7)

Show entries
Name Duration
App start time nativeLaunch 24.322 ms → 24.125 ms (-0.197 ms, -0.8%)
App start time nativeLaunchEnd_To_appCreationStart 80.183 ms → 83.217 ms (+3.033 ms, +3.8%)
App start time appCreationEnd_To_contentAppeared 512.867 ms → 515.000 ms (+2.133 ms, ±0.0%)
App start time runJsBundle 322.650 ms → 324.683 ms (+2.033 ms, +0.6%)
App start time appCreation 69.283 ms → 76.250 ms (+6.967 ms, +10.1%)
App start time regularAppStart 0.022 ms → 0.022 ms (+0.000 ms, +1.0%)
App start time TTI 1409.047 ms → 1419.801 ms (+10.754 ms, +0.8%)
App start time contentAppeared_To_screenTTI 724.105 ms → 719.383 ms (-4.722 ms, -0.7%)
App start time (CPU) 158.871 % → 157.693 % (-1.178 %, -0.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 399.142 MB → 394.121 MB (-5.021 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 29.046 % → 29.155 % (+0.109 %, ±0.0%)
Open search router TTI Load Search Options 141.772 ms → 143.043 ms (+1.271 ms, +0.9%)
Open search router TTI Open Search Router TTI 1198.617 ms → 1221.504 ms (+22.887 ms, +1.9%)
Open search router TTI (CPU) 153.291 % → 154.095 % (+0.804 %, +0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 415.995 MB → 417.304 MB (+1.310 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.760 % → 25.540 % (-0.220 %, -0.9%)
Chat opening (CPU) 164.885 % → 163.600 % (-1.285 %, -0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 411.318 MB → 412.694 MB (+1.376 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 31.574 % → 31.639 % (+0.065 %, ±0.0%)
Money request - Open Manual Tracking 142.923 ms → 145.729 ms (+2.806 ms, +2.0%)
Money request - Open Contacts 228.226 ms → 233.005 ms (+4.779 ms, +2.1%)
Money request - Open Create 143.172 ms → 140.554 ms (-2.618 ms, -1.8%)
Money request (CPU) 181.333 % → 179.813 % (-1.520 %, -0.8%)
Money request (FPS) 58.390 FPS → 58.529 FPS (+0.139 FPS, ±0.0%)
Money request (RAM) 470.766 MB → 462.673 MB (-8.093 MB, -1.7%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.597 % → 43.383 % (-0.213 %, ±0.0%)
Show details
Name Duration
App start time (CPU) Baseline
Mean: 158.871 %
Stdev: 4.770 % (3.0%)
Runs: 146.8481346913654 148.76800763897535 151.41927581388927 151.59637867122905 151.64909202608698 152.1579183139824 152.21111639547487 153.56548293858705 154.03472679972538 154.40821736249174 154.99082041027552 155.05954889689406 155.14449599216556 155.1474103585657 155.2405259517521 155.24294480940682 155.76877745633772 156.44098742783262 156.5585847770182 156.63239986293277 156.9939347486472 157.02369042532123 157.56102871487477 157.6862468431001 158.03710657037428 158.46981854053203 158.76327913995743 159.14457113048664 159.18020239379462 159.61914474563142 159.65697298304508 159.77539230569667 159.89606912977584 160.00507510376775 160.33886485940803 160.96315520053335 161.1636897785695 161.2056176940544 161.27686512479693 161.28247150496895 161.73185279851472 162.35449735449734 162.64269109307924 162.67354362232 162.88356871498706 163.01165000675928 163.1393595909366 163.4366119246655 163.50004333392747 164.89631067280015 165.05110669490256 165.73824577683214 165.88873815926343 166.41941064912163 166.626558552977 167.0565452253016 167.65989171041343

Current
Mean: 157.693 %
Stdev: 6.700 % (4.2%)
Runs: 140.8914166789129 141.13333545397677 142.6123260437376 142.64639218711486 146.26882222943914 151.1511630204937 151.24987877754728 152.12668110892793 152.51040896233792 152.61987621840495 152.80250129869108 153.07591699116801 153.09106042773374 153.68300816678942 155.04756754750787 155.52202553995176 155.72285001300986 155.82617335104916 155.85641528251998 155.8696246858384 155.88064553581793 155.99559955995602 156.29079403842817 156.43246839654023 156.5634113787301 157.00549497866072 157.23480718756304 157.4969330998917 157.6084919363152 157.6752893667678 157.99295375167438 158.86377750655348 159.29164276152224 159.63631267473124 159.72728702048013 160.52314314244495 160.5959826154449 160.90059337479443 161.11848052275104 161.4960459082967 161.49612511559508 161.79134868210113 162.27059259504966 162.7101603154986 162.93222077195605 162.9817392285443 163.66439002191973 164.25661599266678 164.4857048785887 165.5642366061528 166.91687463667031 167.20531890917292 167.6256808192963 169.39772156484045 169.56692249158957 169.87899102973577
App start time (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
App start time (RAM) Baseline
Mean: 399.142 MB
Stdev: 7.342 MB (1.8%)
Runs: 385.6822916666667 385.7799479166667 386.0924479166667 387.19140625 388.08203125 388.546875 389.0638020833333 389.44140625 391.0611979166667 391.5872395833333 391.9596354166667 392.14453125 392.2682291666667 392.611328125 393.26171875 393.2890625 394.1588541666667 394.3307291666667 394.794921875 395.20703125 395.88671875 395.9010416666667 396.0859375 396.1884765625 396.34765625 396.4322916666667 397.8072916666667 398.8427734375 398.90234375 399.4986979166667 399.8463541666667 400.0989583333333 400.60546875 401.09765625 401.13671875 401.5872395833333 401.6106770833333 402.765625 402.8489583333333 402.9111328125 403.13671875 403.1692708333333 403.9479166666667 404.3255208333333 404.62890625 404.69921875 404.8203125 405.1471354166667 406.08203125 406.6432291666667 406.9583333333333 407.2942708333333 407.9609375 408.1106770833333 408.4166666666667 409.3098958333333 410.2265625 412.1041666666667 412.744140625 415.84765625

Current
Mean: 394.121 MB
Stdev: 10.286 MB (2.6%)
Runs: 366.94140625 367.283203125 374.33984375 379.876953125 382.75390625 382.83203125 384.2239583333333 385.90625 386.1614583333333 386.185546875 386.3932291666667 386.68359375 387.05859375 387.2604166666667 387.46875 387.6927083333333 387.83203125 387.8776041666667 388.15234375 388.25390625 388.47265625 389.0755208333333 389.359375 389.6731770833333 389.7864583333333 390.8333333333333 392.0677083333333 392.5169270833333 392.6705729166667 393.2200520833333 393.5520833333333 394.8658854166667 395.2408854166667 395.2760416666667 395.734375 396.37109375 397.46484375 397.76171875 397.7734375 397.859375 398.439453125 399.90625 400.1653645833333 401.5377604166667 401.75390625 402.48046875 403.4700520833333 404.0182291666667 404.3151041666667 404.8307291666667 404.9283854166667 405.44921875 405.6536458333333 406.0963541666667 406.3294270833333 406.4557291666667 408.14453125 408.3424479166667 408.6041666666667 425.6009114583333
App start time (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Copy link
Contributor

Performance Comparison Report 📊 (5/8)

Meaningless Changes To Duration (4/7)

Show entries
Name Duration
App start time nativeLaunch 24.322 ms → 24.125 ms (-0.197 ms, -0.8%)
App start time nativeLaunchEnd_To_appCreationStart 80.183 ms → 83.217 ms (+3.033 ms, +3.8%)
App start time appCreationEnd_To_contentAppeared 512.867 ms → 515.000 ms (+2.133 ms, ±0.0%)
App start time runJsBundle 322.650 ms → 324.683 ms (+2.033 ms, +0.6%)
App start time appCreation 69.283 ms → 76.250 ms (+6.967 ms, +10.1%)
App start time regularAppStart 0.022 ms → 0.022 ms (+0.000 ms, +1.0%)
App start time TTI 1409.047 ms → 1419.801 ms (+10.754 ms, +0.8%)
App start time contentAppeared_To_screenTTI 724.105 ms → 719.383 ms (-4.722 ms, -0.7%)
App start time (CPU) 158.871 % → 157.693 % (-1.178 %, -0.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 399.142 MB → 394.121 MB (-5.021 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 29.046 % → 29.155 % (+0.109 %, ±0.0%)
Open search router TTI Load Search Options 141.772 ms → 143.043 ms (+1.271 ms, +0.9%)
Open search router TTI Open Search Router TTI 1198.617 ms → 1221.504 ms (+22.887 ms, +1.9%)
Open search router TTI (CPU) 153.291 % → 154.095 % (+0.804 %, +0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 415.995 MB → 417.304 MB (+1.310 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.760 % → 25.540 % (-0.220 %, -0.9%)
Chat opening (CPU) 164.885 % → 163.600 % (-1.285 %, -0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 411.318 MB → 412.694 MB (+1.376 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 31.574 % → 31.639 % (+0.065 %, ±0.0%)
Money request - Open Manual Tracking 142.923 ms → 145.729 ms (+2.806 ms, +2.0%)
Money request - Open Contacts 228.226 ms → 233.005 ms (+4.779 ms, +2.1%)
Money request - Open Create 143.172 ms → 140.554 ms (-2.618 ms, -1.8%)
Money request (CPU) 181.333 % → 179.813 % (-1.520 %, -0.8%)
Money request (FPS) 58.390 FPS → 58.529 FPS (+0.139 FPS, ±0.0%)
Money request (RAM) 470.766 MB → 462.673 MB (-8.093 MB, -1.7%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.597 % → 43.383 % (-0.213 %, ±0.0%)
Show details
Name Duration
App start time (CPU/UI) Baseline
Mean: 29.046 %
Stdev: 1.560 % (5.4%)
Runs: 25.4 25.9 26.2 26.7 27 27.1 27.1 27.3 27.4 27.7 27.7 27.9 27.9 27.9 28 28 28 28 28 28.2 28.3 28.4 28.5 28.7 28.7 28.9 29.2 29.3 29.3 29.3 29.4 29.4 29.5 29.7 29.8 29.9 29.9 29.9 29.9 30 30 30 30 30 30.1 30.3 30.5 30.6 30.6 30.6 31.2 31.3 31.4 31.9 32 32.7

Current
Mean: 29.155 %
Stdev: 1.435 % (4.9%)
Runs: 25.8 26.5 26.6 27.4 27.4 27.4 27.8 28 28 28 28 28 28.1 28.1 28.4 28.4 28.5 28.6 28.6 28.6 28.7 28.8 28.9 29 29.1 29.2 29.2 29.3 29.3 29.3 29.6 29.8 29.9 29.9 29.9 30 30 30 30 30.1 30.1 31.3 31.3 31.3 31.3 31.3 31.8 32 32
Open search router TTI Load Search Options Baseline
Mean: 141.772 ms
Stdev: 6.446 ms (4.5%)
Runs: 129.12711500003934 130.62801100034267 131.5944419996813 132.47481300029904 133.46818100009114 134.68823300022632 134.73783299978822 135.32568399980664 135.70076500065625 135.79109699930996 135.8806149996817 135.89428700041026 136.19966599997133 136.23579899966717 136.33455500006676 136.40978999994695 136.49397700000554 136.5687659997493 136.72847499977797 136.89896600041538 137.07674199994653 137.37137900013477 137.42073599994183 138.8349200002849 139.30985500011593 139.5227049998939 141.37915000040084 141.98592100013047 142.1471349997446 142.5393880000338 142.84322100039572 143.7885330002755 144.2055670004338 144.40173400007188 144.54101599939167 144.65576200000942 144.67920000012964 144.7502439999953 144.81502299942076 145.01884000003338 145.2808429999277 145.62914999946952 145.8128660004586 146.15685999952257 146.2892659995705 146.4362380001694 146.56612200010568 147.1820070007816 147.2481689993292 147.46419200021774 147.50158699974418 147.50675399973989 147.8049310008064 148.5268560005352 148.61478700023144 149.8299970002845 152.52905299980193 159.7599290004 159.94771299976856

Current
Mean: 143.043 ms
Stdev: 5.961 ms (4.2%)
Runs: 131.17993099987507 134.3110759994015 134.45865799952298 134.57287599984556 135.4500319994986 135.49141499958932 135.68359300028533 136.4641919992864 136.5532630002126 136.55664099939167 137.08646600041538 137.20454899966717 137.31717900000513 137.71215900033712 138.0842279996723 138.15673799999058 138.24515799991786 138.5079749999568 138.7682300005108 139.61608900036663 140.32963000051677 140.69144700001925 140.75179000012577 141.06595900002867 141.21964500006288 141.79166699945927 141.8523359997198 142.00158699974418 142.42049199994653 142.8512369999662 143.0331629998982 144.40938299987465 144.45491500012577 144.5230710003525 144.7434490006417 144.74833199940622 145.2172849997878 145.66198800038546 145.67423500027508 145.81042500026524 145.98921700008214 146.50472000055015 146.80131000000983 147.15124499984086 147.1945390002802 147.36893699970096 147.56962100043893 147.71008300036192 148.05977399926633 148.1739100003615 148.20841499976814 148.23311400040984 149.5181080000475 151.38000500015914 151.40861000027508 152.79036400001496 153.25830000080168 157.15100099984556 160.41923100035638
Open search router TTI Open Search Router TTI Baseline
Mean: 1198.617 ms
Stdev: 98.082 ms (8.2%)
Runs: 961.5822350000963 971.3828539997339 974.7958580004051 975.7554120002314 983.4321699999273 983.5076500000432 984.1854259995744 985.3181969998404 991.0296640004963 994.7671710001305 994.9251309996471 998.7436130000278 998.7926839999855 1000.9706629998982 1003.1305750003085 1003.5206709997728 1003.8558360002935 1003.9674079995602 1004.4170740004629 1004.5652680005878 1021.34452399984 1023.0203870004043 1023.9093020008877 1026.3868410000578 1028.226440999657 1036.41377799958 1038.2255859998986 1040.768106999807 1040.8401290001348 1041.4031170001253 1041.591594000347 1048.0066729998216 1058.434896000661 1058.7569180000573 1059.55342700053 1063.309976999648 1066.7842619996518 1070.1917320005596 1070.882121000439 1071.705811000429 1075.7739669997245 1077.0483410004526 1079.5858969995752 1080.7350670006126 1084.8927410002798 1085.3238939996809 1085.6431080000475 1085.6431080000475 1086.350871000439 1086.350871000439 1087.9234620006755 1088.462280999869 1088.6127120004967 1089.7125249998644 1091.081054999493 1091.525675999932 1094.2774660000578 1094.9066169997677 1099.069010999985 1100.576417000033 1100.8713379995897 1101.7054449999705 1103.4365649996325 1104.0303549999371 1107.1309819994494 1108.0901700006798 1110.762532999739 1112.0605060001835 1115.710531000048 1117.4983319994062 1118.706137000583 1120.778036000207 1121.5721840001643 1122.9702150002122 1123.0621750000864 1123.297485999763 1125.335125000216 1125.5578209999949 1126.0533039998263 1127.774291999638 1127.8124600006267 1130.2532150000334 1132.9119069995359 1133.9709480004385 1136.3685710001737 1138.7388110002503 1139.0707200001925 1139.236898000352 1140.2716479999945 1140.7204179996625 1141.7641200004146 1141.9159349994734 1142.165853000246 1145.943889000453 1147.7336830003187 1150.7465009996668 1150.768269999884 1151.9327809996903 1153.5928560001776 1154.190144999884 1154.703572999686 1157.4165860004723 1158.4740399997681 1159.1721200002357 1159.87915099971 1159.994262999855 1160.8516849996522 1160.8804530007765 1161.2043860005215 1163.159627999179 1165.3638110002503 1165.8859869996086 1166.3088789992034 1166.4519050000235 1168.118978000246 1168.3850110005587 1169.2989499997348 1171.3338230000809 1171.513469000347 1171.6105150002986 1175.02787300013 1175.2930920002982 1175.6174729997292 1176.2803959995508 1176.2991539994255 1177.0086270002648 1177.2208249997348 1177.2976080002263 1177.5407719993964 1178.252603999339 1178.515625 1178.6179610006511 1178.6513679996133 1178.834309999831 1181.0951749999076 1183.1043699998409 1184.045003999956 1184.5336109995842 1184.5698659997433 1184.7917490005493 1184.8153489995748 1185.215657999739 1186.0523680001497 1186.683960000053 1189.9786790004 1190.0233969995752 1190.5717370007187 1190.776775000617 1191.4359539998695 1191.4991060001776 1191.7195639992133 1192.2189950002357 1192.2721769995987 1192.556478999555 1192.6611329996958 1192.9536950001493 1193.0174970002845 1194.9512130003422 1195.0527759995311 1195.653320999816 1195.653320999816 1196.4932869998738 1196.7459720000625 1197.7268890002742 1198.1869310000911 1199.2717289999127 1199.4785980004817 1200.2928069997579 1200.3306080000475 1200.4655359992757 1200.8431810000911 1201.2949639996514 1201.310018999502 1201.6866049999371 1201.9534109998494 1202.4366459995508 1202.8082689996809 1202.8082689996809 1203.6239830004051 1204.5022390000522 1204.5616460004821 1206.3031419999897 1207.81144199986 1208.08911200054 1208.4339199997485 1208.474487000145 1208.6495370008051 1208.737182999961 1210.2588710002601 1210.5534269995987 1210.6270350003615 1210.8027349999174 1211.6358239995316 1211.7095549991354 1212.923543999903 1215.8693040004 1215.8743900004774 1216.2547209998593 1216.632975999266 1216.872518000193 1218.1615810003132 1218.203735999763 1218.5928549999371 1218.7120770001784 1218.8370770001784 1219.835978999734 1220.7646900005639 1224.5785730006173 1225.256958000362 1225.7536220001057 1225.7536220001057 1226.0348720001057 1226.706664999947 1228.325927999802 1228.7803959995508 1228.911663000472 1229.7810880001634 1230.8708500005305 1232.4523930000141 1232.4523930000141 1233.564860000275 1233.609742000699 1233.7784829996526 1234.6169849997386 1234.7980549996719 1235.2427169997245 1235.3028569994494 1236.780924999155 1236.9591889996082 1236.9591889996082 1237.0447599999607 1239.4174810005352 1243.0367040000856 1244.0262860003859 1244.397542999126 1245.0655119996518 1245.166137999855 1247.5256350003183 1248.3170170001686 1249.1534019997343 1249.74894199986 1250.259603000246 1250.5039880005643 1250.5039880005643 1251.7322589997202 1252.0152590004727 1254.0694590006024 1255.1233729999512 1258.1279300004244 1258.1279300004244 1258.578003000468 1258.8363859998062 1259.7497159997001 1260.044882000424 1260.640951000154 1261.0854089995846 1261.1239020004869 1262.4738779999316 1262.784221000038 1264.5250249998644 1266.4375420007855 1266.9960529999807 1267.0531009994447 1268.039958000183 1269.8224700000137 1270.0308030005544 1270.409057999961 1271.2333180001006 1272.442748999223 1273.918824000284 1277.329630999826 1277.6783870002255 1279.3687339993194 1280.7019870001823 1282.1973060006276 1282.3543699998409 1282.675293000415 1283.23205600027 1283.609905000776 1283.8402509996668 1283.8402509996668 1285.1641850005835 1285.6909590000287 1286.4828700004146 1286.8933930005878 1290.18017699942 1291.2465420002118 1291.7513429997489 1292.9667980000377 1293.5706390002742 1293.821777000092 1295.096273000352 1297.0673430003226 1299.2231860002503 1299.3583990000188 1300.836263999343 1300.836263999343 1301.0851649995893 1301.0851649995893 1302.488567000255 1303.7454030001536 1304.9594320002943 1305.6235760003328 1305.6235760003328 1306.9485689997673 1310.1451829997823 1310.8360199993476 1312.363730000332 1312.363730000332 1314.8155519999564 1316.3828940000385 1316.784668000415 1317.9013269999996 1317.9529220005497 1324.2578130001202 1324.3340659998357 1325.467528999783 1327.0167649993673 1328.4670820003375 1328.978516000323 1329.3733729999512 1332.8234060006216 1333.349934999831 1334.8710939995944 1340.9138590004295 1341.4397790003568 1341.860922000371 1341.860922000371 1342.121907999739 1343.0802819998935 1349.5250660004094 1352.6274830000475 1353.3681239997968 1355.9056000001729 1355.9056000001729 1358.4288329994306 1359.4906009994447 1360.307699000463 1365.7209479995072 1366.8006599992514 1374.8139249999076 1375.1747239995748 1380.7598069999367 1380.7598069999367 1398.7104499991983 1398.7104499991983 1427.441813999787 1434.650228999555 1475.907755999826

Current
Mean: 1221.504 ms
Stdev: 102.920 ms (8.4%)
Runs: 984.4138190001249 985.3574230000377 987.613241000101 993.3994150003418 996.931641000323 998.2156980000436 1000.677938000299 1005.7709550000727 1006.901165000163 1007.984538000077 1008.6141359992325 1008.7494310000911 1012.1920170001686 1014.2622079998255 1021.0010169995949 1021.6807460002601 1022.9662269996479 1023.6561690000817 1036.0541589995846 1039.5624190000817 1039.67033000011 1040.354900000617 1046.9956060005352 1050.831949999556 1053.3246259996668 1053.9896650006995 1060.6937669999897 1062.5524500003085 1064.7320969998837 1077.0367839997634 1078.0915130004287 1081.256104000844 1082.5899259997532 1083.7726650005206 1083.810344000347 1085.1360690006986 1086.3603919995949 1092.5573330000043 1092.8430590005592 1093.6051440006122 1095.2930100001395 1095.8394780000672 1098.0757659999654 1102.2047529993579 1103.6399330003187 1104.9197599999607 1105.7015390004963 1106.4022220000625 1108.9960529999807 1111.2400719998404 1112.2430420005694 1114.1833910001442 1116.262369999662 1126.7835699999705 1126.7835699999705 1132.1693119993433 1144.1982429996133 1145.1243500001729 1150.1919360002503 1151.0898029999807 1153.9211029997095 1157.0830489993095 1157.0830489993095 1161.6625159997493 1162.2812099996954 1165.565918000415 1166.0010989997536 1166.1369639998302 1166.4143079994246 1171.7391769997776 1171.9759940002114 1172.3268230007961 1173.5511069996282 1173.8136399993673 1175.8273520004004 1176.1838790001348 1176.5799970002845 1176.832317000255 1177.1902679996565 1178.605022000149 1181.9819749994203 1182.072387999855 1183.470255999826 1184.1773279998451 1184.3683680007234 1185.160116000101 1186.658853999339 1187.866090000607 1188.5929779997095 1188.9660240001976 1190.1147469999269 1190.5961509998888 1190.6180429998785 1191.699789000675 1191.8203940000385 1192.273641999811 1192.5657150000334 1193.662597999908 1194.6544599998742 1195.4625250007957 1196.5324309999123 1197.8832200001925 1200.4212650004774 1200.89717700053 1200.9030359992757 1201.0938729997724 1201.1994639998302 1203.215210000053 1204.497112000361 1204.8453789995983 1205.7060149991885 1206.7800709996372 1207.9809579998255 1208.6013589994982 1208.9912520004436 1209.4685060000047 1209.8524590004236 1210.4974779998884 1212.1708580004051 1213.0042320005596 1213.4018560005352 1214.246257999912 1214.4403900001198 1214.8578700004146 1215.4567879997194 1216.107014999725 1216.1363930003718 1217.0649419995025 1217.470255999826 1219.1670739995316 1219.455891999416 1219.5548100005835 1220.1552740000188 1221.3450929997489 1222.6792809991166 1223.3646660000086 1225.9447030005977 1227.3670260002837 1228.3357760002837 1228.6981610003859 1229.763632000424 1231.2635500002652 1231.7963470006362 1231.7963470006362 1234.267130999826 1234.267130999826 1234.6658939998597 1234.7232669992372 1235.081706999801 1235.2437749998644 1235.3741859998554 1235.6338710002601 1235.659099000506 1236.284789999947 1236.9154880000278 1237.80102599971 1238.8487560003996 1242.0266940006986 1242.1448569996282 1242.4251709999517 1242.7934159999713 1243.797811000608 1243.9863290004432 1244.1963709993288 1244.4447029996663 1244.81896999944 1245.2070319997147 1249.9548749998212 1251.0590009996668 1251.3235269999132 1251.388549999334 1252.450643999502 1252.659668000415 1253.713665000163 1254.34269199986 1254.909953000024 1255.3157160002738 1255.997924999334 1257.1010750001296 1257.8170170001686 1259.0248220004141 1259.2557779997587 1259.3224700000137 1261.450032999739 1261.5734459999949 1261.6413580002263 1262.1231699995697 1264.3060709992424 1264.3060709992424 1265.0647390000522 1265.1827400000766 1265.8895269995555 1267.0394700001925 1267.6793619999662 1268.6886399993673 1269.2381600001827 1269.556925999932 1269.6573899993673 1270.0283609991893 1270.2277440000325 1270.4279789999127 1271.569174000062 1273.6241870000958 1273.9022630006075 1274.7723389994353 1277.2709960006177 1277.6455079996958 1277.8407800002024 1278.0662450008094 1279.0678310003132 1279.5958259999752 1280.2357180006802 1281.450969000347 1281.450969000347 1283.8177089998499 1285.4353849999607 1285.7713219998404 1286.9611010001972 1289.1564539996907 1291.8662930000573 1292.3681649994105 1293.8145349994302 1293.9146330002695 1294.3593350006267 1294.393759000115 1294.4001059997827 1295.3063559997827 1296.0911060003564 1297.079224999994 1298.775960999541 1300.1330170007423 1300.1921389997005 1301.5991209996864 1301.6772879995406 1301.8627530001104 1302.0320229995996 1303.5515959998593 1305.4763590004295 1305.5009359996766 1307.4855559999123 1309.27738600038 1309.3750820001587 1309.5635179998353 1310.0740970000625 1310.3582370001823 1311.8314630007371 1312.069378000684 1312.1579589992762 1314.054444000125 1315.4923099996522 1316.7456070007756 1317.1567789996043 1318.2855230001733 1324.5531009994447 1325.1920580007136 1326.109985999763 1330.0769449993968 1333.1398930000141 1333.1452640006319 1333.3846850004047 1333.9498709999025 1340.928222999908 1340.960083999671 1341.7920340001583 1343.9507659999654 1349.4527600007132 1349.8367520002648 1351.2100020004436 1351.2729910006747 1361.4980069994926 1365.0098480004817 1366.090046999976 1373.064373000525 1374.3960779998451 1374.8968919999897 1381.7966320002452 1391.272135999985 1400.1896170005202 1401.302736000158 1401.302736000158 1401.723715000786 1433.157349999994 1441.092042000033 1450.7371430005878 1472.9914560001343 1472.9914560001343 1481.6477470006794 1493.2974049998447 1501.4874689998105
Open search router TTI (CPU) Baseline
Mean: 153.291 %
Stdev: 4.048 % (2.6%)
Runs: 144.74262904867484 146.17387753736742 146.45447147113083 146.61050437109236 146.6988022867596 146.86142934826194 147.4445027837968 148.16497703623742 148.7441102472236 148.7590445782755 149.00686953817151 149.35764703540568 149.7674152669989 149.955317916255 150.0759048799783 150.5821636836672 150.70837950380522 150.76265194654852 150.85486590992366 151.02073333198854 151.11198493594384 152.30477418241054 152.4146908722459 152.5347504292918 152.57095956412988 153.0529394438209 153.24264840502101 153.25097091162405 153.46588118088505 153.67348586354655 153.67676990813695 153.9240238528468 154.01788789072006 154.10518216691935 154.12796809975455 154.21704923791813 154.52757391282057 154.54542046408335 154.60949051075445 154.97465584994018 155.1195469743996 155.3655122024252 155.5575702501478 155.70183953850847 156.24475671758293 156.25492996728548 156.2958958549464 156.70095489849555 156.70171784840838 156.83859190573475 157.78736048367264 158.09302352182954 158.29408138906422 159.00292360189837 159.22019949691162 159.29151904789464 159.49701202791135 159.913944640394 160.2619488355169 162.20948043487678

Current
Mean: 154.095 %
Stdev: 4.734 % (3.1%)
Runs: 142.4588944414708 144.2726445279639 144.66623999261282 145.3547109580957 145.9951771138067 146.18229491720834 146.2183788927791 147.09276465765953 147.45865565624769 149.23859634756897 149.26201697260055 150.08482152677036 150.86968807633053 151.05666060666888 151.1085808067091 151.29074699685634 151.5385683366161 152.44939848145674 152.56605706137708 152.8986040725294 152.99595833738573 153.5193002394076 153.74088614661045 153.89816492403452 153.90061484535167 153.9499669175969 154.06960269477932 154.13356881586142 154.2843706578055 154.3575087023931 154.62161898437046 154.96235034297712 154.9870753252719 155.00468380106187 155.32508160574113 155.59118974213885 155.93350283714898 156.0432588423998 156.13019730957717 156.1637339104402 156.55344008292755 157.58733639646238 157.63864469183784 157.64611621041576 157.66315848687537 157.7799909611375 157.95550047038546 158.09836097013144 158.45429045545936 158.49633673594468 158.71512744652114 158.86852471992398 159.16854721129488 159.64428284446714 159.84685312040494 160.30927353698203 160.5734844883265 160.86082236109826 161.15628689212554 162.98855091992894

Copy link
Contributor

Performance Comparison Report 📊 (6/8)

Meaningless Changes To Duration (5/7)

Show entries
Name Duration
App start time nativeLaunch 24.322 ms → 24.125 ms (-0.197 ms, -0.8%)
App start time nativeLaunchEnd_To_appCreationStart 80.183 ms → 83.217 ms (+3.033 ms, +3.8%)
App start time appCreationEnd_To_contentAppeared 512.867 ms → 515.000 ms (+2.133 ms, ±0.0%)
App start time runJsBundle 322.650 ms → 324.683 ms (+2.033 ms, +0.6%)
App start time appCreation 69.283 ms → 76.250 ms (+6.967 ms, +10.1%)
App start time regularAppStart 0.022 ms → 0.022 ms (+0.000 ms, +1.0%)
App start time TTI 1409.047 ms → 1419.801 ms (+10.754 ms, +0.8%)
App start time contentAppeared_To_screenTTI 724.105 ms → 719.383 ms (-4.722 ms, -0.7%)
App start time (CPU) 158.871 % → 157.693 % (-1.178 %, -0.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 399.142 MB → 394.121 MB (-5.021 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 29.046 % → 29.155 % (+0.109 %, ±0.0%)
Open search router TTI Load Search Options 141.772 ms → 143.043 ms (+1.271 ms, +0.9%)
Open search router TTI Open Search Router TTI 1198.617 ms → 1221.504 ms (+22.887 ms, +1.9%)
Open search router TTI (CPU) 153.291 % → 154.095 % (+0.804 %, +0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 415.995 MB → 417.304 MB (+1.310 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.760 % → 25.540 % (-0.220 %, -0.9%)
Chat opening (CPU) 164.885 % → 163.600 % (-1.285 %, -0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 411.318 MB → 412.694 MB (+1.376 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 31.574 % → 31.639 % (+0.065 %, ±0.0%)
Money request - Open Manual Tracking 142.923 ms → 145.729 ms (+2.806 ms, +2.0%)
Money request - Open Contacts 228.226 ms → 233.005 ms (+4.779 ms, +2.1%)
Money request - Open Create 143.172 ms → 140.554 ms (-2.618 ms, -1.8%)
Money request (CPU) 181.333 % → 179.813 % (-1.520 %, -0.8%)
Money request (FPS) 58.390 FPS → 58.529 FPS (+0.139 FPS, ±0.0%)
Money request (RAM) 470.766 MB → 462.673 MB (-8.093 MB, -1.7%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.597 % → 43.383 % (-0.213 %, ±0.0%)
Show details
Name Duration
Open search router TTI (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Open search router TTI (RAM) Baseline
Mean: 415.995 MB
Stdev: 4.712 MB (1.1%)
Runs: 405.56015625 406.37890625 407.88671875 408.22265625 409.4625 410.4953125 410.8255208333333 411.1025390625 411.3138020833333 411.315625 411.525 411.85234375 412.46875 413.3546875 413.4466145833333 413.74609375 413.8333333333333 413.92734375 414.0703125 414.26484375 414.3352864583333 414.375 414.41171875 414.5109375 414.89375 414.96875 415.209375 415.22578125 415.228515625 415.3502604166667 415.4046875 415.4700520833333 415.609375 416.6625 416.9 416.9700520833333 417.0651041666667 417.246875 417.36640625 417.51328125 418.599609375 418.6921875 418.76171875 418.7701822916667 419.37578125 419.69921875 419.97265625 420.08515625 420.55546875 420.934375 421.9015625 422.09453125 422.28828125 422.95 424.5515625 424.6009114583333 426.33984375 427.74921875

Current
Mean: 417.304 MB
Stdev: 4.646 MB (1.1%)
Runs: 408.01484375 410.23125 410.6516927083333 410.95078125 411.04140625 411.13515625 412.08046875 412.2109375 412.31640625 412.837890625 412.87734375 413.41015625 413.47578125 413.9296875 413.95234375 413.99296875 414.0475260416667 414.07734375 414.4231770833333 414.7486979166667 415.13828125 415.1765625 415.1907552083333 415.2015625 415.642578125 415.69609375 415.7174479166667 416.0572916666667 416.2953125 416.4036458333333 416.55546875 416.951171875 416.97734375 417.0265625 417.9889322916667 418.177734375 418.2453125 418.26953125 418.29453125 418.5462239583333 418.7515625 419.4153645833333 419.8216145833333 420.03515625 420.153125 420.678125 420.6959635416667 421.10078125 421.2890625 422.8209635416667 422.94296875 422.965625 422.98671875 423.1432291666667 423.31015625 423.90859375 427.2486979166667 427.2921875 427.6861979166667 428.0625
Open search router TTI (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Open search router TTI (CPU/UI) Baseline
Mean: 25.760 %
Stdev: 1.226 % (4.8%)
Runs: 23 23.4 23.5 23.9 23.9 24.2 24.2 24.3 24.3 24.3 24.3 24.4 24.6 24.6 24.6 24.6 24.6 24.7 25.3 25.5 25.5 25.5 25.5 25.5 25.5 25.8 25.9 25.9 25.9 25.9 25.9 26 26 26.2 26.2 26.3 26.3 26.3 26.3 26.4 26.4 26.5 26.6 26.6 26.6 26.6 26.6 26.7 26.7 26.7 26.7 27 27.1 27.2 27.2 27.3 27.5 27.8 28.3 28.5

Current
Mean: 25.540 %
Stdev: 1.067 % (4.2%)
Runs: 23.4 23.4 23.5 23.8 23.9 23.9 24 24.4 24.6 24.6 24.7 24.7 24.7 24.8 24.9 24.9 25.1 25.1 25.1 25.1 25.1 25.2 25.3 25.3 25.3 25.4 25.5 25.5 25.5 25.5 25.6 25.6 25.6 25.6 25.7 25.8 25.9 25.9 25.9 26 26 26 26 26.1 26.1 26.2 26.3 26.3 26.6 26.9 26.9 27 27.2 27.4 27.6 27.6 27.6 27.7

Copy link
Contributor

Performance Comparison Report 📊 (7/8)

Meaningless Changes To Duration (6/7)

Show entries
Name Duration
App start time nativeLaunch 24.322 ms → 24.125 ms (-0.197 ms, -0.8%)
App start time nativeLaunchEnd_To_appCreationStart 80.183 ms → 83.217 ms (+3.033 ms, +3.8%)
App start time appCreationEnd_To_contentAppeared 512.867 ms → 515.000 ms (+2.133 ms, ±0.0%)
App start time runJsBundle 322.650 ms → 324.683 ms (+2.033 ms, +0.6%)
App start time appCreation 69.283 ms → 76.250 ms (+6.967 ms, +10.1%)
App start time regularAppStart 0.022 ms → 0.022 ms (+0.000 ms, +1.0%)
App start time TTI 1409.047 ms → 1419.801 ms (+10.754 ms, +0.8%)
App start time contentAppeared_To_screenTTI 724.105 ms → 719.383 ms (-4.722 ms, -0.7%)
App start time (CPU) 158.871 % → 157.693 % (-1.178 %, -0.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 399.142 MB → 394.121 MB (-5.021 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 29.046 % → 29.155 % (+0.109 %, ±0.0%)
Open search router TTI Load Search Options 141.772 ms → 143.043 ms (+1.271 ms, +0.9%)
Open search router TTI Open Search Router TTI 1198.617 ms → 1221.504 ms (+22.887 ms, +1.9%)
Open search router TTI (CPU) 153.291 % → 154.095 % (+0.804 %, +0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 415.995 MB → 417.304 MB (+1.310 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.760 % → 25.540 % (-0.220 %, -0.9%)
Chat opening (CPU) 164.885 % → 163.600 % (-1.285 %, -0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 411.318 MB → 412.694 MB (+1.376 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 31.574 % → 31.639 % (+0.065 %, ±0.0%)
Money request - Open Manual Tracking 142.923 ms → 145.729 ms (+2.806 ms, +2.0%)
Money request - Open Contacts 228.226 ms → 233.005 ms (+4.779 ms, +2.1%)
Money request - Open Create 143.172 ms → 140.554 ms (-2.618 ms, -1.8%)
Money request (CPU) 181.333 % → 179.813 % (-1.520 %, -0.8%)
Money request (FPS) 58.390 FPS → 58.529 FPS (+0.139 FPS, ±0.0%)
Money request (RAM) 470.766 MB → 462.673 MB (-8.093 MB, -1.7%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.597 % → 43.383 % (-0.213 %, ±0.0%)
Show details
Name Duration
Chat opening (CPU) Baseline
Mean: 164.885 %
Stdev: 4.384 % (2.7%)
Runs: 154.0550067560078 155.37345781368703 155.4097834865805 157.28043245022943 158.21237524950104 159.96065699006886 160.6933177916503 160.92767414879197 161.09699464322753 161.16919738175557 161.45672587185712 161.5997170503919 161.96324282486248 162.16542697393635 162.37339094152762 162.41832172131592 162.71549065796165 163.27106024017536 163.60250259275426 163.64646243490034 163.67021342523054 163.68105457587535 163.68707840683297 164.33535298285477 164.51002839427244 165.02335206395415 165.0970617662148 165.24063070127127 165.24723151906124 165.3309917793345 165.41173555806554 165.44714630721046 165.69891598110883 165.78397325409108 165.8466692896924 166.24415570474366 166.3255452176844 166.49843337145077 166.6897719241904 166.79385362298004 167.2016468576399 167.62656210887877 167.93811017192064 168.71367928127654 169.1448774182393 169.21171664624774 169.4582364822646 169.86485749820534 170.2096380337713 170.68795915039232 170.95762858901887 171.31558321801072 172.0861274188111 172.47777801795488 175.81472419255297

Current
Mean: 163.600 %
Stdev: 5.587 % (3.4%)
Runs: 151.7940507743308 152.4239210286643 152.7242845013877 154.67210264743917 154.9654093881457 155.01211997929224 156.16027136551165 156.50288491442595 156.90784194548314 156.91480482957928 157.49931399725602 157.57677761376485 157.65056183370984 157.96921456640771 159.2396203841516 159.62802900985366 160.22634879613216 160.32718949923424 160.34343961142778 161.1656516166938 161.32807058971625 161.6918160721187 161.8396283078163 162.12715424108615 162.2712128696866 162.45164086809925 162.53284058731742 163.74807930285834 164.0719954229744 164.74999569476714 165.45454559740676 165.60746352496395 165.73390433027862 165.8280034051369 165.88419217780472 166.19477570334908 166.4821656157095 166.4994934958623 166.54510630979613 166.5574826442732 166.6757885049728 167.18102879746084 167.26791011949254 167.39787424948523 167.55607638829719 167.69114869700041 167.949102372997 168.31503500129216 168.41102404028607 168.7498466064047 169.11068519025574 169.4364824966742 169.52257535858504 169.67113116961417 170.5724995342525 171.20908002119737 172.2437288133838 172.933770655233 173.03240884392815 173.74240128089698
Chat opening (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 411.318 MB
Stdev: 4.909 MB (1.2%)
Runs: 399.5625 402.43515625 403.83671875 405.0828125 405.2125 405.36640625 405.58125 405.9125 406.184375 406.25625 406.79140625 406.79609375 406.8546875 407.0400390625 407.08046875 407.41328125 407.50703125 407.9375 408.2734375 408.50859375 408.5771484375 409.24296875 409.32109375 409.60546875 409.7671875 410.26171875 410.521875 411.15859375 411.35703125 411.5421875 411.6796875 411.73515625 411.791015625 412.09296875 412.8798828125 412.99140625 413.0984375 413.1796875 413.3603515625 413.6421875 413.671875 414.728125 414.8815104166667 415.0732421875 415.365625 415.3890625 415.70703125 416.2571614583333 416.572265625 417.0984375 417.52421875 418.15625 418.33125 419.528125 419.66328125 419.9359375 420.46875 420.62578125

Current
Mean: 412.694 MB
Stdev: 6.025 MB (1.5%)
Runs: 400.4046875 402.18984375 402.9404296875 402.97265625 403.5390625 404.59453125 404.7099609375 405.0322265625 405.07578125 405.10078125 406.06640625 406.11328125 406.3234375 406.80390625 406.97265625 408.84453125 409.2958984375 409.6318359375 409.7587890625 409.80546875 410.0224609375 410.04609375 410.16015625 410.462890625 410.7484375 411.53125 411.66875 411.69609375 411.8546875 412.6953125 413.05234375 413.39296875 414.1984375 414.7213541666667 414.875 415.07109375 415.12109375 415.22578125 415.3703125 415.45859375 415.94453125 415.9546875 416.17578125 416.26875 417.675 417.7473958333333 418.165625 418.22265625 418.71171875 419.165625 419.2546875 419.86015625 420.5091145833333 420.5234375 420.93515625 421.4934895833333 421.6354166666667 422.57421875 423.5703125 423.6875
Chat opening (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Copy link
Contributor

Performance Comparison Report 📊 (8/8)

Meaningless Changes To Duration (7/7)

Show entries
Name Duration
App start time nativeLaunch 24.322 ms → 24.125 ms (-0.197 ms, -0.8%)
App start time nativeLaunchEnd_To_appCreationStart 80.183 ms → 83.217 ms (+3.033 ms, +3.8%)
App start time appCreationEnd_To_contentAppeared 512.867 ms → 515.000 ms (+2.133 ms, ±0.0%)
App start time runJsBundle 322.650 ms → 324.683 ms (+2.033 ms, +0.6%)
App start time appCreation 69.283 ms → 76.250 ms (+6.967 ms, +10.1%)
App start time regularAppStart 0.022 ms → 0.022 ms (+0.000 ms, +1.0%)
App start time TTI 1409.047 ms → 1419.801 ms (+10.754 ms, +0.8%)
App start time contentAppeared_To_screenTTI 724.105 ms → 719.383 ms (-4.722 ms, -0.7%)
App start time (CPU) 158.871 % → 157.693 % (-1.178 %, -0.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 399.142 MB → 394.121 MB (-5.021 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 29.046 % → 29.155 % (+0.109 %, ±0.0%)
Open search router TTI Load Search Options 141.772 ms → 143.043 ms (+1.271 ms, +0.9%)
Open search router TTI Open Search Router TTI 1198.617 ms → 1221.504 ms (+22.887 ms, +1.9%)
Open search router TTI (CPU) 153.291 % → 154.095 % (+0.804 %, +0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 415.995 MB → 417.304 MB (+1.310 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.760 % → 25.540 % (-0.220 %, -0.9%)
Chat opening (CPU) 164.885 % → 163.600 % (-1.285 %, -0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 411.318 MB → 412.694 MB (+1.376 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 31.574 % → 31.639 % (+0.065 %, ±0.0%)
Money request - Open Manual Tracking 142.923 ms → 145.729 ms (+2.806 ms, +2.0%)
Money request - Open Contacts 228.226 ms → 233.005 ms (+4.779 ms, +2.1%)
Money request - Open Create 143.172 ms → 140.554 ms (-2.618 ms, -1.8%)
Money request (CPU) 181.333 % → 179.813 % (-1.520 %, -0.8%)
Money request (FPS) 58.390 FPS → 58.529 FPS (+0.139 FPS, ±0.0%)
Money request (RAM) 470.766 MB → 462.673 MB (-8.093 MB, -1.7%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.597 % → 43.383 % (-0.213 %, ±0.0%)
Show details
Name Duration
Chat opening (CPU/UI) Baseline
Mean: 31.574 %
Stdev: 1.655 % (5.2%)
Runs: 27.9 28 28.5 28.9 29.1 29.2 29.2 29.3 29.4 29.5 29.6 30 30.2 30.3 30.4 30.4 30.5 30.7 30.8 30.9 30.9 30.9 31.2 31.3 31.4 31.6 31.6 31.7 31.8 32 32.1 32.1 32.3 32.3 32.4 32.4 32.4 32.6 32.6 32.7 32.7 32.8 32.8 32.9 33 33 33.2 33.2 33.2 33.2 33.3 33.6 33.6 33.6 33.7 33.8 34.2 34.4

Current
Mean: 31.639 %
Stdev: 2.093 % (6.6%)
Runs: 27.4 27.9 28.2 28.2 28.3 28.3 28.7 28.7 29.2 29.3 29.3 29.6 29.7 29.8 30 30 30 30.2 30.3 30.4 30.9 30.9 31.1 31.2 31.2 31.6 31.6 31.7 31.7 32 32.1 32.2 32.2 32.3 32.3 32.4 32.6 32.7 32.7 32.7 32.8 32.8 33 33.3 33.5 33.5 33.6 33.7 33.9 33.9 33.9 34 34.2 34.2 34.2 34.7 34.7 35.4 35.8
Money request - Open Manual Tracking Baseline
Mean: 142.923 ms
Stdev: 13.621 ms (9.5%)
Runs: 117.32124799862504 118.37471600063145 122.6375319994986 125.33471600152552 126.60559099912643 127.766520999372 127.81498200073838 127.92252600006759 128.37552899867296 130.38366699963808 130.5329590011388 131.00313300080597 132.0800370015204 132.41703299991786 132.7553720008582 133.0528969988227 133.5149739999324 135.53727200068533 137.08024100027978 138.4838059991598 138.64497900009155 139.01713100075722 139.04272500053048 140.46801800094545 140.81701700016856 140.96305299922824 141.4939370006323 144.1642259992659 146.6323649995029 146.81779000163078 147.3911540005356 148.44811999984086 148.6243899986148 148.80159500055015 149.06209300085902 149.77620399929583 150.13871300034225 150.50297099910676 150.8358559999615 151.03678400069475 151.66980000026524 152.0913899987936 152.88765400089324 155.85233599878848 155.89286299981177 156.20491500012577 157.7827960010618 160.71260599978268 161.76896099932492 167.79390499927104 174.70711200125515 182.9375

Current
Mean: 145.729 ms
Stdev: 11.645 ms (8.0%)
Runs: 122.20515999943018 124.48181200027466 128.18298299983144 129.31831900030375 130.7509770002216 131.86206099949777 132.17179400101304 132.9055989999324 133.50077299959958 133.99841300025582 135.05818700045347 135.65222099982202 136.33850099891424 136.88480599969625 137.003622001037 137.6641440000385 137.8380130007863 138.63187699951231 138.7881669998169 139.81408699974418 141.7259519994259 142.1178389992565 142.56026200018823 143.30053699947894 143.58544900082052 143.7438970003277 143.89636299945414 144.48299200087786 144.8693850003183 145.06335400044918 145.14469400048256 145.72725400142372 145.9554040003568 146.015625 146.13472499884665 146.14408399909735 147.30753600038588 147.57568399980664 147.90189599990845 148.4790040012449 148.50602200068533 152.02538999915123 152.70401999913156 153.32307999953628 153.92517099902034 154.60493999905884 154.88086000084877 158.57625299878418 159.49796599894762 159.52063000015914 160.98990900069475 162.20629899948835 162.76049799844623 163.33500199951231 168.30692499876022 168.43184399977326 171.48368300125003 172.41186599992216
Money request - Open Contacts Baseline
Mean: 228.226 ms
Stdev: 18.331 ms (8.0%)
Runs: 205.7301030009985 207.49100800044835 208.20446799881756 208.38370699994266 208.56795299984515 210.2209470011294 211.06677200086415 211.11966899968684 211.44445800036192 212.0086260009557 212.72456900030375 213.34903999976814 214.2831629998982 215.11714700050652 216.52848299965262 217.55957099981606 217.8519289996475 217.98323599994183 218.14119500108063 218.2213950008154 219.0372319985181 219.28283699974418 220.25606300123036 220.47005300037563 221.67281099967659 223.90429699979722 224.11665900051594 224.52946000173688 224.92008499987423 225.38484799861908 225.57190000079572 227.0239669997245 227.35432999953628 227.55944800004363 228.11454300023615 228.44307400099933 228.60868399962783 228.76468899846077 230.0596930012107 230.12968000024557 230.2260339986533 231.4854739997536 231.61787899956107 234.36429800093174 240.92533399909735 244.50187199935317 249.36478700116277 252.71553600020707 257.8175049982965 260.7442630007863 265.0475670006126 267.37573300115764 268.2819010000676 276.42276999913156 280.3155919983983

Current
Mean: 233.005 ms
Stdev: 18.670 ms (8.0%)
Runs: 200.1811529994011 204.73722400143743 208.12487799860537 210.70971699990332 211.67655500024557 212.23706000111997 215.003744000569 215.9287919998169 216.4302980005741 217.53369100019336 218.43982000090182 219.44201700016856 219.57430000044405 219.9178060013801 220.54536900110543 220.87752299942076 220.95788599923253 221.30208300054073 221.71716300025582 222.83915200084448 223.60880499891937 224.0214439984411 224.8929850012064 225.2876789998263 225.39912999980152 225.94376600161195 227.39428699947894 229.20951300114393 229.57173699885607 229.81343599967659 230.2072339989245 231.37329100072384 231.93448900058866 232.5911860000342 233.51912499964237 234.49959299899638 237.0725510008633 237.6518560014665 237.66935200057924 239.31909199990332 239.63220299966633 241.0300699993968 244.40995300002396 245.83923400007188 247.3299560006708 247.63212100043893 249.26700799912214 252.513061998412 257.2321770004928 261.047364000231 265.0222169999033 265.20849600061774 266.3374020010233 275.33427000045776 277.46602400019765 283.81583699956536
Money request - Open Create Baseline
Mean: 143.172 ms
Stdev: 12.594 ms (8.8%)
Runs: 113.59753499925137 119.37853999994695 121.35087100043893 121.36356600001454 126.18863900005817 126.54231799952686 126.62471600063145 127.48091600090265 129.46765200048685 129.5388590004295 130.4057209994644 130.9244800005108 131.05208399891853 131.05273499898612 132.10172499902546 133.14408399909735 133.87735999934375 134.3500159997493 136.23559600114822 136.9899089988321 138.3302820008248 138.33125799894333 140.84883600100875 140.9555670004338 142.75903300009668 142.7867839988321 142.8572990000248 143.43229099921882 143.62194800004363 143.87495899945498 144.25695800036192 144.65348300151527 145.0457760002464 145.57767699845135 145.61377000063658 146.42716499976814 147.1180010009557 147.2177729997784 148.13028999976814 148.2886960003525 150.1631669998169 150.40584300085902 152.70479300059378 153.1373700015247 153.38378899917006 153.49959399923682 153.78918500058353 153.90323900058866 154.1547849997878 154.29345799982548 155.00317399948835 155.5716550014913 157.09069800004363 157.9453940000385 158.53527799993753 159.3814289998263 161.1641440000385 164.69877099990845 166.2107340004295 173.47469099983573

Current
Mean: 140.554 ms
Stdev: 10.707 ms (7.6%)
Runs: 116.51692699827254 116.95841499976814 121.79654899984598 123.82173600047827 125.609822999686 125.6373689994216 125.88094100169837 126.16654399968684 128.59749300032854 128.64298499934375 129.47188399918377 129.69783500023186 130.4153240006417 130.56864400021732 132.19315600022674 133.35530599951744 133.51200300082564 133.73152600042522 133.83264200016856 134.54801399819553 134.9670409988612 135.2263999991119 135.2911380007863 137.99531999975443 138.43920899927616 139.1704099997878 139.62243700027466 139.82218500040472 140.68725600093603 142.1641440000385 142.87337299995124 142.9857589993626 143.26074200123549 144.21614600159228 144.2508950009942 144.72261599823833 145.27929699979722 146.0384929999709 146.34000600129366 146.40787700004876 147.15112400054932 148.03104599937797 148.19083599932492 148.68823300115764 149.28084299899638 149.2959799990058 150.05135099962354 150.5673009995371 151.15494799986482 151.51749700121582 152.0330810006708 152.63285299949348 152.71109999902546 153.2165529988706 153.860107999295 153.8853769991547 154.8884279988706 156.42456100136042 156.58951799944043 162.35351599939167
Money request (CPU) Baseline
Mean: 181.333 %
Stdev: 5.119 % (2.8%)
Runs: 170.77473885356625 170.82806670769617 170.846278813209 171.01200705682652 171.70081184896566 173.56695974920405 173.61000333798495 174.05071682216914 174.48131027754616 176.0263093937064 177.591876560613 177.91466358139263 178.1736258613332 178.33003755678862 178.49876123298483 178.57022511472536 178.62219452421223 178.7469847509636 179.2229289621326 179.37674001851028 179.60904784666985 179.85412485327635 179.9913053047549 180.81139557060075 181.13252442461368 181.2066973479145 181.3243515362268 181.3761504231697 181.4383419187213 182.10421058341518 182.15580689360516 182.1611354206728 182.54523240436666 182.55717668729554 182.6247663006934 182.72458439979556 182.9992442525135 183.3344833629679 183.64414001938061 183.6690461501402 183.85963102682743 184.19908961677703 184.41800765070846 184.8396206313961 184.890644991914 185.03519153680537 185.05672984592258 185.74425674733897 186.25458911209665 186.47550500450484 187.19323105315513 187.50390789920507 187.83229303227048 188.70997734855825 188.7353467566236 189.00735258307634 189.28914819402684 189.57875016089366 190.8153899903434

Current
Mean: 179.813 %
Stdev: 4.511 % (2.5%)
Runs: 171.32911785405673 171.44258766841654 171.4913579492275 172.4870332692896 172.86882553356736 173.08394143103706 173.32461045680014 173.5685941811072 173.99363498471587 174.13054053129773 174.53090051168923 175.08829105228926 176.97786615910667 177.04991288693816 177.32913174593614 177.41712492526352 177.47911414018856 177.6161134121533 177.66932537833205 178.0050462762436 178.2586533715856 178.5095051816358 178.60965324466378 178.869202043287 179.08989509576656 179.0970855855894 179.28506017558354 179.44063013540557 179.51310512933716 179.52309963799667 179.55967242467625 179.949818318048 180.1946460147231 180.91588783408739 181.0682481373882 181.23343830695404 181.44307981444035 181.61671572459096 181.64244205753607 182.03287067411668 182.20862185780678 182.78194339726684 182.793713508062 182.81863575346628 182.9301417317609 183.16235439605853 183.41257003060295 183.9098683346329 183.92924013528713 183.98686233905647 184.50756361258925 184.81483858540022 185.25060017002374 185.37748855021314 186.19564933068932 187.51017116830158 188.71826821546435 188.7668909896521 189.1549570342228
Money request (FPS) Baseline
Mean: 58.390 FPS
Stdev: 1.095 FPS (1.9%)
Runs: 56.47662042875522 56.56535530667293 56.70460010865958 56.73249684260871 56.75042282804816 56.876331166599755 56.92192894914808 57.06011006710896 57.07446003709253 57.08026363596829 57.183800652980054 57.31301477235271 57.346616150417944 57.353485797770254 57.67493958064979 57.69300199934205 57.77476417812006 57.78110417566232 57.80813038353068 57.82815540065322 57.86707439168793 57.97146436760832 57.97161659290931 57.990996444087 58.00545889713517 58.02465194255439 58.118299238768074 58.301715630858666 58.308984976386995 58.54133957336206 58.60132181241437 58.63768810759512 58.73249053882904 58.74193231227618 58.78972366050752 58.88717738419109 58.95762115021272 59.05830640561496 59.06655231916055 59.11808160780931 59.13342887368766 59.27493335566058 59.32199468256472 59.37139758444651 59.672493071935236 59.74939719223221 59.85220293906709 59.888191316104724 59.92384360661533 59.95231979318083 60 60 60 60 60 60

Current
Mean: 58.529 FPS
Stdev: 1.066 FPS (1.8%)
Runs: 56.05098447182205 56.22395970119887 56.37753921604614 56.464699619090794 56.81447700517023 56.91388378602084 56.99121347777825 57.032941520942664 57.05532353233614 57.0630171202142 57.715307175727034 57.717101926015 57.72654695154216 57.79467797635064 57.82623109343862 57.83454557597553 58.034065332053025 58.06327513892908 58.212941358371125 58.22498145784047 58.273816550783415 58.32301735900248 58.35737236724308 58.44205225867985 58.506990802938404 58.532557142770344 58.53494716309471 58.56052289090798 58.577308468070164 58.62250564465562 58.62595750573769 58.68238384993784 58.68474003594058 58.74657848885099 58.788076053580944 58.79514636971499 58.88738968156314 59.004244634425454 59.044601745278776 59.13092209186691 59.1895116936268 59.28983879542843 59.35830931369815 59.35879578981282 59.36919677095829 59.38088771503716 59.44501311547676 59.66467789730739 59.685759627084195 59.75043924674458 59.780654020450086 59.788460713671405 59.93843494133989 59.940611761532004 60 60 60 60 60
Money request (RAM) Baseline
Mean: 470.766 MB
Stdev: 10.800 MB (2.3%)
Runs: 445.79736328125 448.5947265625 450.921875 452.97021484375 456.20166015625 456.2025669642857 456.4892578125 456.6142578125 457.81494140625 458.69970703125 459.10658482142856 459.19677734375 459.43408203125 460.01123046875 460.1123046875 463.02120535714283 465.3950892857143 465.5182291666667 467.08705357142856 467.7646484375 468.66943359375 468.69873046875 470.5697544642857 470.59598214285717 470.85546875 470.96142578125 471.0775669642857 471.5435267857143 471.80078125 471.861328125 472.02566964285717 472.14676339285717 472.2275390625 473.01674107142856 473.9892578125 474.05859375 474.4458705357143 474.93017578125 474.9408482142857 475.11376953125 475.15848214285717 475.18212890625 475.2326388888889 476.02978515625 476.3203125 476.912109375 477.48583984375 478.25223214285717 479.44754464285717 479.87744140625 480.09716796875 481.7388392857143 482.79833984375 483.1010044642857 483.4462890625 486.33984375 488.45424107142856 491.46707589285717 492.78348214285717 495.37548828125

Current
Mean: 462.673 MB
Stdev: 11.045 MB (2.4%)
Runs: 441.5625 441.59814453125 443.98193359375 444.33349609375 446.86962890625 447.42822265625 448.353515625 448.724609375 449.45361328125 449.57979910714283 451.03466796875 451.69287109375 451.830078125 453.83203125 453.95068359375 455.36767578125 455.94444444444446 456.095703125 456.21826171875 456.32700892857144 457.01395089285717 457.08984375 457.15011160714283 458.04464285714283 459.63783482142856 461.10658482142856 461.9287109375 462.15771484375 463.02647569444446 463.34207589285717 463.390625 463.78683035714283 463.9771205357143 464.05859375 464.25 465.0986328125 466.13169642857144 466.5625 467.7544642857143 467.93017578125 468.0625 468.1474609375 469.8994140625 469.98291015625 470.73193359375 471.82310267857144 472.8486328125 473.060546875 473.82666015625 473.85791015625 474.3046875 475.6865234375 475.72265625 478.58203125 479.0087890625 479.02587890625 480.75390625 481.59263392857144 482.53369140625 483.3235677083333
Money request (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Money request (CPU/UI) Baseline
Mean: 43.597 %
Stdev: 2.093 % (4.8%)
Runs: 38.1 39.6 40.1 40.3 40.4 40.5 41.1 41.3 41.4 41.4 41.6 41.7 42 42.1 42.2 42.2 42.2 42.3 42.3 42.5 42.6 42.6 42.8 42.9 43 43.2 43.4 43.4 43.4 43.5 43.5 43.8 43.9 44 44 44.1 44.2 44.2 44.4 44.7 44.7 44.7 45 45.3 45.4 45.5 45.5 45.6 45.6 45.6 45.7 46 46.2 46.4 46.5 46.8 46.9 46.9 47.2 47.4

Current
Mean: 43.383 %
Stdev: 1.994 % (4.6%)
Runs: 39.8 40 40.2 40.2 40.4 40.4 40.7 40.8 41 41.1 41.7 41.9 42 42.1 42.1 42.1 42.2 42.3 42.3 42.5 42.5 42.6 42.6 42.7 42.7 42.7 42.8 43 43.1 43.1 43.3 43.3 43.4 43.4 43.4 43.6 43.9 43.9 44.1 44.1 44.1 44.3 44.7 44.8 44.9 45 45 45.1 45.1 45.2 45.5 45.6 45.6 45.6 46.2 46.4 46.4 47 47.3 49.2

Copy link
Contributor

@Expensify/mobile-deployers 📣 Please look into this performance regression as it's a deploy blocker.

@koko57
Copy link
Contributor Author

koko57 commented Apr 25, 2025

@Julesssss I'm ooo right now and I'll be back 5th of May so I can look into this when I'm back.

@Julesssss
Copy link
Contributor

Great, thank you. Issue here. I hope you don't read this until back from OOO!

@hoangzinh
Copy link
Contributor

@Julesssss can you assign me to that issue too? I'm happy to review it

Copy link
Contributor

🚀 Deployed to staging by https://github.com/Julesssss in version: 9.1.33-0 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

Copy link
Contributor

🚀 Deployed to staging by https://github.com/Julesssss in version: 9.1.35-1 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 failure ❌
🍎 iOS 🍎 failure ❌

Copy link
Contributor

🚀 Deployed to staging by https://github.com/Julesssss in version: 9.1.36-3 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

Copy link
Contributor

🚀 Deployed to staging by https://github.com/Julesssss in version: 9.1.37-1 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 cancelled 🔪
🍎 iOS 🍎 success ✅

Copy link
Contributor

🚀 Deployed to production by https://github.com/thienlnam in version: 9.1.37-3 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 failure ❌
🍎 iOS 🍎 failure ❌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DeployBlockerCash This issue or pull request should block deployment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants