Skip to content

Optimize Reports view to prevent memory leaks after long usage #61771

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

sosek108
Copy link
Contributor

@sosek108 sosek108 commented May 9, 2025

PR 61771

Explanation of Change

This PR introduces disposal functionality to FastSearch object. This is required to proper memory management on Reports view.

Fixed Issues

$ #60889
PROPOSAL:

Tests

  1. Navigate to Reports view
  2. Navigate between sub views Expenses, Expense Reports etc
  3. Try search functionality
  4. Observe if application slows down

Offline tests

QA Steps

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

  1. Navigate to Reports view
  2. Navigate between sub views Expenses, Expense Reports etc
  3. Try search functionality
  4. Observe if application slows down

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
Nagranie.z.ekranu.2025-05-12.o.10.53.19.mov
MacOS: Desktop

@sosek108 sosek108 requested a review from a team as a code owner May 9, 2025 10:42
@sosek108 sosek108 marked this pull request as draft May 9, 2025 10:42
@melvin-bot melvin-bot bot requested a review from techievivek May 9, 2025 10:42
Copy link

melvin-bot bot commented May 9, 2025

@techievivek 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]

@melvin-bot melvin-bot bot removed the request for review from a team May 9, 2025 10:42
@ZhenjaHorbach
Copy link
Contributor

ZhenjaHorbach commented May 12, 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: HybridApp
    • Android: mWeb Chrome
    • iOS: HybridApp
    • 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 there are no new alerts related to the canBeMissing param for useOnyx
  • 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: HybridApp
android.mov
Android: mWeb Chrome
android-web.mov
iOS: HybridApp
ios.mov
iOS: mWeb Safari
ios-web.mov
MacOS: Chrome / Safari
web.mov
MacOS: Desktop
web.mov

@ZhenjaHorbach
Copy link
Contributor

ZhenjaHorbach commented May 12, 2025

And weird
When I try to select another tab on reports screen
My reports screen shows incorrect result

2025-05-12.15.31.46.mov

@sosek108
Copy link
Contributor Author

@ZhenjaHorbach does it work on main?

@sosek108
Copy link
Contributor Author

And weird
When I try to select another tab
My reports screen is broken

@ZhenjaHorbach I tested this. And views worked properly on this branch before merge from main. This error comes from main

@sosek108 sosek108 requested a review from aldo-expensify May 13, 2025 07:15
@ZhenjaHorbach
Copy link
Contributor

And weird When I try to select another tab on reports screen My reports screen shows incorrect result

2025-05-12.15.31.46.mov

We still have this issue
But since this issue is reproduced on the last main
In this case LGTM !

@melvin-bot melvin-bot bot requested a review from mountiny May 13, 2025 07:45
@sosek108
Copy link
Contributor Author

Reassure tests fails.

 - [SearchRouter] should render list with cached options [render]: 0.0 ms → 0.0 ms  | 9 → 10 (+1, +11.1%) 🔴

Cause of this test to fail is in this commit. Previously useFastSearchFromOptions used only one useMemo, but we need fastSearch reference so we can clear previous object before new one is created. To do so we needed to extract fastSearch.createSearch outside useMemo and create useEffect which handles update of fastSearch in component's state. This additional useEffect causes additional render.

We cannot use useMemo because we need access to previous fastSearch (and also we need to clear this object on component's unmount) and useMemo does not allow that

aldo-expensify
aldo-expensify previously approved these changes May 13, 2025
Copy link
Contributor

@aldo-expensify aldo-expensify left a comment

Choose a reason for hiding this comment

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

LGTM, @vit / @techievivek do you want to do a final review before merge?

@aldo-expensify aldo-expensify self-requested a review May 13, 2025 17:27
@mountiny
Copy link
Contributor

@sosek108 what do you think about the suggestion from Aldo?

@sosek108
Copy link
Contributor Author

@aldo-expensify You're right. useRef is not necessary for this to work. I'll push a commit with that

Copy link
Contributor

@mountiny mountiny left a comment

Choose a reason for hiding this comment

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

Thanks! Lets try this out

@mountiny mountiny merged commit cb97cb7 into Expensify:main May 15, 2025
17 of 18 checks passed
@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 May 15, 2025
Copy link
Contributor

Performance Comparison Report 📊 (1/13)

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

Significant Changes To Duration

Name Duration
Chat opening Chat TTI 765.952 ms → 957.904 ms (+191.952 ms, +25.1%) 🔴
Show details
Name Duration
Chat opening Chat TTI Baseline
Mean: 765.952 ms
Stdev: 34.662 ms (4.5%)
Runs: 681.9482019999996 693.8451339993626 700.1788739999756 703.0030519999564 713.972289999947 716.9737560003996 719.1306149996817 720.507080999203 721.1687019998208 723.6881110006943 729.1949869990349 736.4953619996086 743.3972569992766 743.7109379991889 744.1241459995508 749.019491000101 752.4570310004056 753.5808520000428 764.3037109998986 766.7751469984651 767.1661379989237 770.5058189993724 771.2856450006366 771.394695000723 773.2899980004877 773.3186450004578 774.0592040000483 774.5849209986627 775.5107019999996 775.9776210002601 776.9986979998648 779.6152349989861 780.5228679999709 783.1283769998699 787.8587239999324 788.4630129989237 790.2069099992514 791.2324630003422 791.3649090006948 792.4506020005792 792.6273600012064 793.2140709999949 796.0426030000672 797.4577639997005 798.86014899984 804.5878100004047 809.2733160015196 809.6505950000137 811.5997319985181 812.3531499998644 814.2299000006169 823.1771649997681

Current
Mean: 957.904 ms
Stdev: 342.479 ms (35.8%)
Runs: 524.9801440006122 630.4872229993343 694.1017660005018 707.8374429997057 713.5824379995465 718.1819659993052 718.9050709996372 722.3969320002943 723.6689860001206 727.3396810004488 729.1228029998019 729.5240079993382 730.0054120002314 743.5552159994841 744.8322749994695 747.2182620000094 752.4023440005258 753.1512449998409 757.5271409992129 764.8410649998114 767.0294599998742 768.219402000308 768.7796229999512 772.5598150007427 774.4594730008394 777.4784350004047 780.3000489994884 780.6493330001831 780.8691009990871 781.547159999609 782.6787109998986 784.579020999372 786.8826099988073 792.2322589997202 794.3819590006024 794.4783129990101 796.1533610001206 802.5481359995902 802.7130130007863 804.4150399994105 805.5786129999906 808.8621020000428 818.852375999093 822.4163419995457 1104.0497239995748 1430.8926600003615 1455.248496000655 1481.2653000000864 1498.5763360001147 1511.9666349999607 1530.1990570006892 1544.0120859993622 1544.85677199997 1545.6994229992852 1576.0522870011628 1578.7014979999512 1581.4373380001634 1582.5343429986387 1588.9660650007427 1637.4334720000625

Copy link
Contributor

Performance Comparison Report 📊 (10/13)

Meaningless Changes To Duration (9/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
Report typing (RAM) Baseline
Mean: 455.339 MB
Stdev: 5.640 MB (1.2%)
Runs: 444.115234375 444.48995535714283 444.900390625 445.5006167763158 445.81328125 446.16335227272725 446.89661458333336 448.4488075657895 448.73809523809524 448.8668154761905 449.15713778409093 449.38515625 449.4379111842105 449.9574424342105 451.0361842105263 451.42689732142856 451.4365234375 452.16776315789474 452.8595703125 452.861328125 452.9982421875 454.09066611842104 454.7689453125 454.95703125 455.3650390625 455.3653273809524 455.43582589285717 455.6342516447368 455.7447265625 455.87232730263156 455.8850740131579 455.988671875 456.32504111842104 456.749609375 456.840234375 457.1146484375 457.6751953125 458.487109375 458.8883634868421 458.958984375 459.2386532738095 459.42064144736844 459.51484375 460.146875 460.180078125 460.3217516447368 460.333984375 460.6669407894737 460.9736842105263 461.27578125 461.645703125 461.97421875 462.1969572368421 462.203125 462.2835115131579 462.41324013157896 462.502734375 463.3930921052632 467.48807565789474

Current
Mean: 454.816 MB
Stdev: 5.920 MB (1.3%)
Runs: 439.95033482142856 441.2912326388889 445.03515625 445.40501644736844 445.9829358552632 446.6790707236842 447.0357730263158 447.1019736842105 448.3949424342105 448.56722861842104 448.5880681818182 448.98560855263156 449.80982730263156 449.83035714285717 450.328515625 450.6742931547619 451.42689732142856 451.4375 451.6576891447368 452.28515625 453.0634765625 453.578125 453.9274259868421 454.1167763157895 454.125 454.2177734375 454.5291015625 454.6189453125 454.67890625 454.90703125 455.08511513157896 455.31044407894734 455.737109375 455.7749255952381 456.0353515625 456.1467927631579 456.3162109375 456.423828125 457.3333984375 457.3939732142857 457.5541015625 458.7482421875 458.7712890625 458.9779296875 459.1305509868421 459.1685855263158 459.27919407894734 459.52035361842104 460.5943667763158 460.70870535714283 461.1350740131579 461.3666015625 462.0764802631579 462.1853515625 463.54502467105266 463.5653782894737 463.7584292763158 464.36513157894734 464.66385690789474 466.04872532894734
Report typing (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
Report typing (CPU/UI) Baseline
Mean: 20.427 %
Stdev: 0.667 % (3.3%)
Runs: 19.2 19.3 19.3 19.5 19.5 19.6 19.6 19.6 19.6 19.7 19.8 19.8 19.8 20 20 20 20 20.1 20.1 20.1 20.1 20.2 20.3 20.3 20.3 20.3 20.4 20.4 20.4 20.4 20.5 20.6 20.6 20.6 20.7 20.7 20.8 20.8 20.8 20.8 20.9 20.9 20.9 21 21 21 21.1 21.2 21.2 21.3 21.4 21.5 21.6 21.9 22

Current
Mean: 20.329 %
Stdev: 0.753 % (3.7%)
Runs: 18.3 18.7 18.8 18.9 19.3 19.4 19.4 19.5 19.6 19.6 19.6 19.7 19.7 19.7 19.8 19.9 20 20.1 20.1 20.1 20.2 20.2 20.3 20.3 20.3 20.3 20.3 20.4 20.5 20.5 20.5 20.6 20.6 20.6 20.6 20.7 20.7 20.7 20.7 20.7 20.8 20.8 20.9 20.9 20.9 21 21 21 21.1 21.2 21.3 21.3 21.3 21.4 21.6 22

Copy link
Contributor

Performance Comparison Report 📊 (11/13)

Meaningless Changes To Duration (10/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
Chat opening (CPU) Baseline
Mean: 160.568 %
Stdev: 4.210 % (2.6%)
Runs: 151.91416443990408 153.0946382287335 153.5201832398323 153.53380525706046 154.46676519331993 154.6072920531196 155.38407087225985 155.4560516773319 155.79514790791217 155.95186660321207 156.14767103530565 156.56946781927294 156.98957897215556 157.32963346503018 157.45377368223757 157.49428532437332 157.82659505120003 158.00370788935038 158.2506724861573 158.29329904248482 158.69758275681474 158.7397975715194 158.9072820909004 159.56580526226108 159.60674909098034 160.19871458217372 160.57880579383456 160.61151263367088 160.6910011250563 160.9422546276785 161.11093419123648 161.17361110100148 161.19504288316256 161.68077888880728 161.6940824998501 161.72645465569437 161.83665578843357 161.84307834036073 161.9519066007502 162.06301796006304 162.57204131971685 163.1224490089077 163.2544571111739 163.36456034333094 163.44505864000845 163.51602293730767 163.72490890041178 163.7713021540618 164.32907359120514 164.92746449073445 165.3583139939519 165.46320645969544 165.98604231230206 166.24247113402794 166.2887072387968 166.51009927655508 168.0473281134979 169.98346121502544 170.67971189489475

Current
Mean: 162.044 %
Stdev: 4.506 % (2.8%)
Runs: 149.981812139175 153.7621426930278 154.58033233293642 154.78760177809906 155.52498997791645 156.04553896450827 156.0590472101188 156.4203875116685 157.22478081042908 157.98210644909094 158.5301536264115 158.6245886859737 158.83332703383994 159.04686029495002 159.32938650293767 159.3884078135252 159.67204322392607 159.86703205924604 160.1060415520566 160.11393596500727 160.3979004333471 160.4847198712851 160.63009492611474 161.3120858319795 161.34768463540698 161.70257007650895 161.8487567360621 161.91254410147607 162.32797956956753 162.35963097591727 162.39049341949013 162.402844019697 162.41900196461685 162.49754665263615 162.519627411843 162.55820269013253 162.989980540002 163.03054679494275 163.3192481589013 163.78177622593506 163.85492398893027 164.4735157158948 165.2482582763545 165.69320402810058 165.89814566750715 165.9039766620606 166.0144555551019 166.0770842692094 166.26136411968108 166.92663292506654 167.00105469197607 167.6412884869982 168.09048696274365 168.54209913905154 168.9309909189423 169.92193088547492 171.6474276488974 172.30784422010913
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 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
Chat opening (RAM) Baseline
Mean: 386.267 MB
Stdev: 3.975 MB (1.0%)
Runs: 378.2412109375 378.3828125 378.8388671875 379.03828125 379.2529296875 379.97578125 380.43359375 381.451171875 381.4619140625 381.57890625 381.9484375 382.92578125 383.2203125 383.4833984375 383.60546875 383.98515625 383.99921875 384.5576171875 385.0046875 385.49296875 385.56328125 385.6015625 385.66484375 385.76875 385.85859375 385.871875 386.01953125 386.1337890625 386.275 386.42734375 386.435546875 386.44375 386.7703125 386.86796875 386.88671875 386.890625 387.58125 387.59296875 387.66953125 387.78125 387.88671875 388.0436197916667 388.58984375 388.6953125 388.97265625 388.99921875 389.4484375 389.7671875 389.8234375 389.9578125 389.9921875 390.11015625 390.471875 390.5559895833333 390.9171875 391.01171875 391.09765625 393.15 394.8890625 396.6703125

Current
Mean: 384.214 MB
Stdev: 4.062 MB (1.1%)
Runs: 373.205078125 375.92734375 378.3779296875 378.580078125 378.61171875 378.9599609375 379.060546875 379.5078125 379.58125 379.88125 379.9140625 380.1546875 380.6328125 381.248046875 381.2548828125 381.44375 381.4671875 381.63046875 381.8486328125 382.22578125 382.5009765625 382.79453125 383.290625 383.85703125 384.021875 384.028125 384.103125 384.185546875 384.325 384.33984375 384.42734375 384.88046875 385.0677083333333 385.38515625 385.53046875 385.97734375 386.07421875 386.09375 386.17890625 386.51640625 386.584375 386.642578125 386.79765625 386.91484375 387.196875 387.83046875 387.95546875 387.99609375 388.2265625 388.62890625 388.821875 389.2484375 389.25703125 389.3078125 389.3484375 391.88359375 392.29140625 392.40703125

Copy link
Contributor

Performance Comparison Report 📊 (12/13)

Meaningless Changes To Duration (11/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
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
Chat opening (CPU/UI) Baseline
Mean: 32.178 %
Stdev: 2.213 % (6.9%)
Runs: 27.1 27.5 27.9 28 28.4 28.7 28.9 29.3 29.4 29.4 29.6 29.9 30 30.1 30.3 30.6 31.1 31.2 31.3 31.4 31.9 31.9 32 32 32 32.2 32.3 32.3 32.4 32.4 32.6 32.6 32.7 32.9 33.1 33.2 33.2 33.4 33.4 33.5 33.5 33.6 33.6 33.8 33.8 33.8 33.9 34 34.2 34.4 34.6 34.6 34.6 34.8 34.8 35 35 35.4 35.5 35.7

Current
Mean: 32.407 %
Stdev: 2.461 % (7.6%)
Runs: 27 27.5 28.4 28.4 28.8 28.9 29.4 29.5 29.5 29.6 29.8 29.9 30.2 30.4 30.6 30.7 30.7 30.8 31 31.2 31.3 31.3 31.4 31.4 31.9 31.9 31.9 32.4 32.4 32.7 32.7 33.1 33.1 33.2 33.3 33.3 33.5 33.6 33.7 33.9 34 34 34 34 34.5 34.5 34.6 34.8 34.8 34.9 35 35.1 35.4 35.5 35.6 35.9 36.7 37.1 37.3
Money request - Open Manual Tracking Baseline
Mean: 136.393 ms
Stdev: 12.201 ms (8.9%)
Runs: 113.82124800048769 116.07328299991786 116.32808399945498 120.0604240000248 121.06075100041926 121.26668299920857 121.80074099823833 121.86035200022161 122.23710099980235 122.32792100124061 122.93416400067508 124.96809899993241 125.75256399996579 127.66129500046372 128.51298000104725 128.78129100054502 129.04703699983656 129.90193700045347 129.99690799973905 130.4349360000342 130.53922600112855 130.9385170005262 131.91772500053048 132.5134279988706 132.5924880001694 133.5774739999324 134.59944700077176 135.00793400034308 135.1388750001788 135.40909800119698 135.80619299970567 136.74450699985027 136.81644699908793 137.44225999899209 138.31144200079143 138.91601599939167 139.9910889994353 141.12207000143826 143.30004899948835 143.49625699967146 143.55464700050652 145.08093200065196 145.1042080000043 145.40055299922824 145.7374680005014 146.30135099962354 149.24820999987423 149.563395999372 151.34578500129282 151.57153400033712 152.83345600031316 152.86922200024128 154.61804200150073 155.64656500145793 158.75105799920857 160.54105599969625 167.19958500005305

Current
Mean: 135.874 ms
Stdev: 11.418 ms (8.4%)
Runs: 113.29113799892366 116.73575899936259 117.18505900166929 118.59041399881244 120.6534419991076 121.90331999957561 122.12101299874485 122.47920699976385 123.07995600067079 124.00423200055957 124.11731000058353 125.75223800167441 125.99735599942505 126.07344599999487 126.86796099878848 127.49727400019765 127.85152199864388 128.19917799904943 129.47965499944985 130.89550800062716 131.35656799934804 131.7075599990785 131.94030700065196 134.09834800101817 134.1429040003568 134.6133619993925 135.8867190014571 136.07320199906826 136.49043800123036 137.78446500003338 138.74495399929583 139.2661540005356 139.3616540003568 139.62613900005817 139.7642819993198 140.4311520010233 140.45389799959958 140.8597410004586 141.02184999920428 141.65970900096 142.1167399995029 142.55236800014973 142.8994140010327 144.01875800080597 144.1600750014186 145.25720299966633 145.34077900089324 145.56815600022674 146.83606000058353 151.784994000569 153.11641400121152 153.34570300020278 153.3655599988997 154.52701800130308 160.824950998649 165.15283200144768

Copy link
Contributor

Performance Comparison Report 📊 (13/13)

Meaningless Changes To Duration (12/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
Money request - Open Contacts Baseline
Mean: 214.356 ms
Stdev: 9.415 ms (4.4%)
Runs: 191.01021300069988 194.26269599981606 198.17513000033796 199.4858400002122 200.95638000033796 202.91044100001454 203.00590000115335 203.5509439986199 204.04272499866784 204.95780500024557 206.58988399989903 207.23754899948835 207.3515620008111 207.99678499996662 208.3248700015247 208.61877499893308 208.67513000033796 209.22961400076747 209.4442950002849 210.1266280002892 210.40043099969625 211.64436800032854 211.7833259999752 212.50179000012577 212.70686800032854 213.38045200146735 213.43867999874055 213.7169189993292 213.97802699916065 214.05538000166416 214.30379300005734 214.47867800109088 215.07987399958074 215.63590499944985 215.79284700006247 215.83939599990845 216.12975999899209 216.5375159997493 216.9007169995457 217.65519200079143 218.77754699997604 218.8098549991846 219.84024999849498 220.47652099840343 221.1493330001831 221.55485100112855 221.94966599904 222.43953499943018 222.74471000023186 223.85868299938738 224.1842450015247 226.38594499975443 226.72534199990332 227.59838899970055 227.78515600040555 230.27510499954224 230.72261600010097 233.7724200002849 236.03828899934888

Current
Mean: 214.493 ms
Stdev: 13.393 ms (6.2%)
Runs: 185.21455899998546 192.18770400062203 193.73563599959016 197.63004499860108 198.32149199955165 198.61177599988878 198.91133600100875 200.82072000019252 201.35074900090694 203.6809490006417 203.74051900021732 204.35546800121665 204.73620599880815 204.7822670005262 204.85721800103784 205.99804700165987 207.5332440007478 207.58223499916494 207.77705899998546 208.47981799952686 208.71997100114822 209.05521599948406 209.5466309990734 209.75268599949777 209.82592800073326 210.10140000097454 210.34489000029862 210.6857909988612 211.06738300062716 211.52364100143313 212.03947000019252 212.2259929999709 212.74796500056982 213.20161999948323 213.66239400021732 213.6824960000813 215.02132200077176 215.48758900165558 219.1417239997536 219.2279460001737 219.29341699928045 219.37320999987423 219.61328100040555 221.5229080002755 225.82108600065112 226.63326100073755 226.90295400097966 227.31591800041497 227.47017399966717 227.90620899945498 229.2558999992907 230.10624199919403 230.52465800009668 231.17655500024557 233.84578499943018 239.8310150001198 245.60668900050223 246.48405000008643 249.03747599944472
Money request - Open Create Baseline
Mean: 133.100 ms
Stdev: 11.212 ms (8.4%)
Runs: 107.31697599962354 110.8352049998939 111.48002099990845 113.08581499941647 114.31327299959958 115.33589700050652 117.61523499898612 117.82356799952686 119.92724600061774 121.66227200068533 121.71122199855745 121.79313199967146 122.91686999984086 122.99438500031829 124.96793700009584 124.99804699979722 125.33406599983573 126.48522899858654 127.53658000007272 128.19136499986053 128.2276610005647 130.72786500118673 131.8935960009694 132.07446300052106 132.406819999218 133.1864829994738 134.28572599962354 134.5899249985814 135.16019700095057 135.2095940001309 135.4797359984368 135.96553499996662 136.65551800094545 136.99198399856687 137.20792699977756 137.34720800071955 137.55952999927104 137.58260099962354 139.0980230011046 139.38403300009668 139.94246499985456 140.12853999994695 140.30838999897242 141.2675370015204 141.72497599944472 142.08996599912643 142.65828499943018 143.59452299959958 143.89396199956536 144.72587099857628 145.293863998726 145.48124199919403 147.70324799977243 147.97721400111914 148.796875 149.10469599999487 149.42480500042439 149.81445300020278 151.62068700045347

Current
Mean: 131.621 ms
Stdev: 10.746 ms (8.2%)
Runs: 105.79593900032341 106.56640600040555 111.38012699969113 114.67614799924195 117.51013199985027 117.8532720003277 117.9287919998169 118.52591999992728 118.53088400140405 120.35359700024128 121.11617000028491 121.41105099953711 121.42972799949348 122.26782199926674 124.43766300007701 124.61096200160682 124.76725200004876 125.0069980006665 125.46390799991786 125.75903400033712 126.38020800054073 127.86319999955595 128.16202800162137 128.38761400058866 128.53930599987507 128.79378299973905 129.57055599987507 130.79858399927616 131.7589110005647 132.11425799876451 132.4482020009309 132.62264000065625 133.18908699974418 133.42854899913073 133.52657099999487 134.70015499927104 135.9989829994738 136.08711699955165 137.73413100093603 138.11405400000513 139.78641800023615 139.9310309998691 140.1498210001737 140.16312700137496 140.47513800114393 141.84106499888003 142.67130499891937 142.92553700134158 143.24222899973392 143.51766000129282 143.9081629998982 144.25036700069904 144.28515600040555 144.66475499980152 144.69836399890482 145.51476999931037 146.5454099997878 147.07495100051165 147.374552000314 148.6391599997878
Money request (CPU) Baseline
Mean: 177.558 %
Stdev: 3.990 % (2.2%)
Runs: 168.0807165530605 169.92464008167994 171.1890223371104 171.25869621569746 171.89338410528165 172.10913751758645 172.16368371706017 172.65032177561372 172.7244784979308 173.12564037281436 173.45791808620595 173.8091151396648 174.11978868458317 174.15459695414054 174.72273402722467 174.92180732509635 174.96960704741323 175.2680222706163 175.3202010942682 175.85016460117086 175.98195178475328 176.19943728459677 176.47888760465693 176.62155154984504 176.83741837828904 176.8999338088679 177.56018282099174 177.64555083095175 177.68423684011105 178.01078731611267 178.02314124097174 178.32115103892704 178.43081974847328 178.49086390618976 178.60552960096555 178.7517275536398 178.78589781580436 178.92097030647338 179.13882038988586 179.4338706233142 179.69921395583256 179.72433656198103 180.26790428002934 180.43533547798899 180.46371714909048 180.48063487543422 180.65241768819155 180.95421508654508 181.09538274529368 181.36577666801054 181.56957850892564 181.92032615381893 182.0875585170481 182.2174834367973 183.2186478631024 184.25319957448033 184.95640744642984 185.8181691564888 186.20781937849443

Current
Mean: 177.790 %
Stdev: 3.809 % (2.1%)
Runs: 169.22506785167752 170.2078599366146 170.5724536299882 171.19566444799645 172.2855054685177 172.9739070236658 172.97596437094606 173.1863042000327 173.268607787553 173.75493802160125 173.83910490479388 174.26588625419708 174.52692110572568 174.68084710290304 175.06364202935765 175.23720147509061 175.26740592618944 175.28239101338818 175.99241452222844 176.03526811422054 176.06365458970876 176.23439434738663 176.36326492636948 176.36547359102758 176.4010881994681 177.2878906808534 177.29487044664953 177.48593017752611 177.52363253751014 177.65077040879305 178.03374002264104 178.12870548090916 178.541084541824 178.95638825281435 179.1778327805544 179.17918606093957 179.1832908372923 179.23518422365973 179.3475416699327 179.74640543725044 180.10018216735753 180.16734638801293 180.3108104988339 180.40542572960888 180.48196460971718 180.82683067657945 180.9831562192911 181.05074176324922 181.243308140561 181.3901403967993 181.411978845077 181.65354889918868 182.0205525415594 182.47838381174535 183.16241655228302 183.3031555484351 184.00931656906366 184.27570920865114 184.69345867009054 185.39731853733971
Money request (FPS) Baseline
Mean: 59.071 FPS
Stdev: 1.108 FPS (1.9%)
Runs: 56.22855020961287 56.74086208490946 56.79149692643421 56.81750429809336 57.05875795949341 57.19910170380115 57.22367669712766 57.56835916115139 57.583093009571584 57.74309918219232 57.92480764743136 58.0187508579686 58.16667386990467 58.17491312102253 58.195960283478115 58.44050289238263 58.487969734933735 58.52482231514029 58.56976617934589 58.68805577433902 58.6895103146756 58.75225194197035 58.788521195421104 58.91606999683595 58.98772719204268 59.26467946501317 59.49340156560259 59.6094544972881 59.73200835533891 59.7741540955792 59.793643597696395 59.816937962019814 59.81945194031092 59.90042473255759 59.910287863814276 59.93546026260195 59.935807806223465 59.95985252451028 59.98959404829236 59.98989410014753 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 58.900 FPS
Stdev: 1.202 FPS (2.0%)
Runs: 56.566414992285225 56.63131678333471 56.76566531692462 57.12984235593308 57.13166157152547 57.1572135353336 57.17358668673904 57.18221017461401 57.24386628886703 57.27178825114281 57.3850414020717 57.656334291902716 57.68163472203529 57.71316754710691 57.78952515643479 57.80936968748533 57.85352132486297 57.86537097663567 58.09617837530141 58.21977866704614 58.22543828644112 58.34147798471089 58.349623659648756 58.3645110554629 58.48178914056723 58.82519260780323 59.31940959752455 59.4418488854509 59.46329209355148 59.57461803673299 59.77175817492223 59.83606961007608 59.88347535392719 59.98461987890334 59.99423069102405 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 440.517 MB
Stdev: 5.880 MB (1.3%)
Runs: 427.47767857142856 430.8510044642857 431.97377232142856 432.11216517857144 432.1640625 432.1752232142857 432.28564453125 432.513671875 433.63950892857144 433.77511160714283 434.3359375 435.3286830357143 435.9853515625 436.08426339285717 436.11328125 436.43191964285717 436.6171875 436.64620535714283 438.07470703125 438.1138392857143 438.1372767857143 438.2818080357143 438.69363839285717 439.13783482142856 439.3671875 439.861328125 439.86328125 440.0087890625 440.0390625 440.09933035714283 440.77587890625 440.96142578125 440.96261160714283 441.0424107142857 441.92919921875 442.22998046875 443.13916015625 443.25279017857144 443.32645089285717 443.7587890625 444.0302734375 444.390625 444.4609375 444.9447544642857 444.95849609375 444.96595982142856 445.505859375 445.77294921875 445.9404296875 446.81396484375 447.5205078125 447.86997767857144 448.10595703125 448.92138671875 450.06752232142856 451.93359375 452.52294921875 453.68359375

Current
Mean: 438.817 MB
Stdev: 5.325 MB (1.2%)
Runs: 427.7578125 428.0619419642857 430.1595982142857 430.4302455357143 431.10658482142856 431.146484375 431.27232142857144 431.75613839285717 431.82254464285717 432.1171875 432.86941964285717 434.140625 434.22767857142856 435.01904296875 435.24462890625 435.30712890625 435.392578125 435.89955357142856 436.86083984375 436.93115234375 437.15848214285717 437.24330357142856 437.50537109375 437.51611328125 437.8041294642857 437.814453125 437.8510044642857 438.25732421875 438.45870535714283 438.9345703125 438.94754464285717 439.31026785714283 439.70870535714283 439.86865234375 440.19308035714283 440.501953125 441.16796875 441.5533854166667 441.58370535714283 441.93638392857144 441.95263671875 442.29638671875 442.35323660714283 442.36104910714283 442.9765625 442.9927455357143 443.00223214285717 443.61104910714283 443.85546875 443.93470982142856 443.98828125 444.0463169642857 445.4541015625 445.830078125 445.90457589285717 445.9931640625 448.12890625 449.85107421875 450.83705357142856
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: 42.855 %
Stdev: 1.103 % (2.6%)
Runs: 40.3 40.6 40.9 41.1 41.1 41.3 41.4 41.5 41.6 41.6 41.7 41.9 42 42 42 42.2 42.2 42.3 42.3 42.3 42.4 42.4 42.4 42.6 42.7 42.8 42.9 42.9 42.9 43 43.1 43.1 43.1 43.2 43.2 43.2 43.3 43.4 43.4 43.4 43.6 43.6 43.7 43.7 43.8 43.8 43.8 43.9 43.9 44.2 44.2 44.3 44.4 44.4 44.5 44.6 44.7 44.8

Current
Mean: 42.928 %
Stdev: 1.454 % (3.4%)
Runs: 40.3 41.1 41.1 41.1 41.2 41.3 41.4 41.4 41.4 41.4 41.5 41.5 41.6 41.6 41.7 41.7 41.8 41.9 41.9 42 42.1 42.2 42.2 42.3 42.5 42.5 42.5 42.5 42.6 42.6 42.6 42.6 42.8 42.8 42.9 42.9 43 43.2 43.3 43.4 43.5 43.6 43.7 43.7 43.7 43.9 44 44.2 44.4 44.4 44.7 44.8 45 45.1 45.2 45.3 45.4 45.7 46.5 46.5

Copy link
Contributor

Performance Comparison Report 📊 (2/13)

Meaningless Changes To Duration (1/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 26.339 ms
Stdev: 4.486 ms (17.0%)
Runs: 21 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 24 24 25 25 25 25 26 26 27 27 27 27 27 28 28 28 29 29 30 30 30 30 31 32 33 33 35 36 38 38 39

Current
Mean: 32.690 ms
Stdev: 4.082 ms (12.5%)
Runs: 28 28 28 28 28 28 28 28 29 29 29 29 29 29 29 29 30 30 30 30 30 30 30 30 31 31 31 32 32 32 32 32 33 33 33 33 33 33 33 33 35 35 36 36 36 36 36 37 37 37 38 38 39 40 40 40 43 44
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 81.300 ms
Stdev: 10.880 ms (13.4%)
Runs: 63 63 66 67 67 67 68 69 69 69 69 70 72 72 72 73 73 73 75 75 76 76 77 77 77 77 77 78 79 79 80 80 82 82 83 83 83 84 85 86 88 89 89 89 89 90 91 92 92 92 92 93 95 97 97 98 100 103 104 105

Current
Mean: 63.167 ms
Stdev: 8.783 ms (13.9%)
Runs: 50 51 51 51 51 53 53 54 54 55 56 56 56 57 57 57 57 57 58 58 58 58 58 59 59 59 60 60 60 60 61 62 62 62 63 63 64 65 65 65 66 67 68 68 68 69 70 70 72 72 73 75 75 78 78 79 81 81 81 84
App start time appCreation Baseline
Mean: 69.633 ms
Stdev: 8.963 ms (12.9%)
Runs: 55 56 56 57 58 58 58 59 59 60 60 61 61 61 61 62 63 63 64 64 66 66 67 68 68 68 68 69 69 69 69 69 69 70 71 71 71 72 72 72 73 73 74 75 76 76 76 77 78 79 80 80 80 81 82 82 86 89 89 92

Current
Mean: 64.000 ms
Stdev: 8.701 ms (13.6%)
Runs: 46 48 49 49 50 51 51 53 54 55 56 57 57 57 58 59 59 60 60 60 60 61 61 61 62 63 63 63 64 64 64 64 64 64 65 65 66 67 68 68 68 69 69 70 70 70 71 72 72 73 73 75 75 75 76 77 77 78 78 86

Copy link
Contributor

Performance Comparison Report 📊 (3/13)

Meaningless Changes To Duration (2/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 864.044 ms
Stdev: 228.032 ms (26.4%)
Runs: 577.4918950004503 621.0816000001505 624.3841129997745 624.5396250002086 637.3464439995587 646.4636559998617 649.5360049996525 656.5636759996414 658.5187480002642 667.8070299997926 669.8090230002999 670.7522499999031 671.2459310004488 671.6308800000697 675.1391700003296 680.641893000342 684.3300179997459 686.0438689999282 690.6910300003365 695.2312899995595 701.6362190004438 704.1993950000033 705.2663430003449 709.9811380002648 711.4162029996514 713.2748640002683 719.7621250003576 721.4492629999295 722.7493470003828 723.5738669997081 724.4642420001328 736.2136399997398 739.0408279998228 739.6735119996592 740.7990269996226 742.5169240003452 753.9369769999757 1032.4113330002874 1053.528486999683 1055.6762309996411 1090.2579939998686 1095.7432580003515 1098.7461080001667 1110.69541199971 1116.9882039995864 1131.6776059996337 1134.5324590001255 1139.7256180001423 1143.0385199999437 1147.0997540000826 1150.2930349996313 1180.8247400000691 1184.5328879998997 1189.223011000082 1191.27632800024 1200.5804310003296 1204.632063999772 1230.529581000097 1232.5557660004124 1258.8542600004002

Current
Mean: 912.209 ms
Stdev: 224.204 ms (24.6%)
Runs: 603.9602269995958 645.8310540001839 646.4270799998194 651.5429779998958 658.4401930002496 661.516840999946 671.8326650001109 672.9410849995911 679.6643270002678 681.5649570003152 683.8318389998749 697.0186409996822 697.0463880002499 698.7279960000888 707.0650639999658 710.8422100003809 714.1266040001065 715.9650729997084 716.4239309998229 718.4273749999702 732.0171649996191 735.5535760000348 735.6639149999246 738.1602229997516 743.0844240002334 744.9237759998068 745.3121859999374 745.6399569995701 755.3945199996233 763.297159999609 763.7110829995945 771.5711129996926 1022.5404390003532 1093.7134069995955 1094.8076630001888 1095.7270090002567 1100.4055530000478 1104.6972589995712 1106.1168759996071 1118.974653000012 1125.6741159996018 1125.7510569998994 1135.99662599992 1137.7079459996894 1138.9707650002092 1139.1117259999737 1149.4134369995445 1150.1631429996341 1150.738075000234 1162.2897269995883 1173.049409000203 1175.9621550003067 1181.0781420003623 1182.5376110002398 1188.7139790002257 1193.3017760002986 1194.8247269997373 1216.8913920000196 1221.5639329999685 1244.3209960004315
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 446.300 ms
Stdev: 27.000 ms (6.0%)
Runs: 381 396 396 405 410 411 413 413 416 422 424 424 425 428 429 429 430 431 432 432 434 435 437 439 439 441 442 442 445 446 448 449 449 450 450 450 451 452 454 455 455 457 459 459 462 462 465 470 472 472 480 482 482 483 483 484 491 496 499 510

Current
Mean: 409.750 ms
Stdev: 25.381 ms (6.2%)
Runs: 347 356 370 373 374 377 381 382 383 386 386 387 390 391 395 396 396 397 397 398 399 402 402 403 404 405 406 407 408 409 409 410 411 411 412 413 413 413 414 414 414 416 418 420 424 430 433 435 437 437 439 440 441 442 444 447 455 455 456 475
App start time runJsBundle Baseline
Mean: 321.450 ms
Stdev: 23.980 ms (7.5%)
Runs: 264 264 279 279 282 282 286 286 287 287 290 290 293 293 294 294 295 295 297 297 297 297 300 300 300 300 303 303 303 303 304 304 304 304 305 305 308 308 309 309 311 311 312 312 313 313 313 313 314 314 315 315 316 316 317 317 319 319 319 319 320 320 320 320 321 321 321 321 327 327 328 328 331 331 331 331 333 333 333 333 334 334 335 335 337 337 338 338 340 340 341 341 342 342 343 343 346 346 348 348 349 349 350 350 351 351 351 351 351 351 353 353 357 357 361 361 373 373 373 373

Current
Mean: 295.017 ms
Stdev: 20.278 ms (6.9%)
Runs: 239 239 251 251 257 257 259 259 260 260 261 261 269 269 269 269 276 276 277 277 278 278 279 279 279 279 281 281 281 281 282 282 283 283 283 283 285 285 289 289 291 291 291 291 292 292 292 292 293 293 294 294 294 294 294 294 295 295 295 295 296 296 297 297 297 297 299 299 300 300 300 300 301 301 304 304 304 304 306 306 306 306 307 307 308 308 311 311 312 312 312 312 312 312 312 312 313 313 314 314 314 314 316 316 319 319 319 319 321 321 322 322 323 323 324 324 328 328 335 335

Copy link
Contributor

Performance Comparison Report 📊 (4/13)

Meaningless Changes To Duration (3/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
App start time TTI Baseline
Mean: 1487.877 ms
Stdev: 234.064 ms (15.7%)
Runs: 1148.4918950004503 1219.0816000001505 1221.3841129997745 1226.2459310004488 1232.4636559998617 1236.641893000342 1250.5360049996525 1255.3464439995587 1257.1391700003296 1276.6308800000697 1277.7522499999031 1282.5187480002642 1284.5396250002086 1287.5636759996414 1311.7493470003828 1312.4162029996514 1320.8090230003 1325.2748640002683 1326.6910300003365 1329.330017999746 1331.2312899995595 1331.8070299997926 1332.9811380002648 1334.266343000345 1338.0438689999282 1338.4642420001328 1350.4492629999295 1351.5169240003452 1353.0408279998228 1357.7990269996226 1363.5738669997081 1370.9369769999757 1374.1993950000033 1375.2136399997398 1379.7621250003576 1403.6735119996592 1409.6362190004438 1641.6762309996411 1653.4113330002874 1662.528486999683 1693.7461080001667 1727.5324590001255 1727.9882039995864 1740.69541199971 1742.2579939998686 1743.0997540000826 1746.2930349996313 1761.6776059996337 1770.7256180001423 1770.7432580003515 1791.27632800024 1800.0385199999437 1814.5328879998997 1825.223011000082 1829.5804310003296 1839.8247400000691 1854.529581000097 1866.632063999772 1872.5557660004124 1916.8542600004002

Current
Mean: 1482.309 ms
Stdev: 229.113 ms (15.5%)
Runs: 1172.4270799998194 1172.9602269995958 1183.516840999946 1201.831838999875 1202.831054000184 1215.5649570003152 1229.941084999591 1230.0186409996822 1230.4401930002496 1239.7279960000888 1239.8326650001109 1246.5429779998958 1253.6643270002678 1263.4273749999702 1266.0463880002499 1286.0844240002334 1291.0171649996191 1303.423930999823 1304.8422100003809 1306.3945199996233 1308.1602229997516 1313.1266040001065 1315.9237759998068 1315.9650729997084 1321.6399569995701 1331.3121859999374 1332.0650639999658 1332.7110829995945 1339.5535760000348 1343.6639149999246 1352.5711129996926 1361.297159999609 1559.5404390003532 1610.974653000012 1630.7134069995955 1649.1168759996071 1656.8076630001888 1667.7270090002567 1677.4055530000478 1686.7510569998994 1689.6972589995712 1689.7079459996894 1692.99662599992 1715.1631429996341 1715.9707650002092 1717.0781420003623 1717.1117259999737 1717.6741159996018 1749.4134369995445 1750.7139790002257 1754.2897269995883 1755.8913920000196 1762.8247269997373 1764.3017760002986 1769.049409000203 1772.738075000234 1781.9621550003067 1814.5376110002398 1815.5639329999685 1844.3209960004315
App start time regularAppStart Baseline
Mean: 0.020 ms
Stdev: 0.002 ms (11.0%)
Runs: 0.015625 0.017129999585449696 0.017211999744176865 0.01737399958074093 0.017374999821186066 0.01737500075250864 0.01749700028449297 0.017659999430179596 0.01769999973475933 0.017780999653041363 0.018148000352084637 0.01818800065666437 0.018228999339044094 0.01822900027036667 0.01839200034737587 0.01859499979764223 0.018757999874651432 0.018962000496685505 0.019001999869942665 0.019205999560654163 0.019247000105679035 0.01932699978351593 0.019327999092638493 0.0195720000192523 0.0195720000192523 0.019612999632954597 0.019694000482559204 0.019733999855816364 0.01997899916023016 0.019979000091552734 0.020020000636577606 0.020060000009834766 0.020060000009834766 0.020344999618828297 0.02054900024086237 0.020711000077426434 0.02075199969112873 0.020914999768137932 0.020955000072717667 0.020995999686419964 0.021280999295413494 0.0213620001450181 0.021688000299036503 0.021809999831020832 0.021851000376045704 0.021890999749302864 0.021932000294327736 0.021972999908030033 0.022094999440014362 0.02254199981689453 0.023153000511229038 0.0231929998844862 0.0236820001155138 0.023884999565780163 0.023885000497102737 0.024291999638080597 0.02437299955636263 0.024821000173687935 0.02539100032299757

Current
Mean: 0.020 ms
Stdev: 0.002 ms (9.6%)
Runs: 0.01660200022161007 0.0166830001398921 0.016806000843644142 0.01749700028449297 0.017578000202775 0.0176189998164773 0.0176189998164773 0.017659000121057034 0.01766000036150217 0.017741000279784203 0.0177819998934865 0.017822000198066235 0.017904000356793404 0.017904000356793404 0.017943999730050564 0.017985000275075436 0.018025999888777733 0.018026000820100307 0.018269999884068966 0.018269999884068966 0.018269999884068966 0.01855500042438507 0.018636000342667103 0.018636000342667103 0.019205999560654163 0.019367999397218227 0.019490000791847706 0.019694000482559204 0.0197350000962615 0.0197350000962615 0.01981599908322096 0.020060000009834766 0.020060000009834766 0.020183000713586807 0.020262999460101128 0.020263000391423702 0.02026400063186884 0.020304000005126 0.020344999618828297 0.02038600016385317 0.02038600016385317 0.0204670000821352 0.020548999309539795 0.02054900024086237 0.0206709997728467 0.020955000072717667 0.021118000149726868 0.021240999922156334 0.021321999840438366 0.021484999917447567 0.021687999367713928 0.022704999893903732 0.023070999421179295 0.023763000033795834 0.024495000019669533 0.024495000019669533
App start time (CPU) Baseline
Mean: 152.049 %
Stdev: 7.497 % (4.9%)
Runs: 135.74075841445568 138.39928853691322 138.40949225183044 138.5806451612903 138.8995345197889 139.45727514639654 140.25925094593725 141.80585381372788 141.85941604324194 143.99857188256482 144.93973027807613 145.03058012232052 145.2638749178238 146.57537514612218 146.99716842348658 148.32203019901186 148.5573520172418 148.60039316561068 148.70245129858543 148.71314741035863 149.44281877580474 149.72341665377272 150.3626052767501 150.5409509348012 150.7327561135398 150.92308930526056 151.3987528818332 151.6306515433185 151.77742740839946 152.23007972552023 152.39383224915832 153.26409805890222 154.0082459328211 154.05354767720547 154.82923970123483 155.054480871694 155.9615822183962 156.46573519627415 156.9535346091548 157.0131330861036 157.66520743752875 157.69696354312916 157.72962226640163 157.7510975718609 157.8707106243583 158.48934094627904 158.51166193509403 158.60700704544598 158.96400497464163 159.5339926149478 160.337281291482 160.65317375111005 160.9336538925592 161.09820130087783 161.13721825405224 162.15614369192437 162.95893325596307 164.74995615740127 166.1620706717239

Current
Mean: 154.818 %
Stdev: 5.541 % (3.6%)
Runs: 142.38159491234688 145.27893170401396 145.4849891771497 147.11836606000094 148.1802218235244 148.1890221795481 148.45108431728661 148.98888566575368 149.31171454308094 150.22544418706067 150.23482446870963 150.5082932015183 150.52936749417148 150.71362483730707 151.0690877873142 151.25909755951244 151.46446713996548 152.06730266401712 152.12616760604388 152.1980945754537 152.4944931121026 152.50336973296095 152.57735723771572 152.7525776958846 152.9040045441636 153.1897486158533 153.62472372491771 153.72792376616064 153.88633845931298 154.07723942937923 154.27558173295628 154.2925403973164 154.5077176324642 154.82312144261547 154.8354583080361 155.8559945957561 155.902217440679 156.34245453316464 156.34829520529422 156.45266594632054 156.45746686799865 157.57814122119123 157.98451504056857 158.7445318214549 159.0073740281439 159.0824627023722 159.3063117564025 159.32821050915302 159.3828042275969 159.3862627790424 160.07634007893455 160.35946823401397 161.1565397195982 161.90245999850333 162.81123319259152 165.27049217413062 168.23069779245776 168.3745805699523 168.6486988303346

Copy link
Contributor

Performance Comparison Report 📊 (5/13)

Meaningless Changes To Duration (4/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
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 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 60
App start time (RAM) Baseline
Mean: 374.991 MB
Stdev: 7.543 MB (2.0%)
Runs: 357.076171875 359.169921875 361.66015625 361.990234375 363.31640625 363.3359375 363.392578125 365.046875 365.8671875 365.9453125 366.7044270833333 366.71875 367.67578125 368.20703125 368.59375 369.171875 369.8098958333333 369.857421875 370.26953125 370.486328125 372.921875 373.126953125 373.5481770833333 374.6901041666667 375.04296875 376.2109375 376.3333333333333 376.8033854166667 377.84375 378.0481770833333 378.2721354166667 378.3450520833333 378.5872395833333 378.7135416666667 378.8372395833333 378.921875 379.0989583333333 379.1770833333333 379.2005208333333 379.3828125 379.6145833333333 379.6861979166667 379.8450520833333 380.0885416666667 380.4283854166667 380.6692708333333 380.7096354166667 380.78515625 381.3893229166667 382.2994791666667 383.1315104166667 383.2213541666667 383.2708333333333 383.47265625 384.30859375 384.53125 384.69140625 386.0911458333333 388.8489583333333

Current
Mean: 375.614 MB
Stdev: 4.702 MB (1.3%)
Runs: 364.234375 364.65625 365.37109375 366.009765625 366.5546875 367.533203125 370.65234375 371.3893229166667 371.3997395833333 371.5221354166667 371.5260416666667 371.8294270833333 372.1276041666667 372.7239583333333 372.775390625 373.1953125 373.5963541666667 373.70703125 375.072265625 375.1666666666667 375.17578125 375.1875 375.3385416666667 375.3580729166667 375.6549479166667 375.7213541666667 375.8684895833333 375.9505208333333 376.0338541666667 376.3815104166667 376.5130208333333 376.640625 376.6666666666667 376.9453125 377.1510416666667 377.4140625 377.6979166666667 377.7747395833333 377.8697916666667 377.88671875 378.4010416666667 378.4947916666667 378.5247395833333 378.5364583333333 378.5494791666667 379.234375 379.3020833333333 379.6953125 379.8528645833333 379.9869791666667 380.81640625 382.1796875 382.3971354166667 382.8932291666667 382.9361979166667 383.59765625 384.31640625
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 📊 (6/13)

Meaningless Changes To Duration (5/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
App start time (CPU/UI) Baseline
Mean: 28.047 %
Stdev: 2.302 % (8.2%)
Runs: 23 23.1 23.1 23.9 23.9 24.1 25 25 25.9 26 26 26 26.1 26.8 27 27.1 27.3 27.3 27.3 27.3 27.4 27.6 27.7 27.9 28 28 28 28 28 28.1 28.2 28.3 28.5 28.6 28.6 28.6 28.8 29.1 29.2 29.3 29.3 29.3 29.6 29.7 29.8 29.8 29.8 30 30.1 30.2 30.5 30.7 31.1 31.2 31.3 31.9 32 33.3

Current
Mean: 29.083 %
Stdev: 1.522 % (5.2%)
Runs: 25.8 26 26.1 26.7 27 27.1 27.2 27.3 27.5 27.6 27.8 27.9 27.9 28 28 28.1 28.2 28.3 28.4 28.5 28.6 28.6 28.6 28.6 28.7 28.7 28.7 28.9 29 29.1 29.2 29.2 29.3 29.3 29.3 29.3 29.6 29.7 29.9 30 30 30 30 30.1 30.1 30.3 30.5 30.6 30.7 30.7 30.7 31.2 31.2 31.2 31.3 31.6 32 32.9
Open search router TTI Load Search Options Baseline
Mean: 130.547 ms
Stdev: 6.530 ms (5.0%)
Runs: 119.67069500032812 120.93904600013047 122.55033400002867 122.61612899973989 123.07678299956024 123.25264499988407 123.58052599988878 123.9074710002169 123.92932200059295 124.02453599963337 124.4768470004201 124.73144599981606 125.29545099940151 125.3371179997921 126.0640059998259 126.16056300047785 126.22578999958932 126.50004100054502 126.50284800026566 126.74157700035721 127.48539299983531 127.71761099994183 127.71976700052619 127.72595300059766 127.81429099943489 127.97562599927187 128.00227800011635 128.66625999938697 128.74344899971038 128.84761599916965 128.90958699956536 129.08439199998975 129.1323649995029 129.28552300017327 129.6795250000432 129.8128660004586 129.93892399966717 130.30940799973905 131.37943600025028 131.4538169996813 131.66719599999487 131.88147000037134 132.09578400012106 132.37251800019294 132.9698080001399 135.07230599969625 136.90576200000942 137.49971499945968 137.61238600034267 138.33890799991786 138.77579700015485 140.09981300029904 140.39477599970996 141.1903490005061 141.34883699938655 141.3900549998507 142.9077559998259 142.98937999922782 145.01171800028533 147.04536899924278

Current
Mean: 130.890 ms
Stdev: 5.622 ms (4.3%)
Runs: 122.7987879998982 122.97021500021219 122.99780299980193 123.19181299954653 123.73290999978781 124.04939800035208 124.59671999979764 124.78816700074822 124.81148299947381 124.87235500011593 124.96679699979722 125.50512699969113 125.55061899963766 125.6086830003187 125.68689000047743 125.8664549998939 126.33882599975914 126.44555700011551 126.59875500015914 127.3510739998892 127.44995100051165 128.43920900020748 128.54203299991786 128.79378200042993 128.81762699969113 128.93009399995208 129.11470599938184 129.733479000628 129.85563199967146 129.86307800002396 130.37447100039572 130.4735509995371 130.5228679999709 131.60408500023186 131.81697600055486 132.00622599944472 132.07332399953157 132.3527429997921 132.56811599992216 132.97151699941605 133.25085500068963 133.81746499985456 134.17167099937797 134.37622099928558 134.4214679999277 134.80761799961329 136.2269289996475 137.55021200049669 137.84875500015914 138.41768399998546 138.61128700058907 138.73022499959916 139.01265499927104 139.04349800013006 139.19197600055486 140.21508799958974 141.22782399971038 143.21720399986953 143.36665899958462
Open search router TTI Open Search Router TTI Baseline
Mean: 1191.812 ms
Stdev: 90.534 ms (7.6%)
Runs: 978.9212250001729 984.0625820001587 987.4986979998648 988.4399020001292 997.1791989998892 997.8516030004248 998.3312990004197 1001.1022549998015 1002.6125900000334 1002.7527270000428 1002.7724200002849 1003.1431889999658 1007.8098560003564 1008.2013760004193 1008.7016200004146 1010.3895260002464 1010.3906260002404 1013.3426510002464 1015.9872230002657 1018.7711190003902 1021.0575769999996 1021.0890309996903 1022.199706999585 1025.382242999971 1025.7579350005835 1026.0358890006319 1026.2411710005254 1026.5303150005639 1028.3427340006456 1029.6881509991363 1030.7538250004873 1031.560344000347 1035.4550379998982 1042.0994879994541 1045.6648369999602 1047.9897459996864 1048.8405359992757 1051.044840999879 1051.466309000738 1052.4790449999273 1053.6551520004869 1060.352579999715 1063.4217940000817 1070.8746750000864 1077.9172769999132 1080.7524830000475 1081.1520189996809 1083.2032070001587 1091.8758550006896 1093.0191249996424 1093.216878999956 1096.799724000506 1100.691570000723 1104.5704760001972 1105.0513920001686 1106.9078379999846 1108.698935000226 1108.9142260001972 1111.6476239999756 1111.969971000217 1114.1308190003037 1115.7416190002114 1115.9686289997771 1117.2446699999273 1117.5351980002597 1119.1736260000616 1120.454061999917 1120.6715500000864 1121.6637789998204 1123.2615160001442 1123.3963629994541 1123.6718760002404 1125.1403000000864 1125.7045499999076 1126.2757569998503 1126.3778890008107 1126.998007000424 1127.9139000000432 1130.5845550000668 1130.6507980003953 1130.9026700006798 1131.0307219997048 1131.3431400004774 1131.3431400004774 1131.6184090003371 1131.8674729997292 1132.4892990002409 1132.4892990002409 1133.2665210003033 1133.5591639997438 1133.9639079999179 1134.260050999932 1136.0249439999461 1136.4988200003281 1136.6028249999508 1137.8232019999996 1138.7179370000958 1139.0053310003132 1139.3460699999705 1141.1972260000184 1141.330485000275 1141.330485000275 1141.832112999633 1141.9066169997677 1142.2041020002216 1142.2244060002267 1142.5128990001976 1143.8397630006075 1144.187947999686 1144.3424480007961 1144.4499519998208 1144.808147000149 1146.3429370000958 1146.5843520006165 1146.8989669997245 1147.3909520003945 1147.5922039998695 1148.1413979995996 1148.3215340003371 1148.5839029997587 1148.6191010000184 1149.0240079993382 1149.237914999947 1150.73620699998 1150.9928390001878 1151.2147630006075 1152.0852459995076 1152.2493089996278 1152.4864100003615 1152.960083000362 1153.0373539999127 1153.0373539999127 1153.1818850003183 1153.9468189999461 1154.309244999662 1155.10599800013 1155.1247970005497 1155.3696290003136 1155.5146080004051 1157.116048000753 1157.4366459995508 1157.5403650002554 1157.5469570001587 1157.7598069999367 1158.1659350004047 1158.325764999725 1158.9006350003183 1159.4409600002691 1159.4748139996082 1159.5553800007328 1159.5792239997536 1159.9743660008535 1161.4196780007333 1161.8033460006118 1162.3218600004911 1163.3334559993818 1164.081949999556 1164.357788999565 1165.22627799958 1165.2406829996035 1165.3322359994054 1166.0956220002845 1166.1540129994974 1167.3875339999795 1167.9249680005014 1168.0238449992612 1168.0513110002503 1168.912150000222 1168.912150000222 1168.9411630006507 1169.0952960001305 1169.6761069996282 1169.9389249999076 1170.1256110006943 1170.2140709999949 1170.395143000409 1170.4166670003906 1171.0754400007427 1171.3547780001536 1171.3829350005835 1171.5304370000958 1171.777101000771 1172.6485600005835 1174.1159670008346 1174.2947599999607 1174.8964039999992 1175.841146000661 1175.8871269999072 1177.0137949995697 1177.2701420001686 1177.2701420001686 1177.6872159997001 1177.7808439992368 1177.9008799996227 1177.9221609998494 1177.990885999985 1178.7975260000676 1178.8956709997728 1179.7848309995607 1180.101319000125 1180.6362709999084 1181.5754399998114 1181.6056730002165 1181.9212660007179 1182.139243000187 1182.8388680005446 1183.075601999648 1183.075601999648 1183.853190000169 1184.0161540005356 1184.078655000776 1184.432699000463 1184.432699000463 1184.6984470002353 1185.631021999754 1185.8157549994066 1186.2548420000821 1186.3679610006511 1186.835978999734 1187.006674000062 1187.0333660002798 1187.1249199993908 1187.2697350000963 1187.4779869997874 1188.2427979996428 1188.2996020000428 1189.492513999343 1189.7774670002982 1190.0387780005112 1190.0387780005112 1190.4103199997917 1190.7300619995221 1190.8860280001536 1190.8860280001536 1191.4348970009014 1191.7030039997771 1192.7674160003662 1192.9278570003808 1193.0962740005925 1193.7267660005018 1193.7435720004141 1194.4188639996573 1194.4251310005784 1194.5847580004483 1194.9529220005497 1195.3588060000911 1195.706828000024 1195.9325769999996 1196.0720620006323 1196.766846000217 1197.0777589995414 1197.2310790000483 1198.0167650002986 1198.6298429993913 1199.7355549996719 1201.0255950000137 1201.0954179996625 1201.5273040002212 1201.8205570001155 1204.032186999917 1204.032186999917 1204.228474999778 1204.5032150000334 1205.2483320003375 1205.2919930005446 1205.4454760001972 1205.5182709991932 1205.757121000439 1205.9544280003756 1207.1472979998216 1207.95495699998 1209.2078450005502 1209.3684909995645 1209.9466150002554 1209.9869389999658 1209.9869389999658 1210.828246999532 1211.0664470000193 1211.609538000077 1212.6116949999705 1212.7994800005108 1212.799804999493 1212.799804999493 1212.838175999932 1213.1866870000958 1214.7081709997728 1215.2475990001112 1215.7538659991696 1217.8020430002362 1218.7042650002986 1218.7639160007238 1219.3743900004774 1219.8218590002507 1221.0277920002118 1221.7528890008107 1222.0758879994974 1224.9243990005925 1225.0587169993669 1225.7216400001198 1226.571045000106 1226.652425000444 1228.4426689995453 1228.9773770002648 1230.1547450004146 1231.1460779998451 1232.4152840003371 1234.1980389999226 1234.8172610001639 1235.0178640000522 1235.0178640000522 1235.439616999589 1236.4544280003756 1236.4544280003756 1236.709514000453 1237.157186999917 1238.5052899997681 1239.181925999932 1239.5686449995264 1241.2705899998546 1241.2705899998546 1242.097289999947 1242.394043999724 1242.6683770008385 1242.9451910005882 1245.0896809995174 1245.2605799995363 1245.357219000347 1246.2889000000432 1248.6376139996573 1251.9409590000287 1251.9780689999461 1255.482462999411 1255.9261480001733 1256.819947000593 1257.1298430003226 1257.8922529993579 1260.2693279990926 1261.9529229998589 1263.1405029995367 1263.1405029995367 1264.3111979998648 1264.338012999855 1266.4299320001155 1268.2633880004287 1268.2716479999945 1268.675009000115 1271.189047000371 1274.2874360000715 1274.4513760004193 1275.2132169995457 1275.909057999961 1278.20389899984 1279.012654999271 1279.3695080000907 1281.0782479997724 1284.2380779990926 1284.9813639996573 1285.1111260000616 1285.185060000047 1285.2129319999367 1285.299804999493 1285.6610109992325 1286.32658000011 1286.7736420007423 1292.9625260001048 1293.9021819997579 1294.0379239991307 1295.428264000453 1295.7049160003662 1296.8339849999174 1299.6460379995406 1299.7230240004137 1299.762411000207 1300.7483319994062 1300.9938559997827 1301.6480719996616 1303.1306159999222 1305.3061940008774 1306.1808280004188 1306.970540999435 1309.4964199997485 1309.7041429998353 1310.960083999671 1311.3813080005348 1315.435059000738 1317.5769859999418 1318.1363529991359 1319.1968999998644 1319.1968999998644 1323.299804999493 1326.1803799998015 1326.2728279996663 1326.6700040008873 1328.341594000347 1333.4145919997245 1334.2485760003328 1335.6059989994392 1336.3814700003713 1336.534262000583 1336.534262000583 1337.5433360002935 1338.8480629995465 1340.6075859991834 1343.5946049997583 1343.7961430000141 1344.2828780002892 1344.7064619995654 1346.2800710005686 1348.756837000139 1351.9176030000672 1352.603231000714 1355.2388520007953 1357.767293999903 1361.897583999671 1368.7161060003564 1368.9355880003422 1373.5645759999752 1376.0898040002212 1376.0898040002212 1376.5274660000578 1377.8365890001878 1379.697755000554 1390.665405999869 1396.8591719996184 1399.597942000255 1399.597942000255 1405.635335999541 1410.6188160004094 1415.9581300001591 1422.0110280001536

Current
Mean: 1217.428 ms
Stdev: 54.726 ms (4.5%)
Runs: 1067.9701749999076 1070.272299000062 1071.103964000009 1082.4775809999555 1082.4784760000184 1082.5952150002122 1083.5984709998593 1085.0450440002605 1085.053549000062 1090.3427740000188 1091.479290000163 1094.2231040000916 1094.8601080002263 1097.290853999555 1098.140625 1111.2595220003277 1111.5035809995607 1114.226034000516 1119.1643479997292 1120.80342700053 1122.5618089996278 1127.862182999961 1128.2034109998494 1128.4705410003662 1131.1709799999371 1133.507569000125 1136.5092369997874 1136.7289230003953 1137.2875169999897 1137.3392340000719 1139.1244310000911 1140.7621670002118 1142.858764999546 1142.975545999594 1144.441813999787 1145.4661060003564 1145.6860360000283 1148.6382659999654 1149.374389999546 1150.9547119997442 1151.3022869993001 1153.3112390004098 1153.3678799998015 1153.8795580007136 1154.6164150005206 1155.275717000477 1155.6871339995414 1156.471231999807 1156.6181650003418 1158.5769050000235 1158.5769050000235 1159.2513839993626 1160.2577720005065 1160.3386639999226 1160.4462900003418 1161.0121259996668 1161.7659520003945 1161.8043630002066 1161.8066010000184 1161.8198650004342 1162.0897220000625 1162.1012780005112 1162.5220550000668 1162.8401699997485 1162.9923909995705 1163.0716960001737 1163.1193040004 1164.2496750000864 1165.2106130002066 1165.2362879998982 1165.2442220002413 1165.3115240000188 1165.434692999348 1166.2548019997776 1167.0586759997532 1167.1232099998742 1167.6326089994982 1168.2231049994007 1169.2232260005549 1169.4327400000766 1170.1558429999277 1170.2760019991547 1170.34037300013 1170.5092369997874 1170.9377450002357 1171.7050379998982 1171.8254810003564 1172.0728360004723 1172.9532070001587 1174.3826089994982 1174.579630999826 1174.6642260001972 1175.440471000038 1175.9833180001006 1176.1277270000428 1176.4462900003418 1176.5132650006562 1176.5713709993288 1176.5766200004146 1176.8368739997968 1177.1489680008963 1177.3079839991406 1177.335572000593 1177.6115319998935 1177.743530999869 1177.775675999932 1178.8366299998015 1178.953288000077 1179.0599779998884 1179.565144999884 1179.862509000115 1179.9358320003375 1180.3362230006605 1180.6967369997874 1181.2961429990828 1181.680704999715 1181.9012860003859 1182.1089679999277 1182.5589199997485 1183.067913000472 1183.3306889999658 1183.613321999088 1184.071492999792 1184.2710379995406 1184.3524989997968 1184.3785000005737 1184.456828000024 1184.462891000323 1184.6330570001155 1184.8506269995123 1184.9542650002986 1184.9861660003662 1185.5845950003713 1185.721679999493 1185.7613939996809 1185.7987059997395 1185.8109949994832 1186.2687990004197 1186.4936130000278 1187.8053799998015 1188.3577070003375 1188.5769050000235 1188.7456469992176 1189.4547129999846 1189.9222410004586 1190.523763999343 1190.6195480003953 1190.9394129998982 1190.9660649998114 1191.3405769998208 1191.3405769998208 1191.512858999893 1191.8444830002263 1191.9052329994738 1191.9112559994683 1192.4023850001395 1192.4467380000278 1192.8019619993865 1192.8864750005305 1193.2351080002263 1193.7431240007281 1193.7724210005254 1193.8494469998404 1194.046916000545 1194.1910410001874 1194.1914480002597 1194.2979340003803 1194.3567709997296 1194.4291190002114 1195.288697000593 1195.7736010001972 1195.9336350001395 1196.4996750000864 1196.5441899998114 1197.5009359996766 1197.6754559995607 1198.0390220005065 1198.241781000048 1198.8248700005934 1198.957397999242 1199.9397789994255 1199.978842000477 1200.1647949991748 1200.3526619998738 1200.5705570001155 1200.62577399984 1200.8678799998015 1200.9986579995602 1201.0522469999269 1201.1203209999949 1201.2760009998456 1201.3955899998546 1201.7013760004193 1201.7186290007085 1201.7388110002503 1201.7551680002362 1202.4801839999855 1202.7687989994884 1202.882406000048 1203.0231130002066 1203.2609050003812 1203.5725910002366 1203.6558029996231 1204.1980389999226 1204.9272469999269 1205.3572599999607 1206.6608079997823 1206.9247639998794 1207.131795000285 1207.9204919999465 1207.967976999469 1208.0952150002122 1208.3656419999897 1208.3949789991602 1208.4368090005592 1208.836263999343 1208.9516610000283 1209.0107019999996 1209.0705979997292 1209.2586270002648 1209.532918999903 1209.9257819997147 1209.9557300005108 1210.034057999961 1210.2347830003127 1210.362182999961 1210.4026290001348 1210.9895839998499 1211.150349999778 1211.3366300007328 1211.3748380001634 1211.6394459996372 1211.854248999618 1211.9169930005446 1212.386272000149 1212.8282890003175 1212.9918630002066 1213.5244960002601 1213.8918869998306 1214.0058190003037 1214.6749269999564 1215.5772299999371 1216.72184299957 1217.176067000255 1217.2437350004911 1217.3360599996522 1217.3872080007568 1217.674154999666 1217.820558000356 1218.1210939995944 1218.15287300013 1218.1936039999127 1218.3500169999897 1218.3548179995269 1218.3835859997198 1218.3968110000715 1218.8076579999179 1218.8461110005155 1218.9373779995367 1219.0899670002982 1219.1648770002648 1219.633708000183 1219.638264999725 1219.6650400003418 1220.0408939998597 1220.3028979999945 1221.0891119996086 1221.1934409998357 1224.0581469992176 1224.0673420000821 1224.8064379999414 1225.1275239996612 1225.254761999473 1225.3411870002747 1225.6149910008535 1225.7174890004098 1225.754435999319 1225.9759940002114 1226.028320999816 1226.1184909995645 1226.1636969996616 1226.2978929998353 1226.461141999811 1226.5260830000043 1226.600545999594 1227.2614749995992 1227.4208589997143 1227.4448239998892 1227.4905200004578 1227.7873950004578 1228.1658130008727 1228.3698330000043 1228.4224460003898 1228.8422450004146 1229.3354910006747 1231.300741000101 1232.3684489997104 1232.3700769999996 1232.8472090000287 1232.9512130003422 1232.951253999956 1233.3515639994293 1233.6393639994785 1233.641357999295 1233.7871909998357 1233.866944000125 1234.0491540003568 1234.210083999671 1234.5446379994974 1234.745647000149 1234.7763269999996 1234.8605150002986 1235.0438639996573 1235.5984299993142 1235.631837000139 1235.7803150005639 1236.0710859997198 1236.6522220000625 1236.669962999411 1236.7754730004817 1236.9591070003808 1240.0159110007808 1240.180826999247 1240.3143320009112 1240.8718260005116 1241.1305750003085 1241.4917409997433 1241.7676190007478 1242.044108999893 1242.1263029994443 1242.444295999594 1242.5916759995744 1242.8396009998396 1242.9674490001053 1243.4490569997579 1243.706949999556 1244.396038000472 1244.4455979997292 1245.1280930005014 1245.6754970001057 1245.6798109998927 1245.8638920001686 1247.069010999985 1248.3244230002165 1248.3253590008244 1249.081339999102 1249.1711840005592 1249.319579999894 1249.3464770000428 1249.459309999831 1250.5446370001882 1250.5542000001296 1250.6498219994828 1251.203777000308 1251.2061369996518 1251.4578860001639 1251.4715179996565 1251.8234459999949 1252.3063559997827 1252.5246590003371 1252.8679620008916 1254.0253100004047 1254.765788000077 1255.569337000139 1255.6136480001733 1255.7623709999025 1256.1280930005014 1257.3725999994203 1258.0642910003662 1258.1857510004193 1258.26330600027 1258.3189710006118 1259.1682949997485 1259.4809169992805 1259.5797129999846 1259.8724379995838 1259.937784999609 1260.0909020006657 1260.8470869995654 1260.8834650004283 1261.322998999618 1262.0765789998695 1263.0463460003957 1263.054891999811 1264.8749189991504 1265.3608810007572 1266.350097999908 1267.0131029998884 1267.382121999748 1267.4989839997143 1268.1743990005925 1268.5406499998644 1269.3179529998451 1269.5055750003085 1271.0410170005634 1271.5016280002892 1272.0005290005356 1272.4279789999127 1272.9024259997532 1273.6123050004244 1274.1943769995123 1275.3774009998888 1276.8190930001438 1276.9134120000526 1277.1619469998404 1277.3194180000573 1277.6073010005057 1277.9611819991842 1280.3334559993818 1281.8526209993288 1281.8583590006456 1282.1308600008488 1282.8901370000094 1283.2907720003277 1284.4383960003033 1285.572387999855 1285.8332929993048 1285.8332929993048 1286.132406000048 1287.1773280007765 1287.5576179996133 1288.2543949997053 1288.4962160000578 1289.4476740006357 1290.2916670003906 1290.4214690001681 1291.316081000492 1292.322550999932 1293.5056559992954 1294.1969410004094 1294.3402109993622 1294.8704439997673 1295.8348390003666 1295.8703619996086 1296.7682299995795 1297.0871999999508 1297.6639000000432 1297.6673590000719 1297.9029550002888 1298.089723000303 1299.6861169999465 1300.9020189996809 1302.7902839994058 1304.2729500001296 1306.0684420000762 1306.7097580004483 1308.1338710002601 1308.7080089999363 1309.8285730006173 1310.703451000154 1311.4141849996522 1312.5632330002263 1314.4694429999217 1315.8161629997194 1316.3945730002597 1317.5544039998204 1317.7532150000334 1319.4798589991406 1319.9856779994443 1323.019206999801 1323.672811000608 1326.544882000424 1328.154378999956 1329.2700610002503 1333.1387140005827 1334.4792080000043 1335.5783289996907 1342.1556400004774 1344.3328459998593 1344.3328459998593 1349.7946380004287 1350.8376469993964 1359.2596849994734 1361.8295499999076 1363.1470959996805

Copy link
Contributor

Performance Comparison Report 📊 (7/13)

Meaningless Changes To Duration (6/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
Open search router TTI (CPU) Baseline
Mean: 145.798 %
Stdev: 4.040 % (2.8%)
Runs: 138.22862370047537 138.7333586375819 139.7926334182994 140.47132269251017 140.5979086622709 140.7838026340973 140.94834000973407 141.2026133599425 141.448018950042 141.95616768530456 142.32965233614107 142.5478645508912 142.57141894116117 142.7457900915694 143.02210151534663 143.08565171248813 143.10030574179447 143.1298188011809 143.33783298463698 143.71992358448009 143.8366561310138 143.97571339523353 144.00571753209667 144.43281495500963 144.48730702855156 144.6410323539927 144.70847909824667 144.83476484676294 144.83966076352127 144.9987409214437 145.02257044020064 145.22172150806387 146.1287480644207 146.2848086374992 146.3818588928191 146.8611117088988 147.0214056448875 147.31344645292953 147.3352167603188 147.53121739942785 147.60753596845217 147.6374239655478 147.6536671181866 147.91010134550046 147.98847141896937 148.28981591138006 148.42639748788392 148.84216522727817 149.17797145032384 149.2148188412009 149.3350910194739 150.38107856916443 151.53331904653746 152.85294362047077 153.50049267074218 153.59990896617637 153.6895062903626 155.12676181117516 155.67141591640447

Current
Mean: 151.561 %
Stdev: 3.857 % (2.5%)
Runs: 143.15761297640307 144.6831439688992 145.16481778090537 145.79982121773895 145.82339262394194 146.39367278065785 146.60273990407887 146.6601674304661 146.85425989589305 147.7751909628799 147.84092726474717 147.98343187762086 148.28189301951625 148.30726278078336 148.9820417389021 149.25978924432133 149.42037937405937 149.54709065069346 149.57576654311313 150.0181310512126 150.12030020946364 150.59301622886085 150.8206246605341 151.0061309409132 151.06967753457894 151.13259113865155 151.20502977603778 151.3163745085813 151.6578712254156 151.76070806593995 151.7999347709762 151.9344947618337 152.03068729075187 152.3554583621948 152.5691523614349 152.75225804809756 153.012312596308 153.12389782972642 153.36972733273052 153.41356047443557 153.79234885744748 153.88060415370757 154.1360445797828 154.6160783947353 154.62622006341866 154.66605627911096 154.80861928179226 155.64367900212517 155.94577116462506 155.97208709216684 156.40820948303292 156.562020821947 156.71219323788847 157.26403665934737 157.91522458238748 160.230952437754 160.64712193609597
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

Current
Mean: 59.998 FPS
Stdev: 0.008 FPS (0.0%)
Runs: 59.956042102027865 59.96400655957389 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: 400.837 MB
Stdev: 4.806 MB (1.2%)
Runs: 389.66796875 389.7923177083333 390.60390625 392.9453125 393.64453125 393.77265625 394.2609375 394.65078125 394.97890625 395.353125 396.32890625 396.484375 396.553125 396.871875 396.9484375 397.2046875 397.4640625 397.51171875 397.69140625 398.322265625 398.32890625 398.6578125 400.1703125 400.26171875 400.815625 400.93515625 400.9796875 401.17734375 402.015625 402.7984375 402.86484375 402.93828125 402.951171875 403.00546875 403.175 403.34921875 403.39765625 403.40546875 403.42109375 403.5078125 403.5359375 403.734375 403.9109375 403.9625 404.07265625 404.30703125 404.64140625 404.90546875 405.05078125 405.159375 405.27734375 405.31953125 405.32421875 405.484375 405.7421875 406.16328125 406.5734375 407.6953125 409.21875 410.9296875

Current
Mean: 399.582 MB
Stdev: 5.363 MB (1.3%)
Runs: 385.2484375 388.51484375 390.2484375 390.98359375 392.01484375 392.0634765625 392.330078125 393.298828125 394.2703125 394.2975260416667 394.49296875 394.76171875 395.015625 395.81875 396.09453125 396.1474609375 396.162109375 396.32265625 396.65625 396.8375 396.996875 397.2454427083333 397.28515625 397.39140625 398.15390625 398.33671875 398.5263671875 398.88125 399.04375 399.74609375 400.24765625 401.209375 401.359375 401.4203125 401.89140625 402.0924479166667 402.115625 402.34921875 402.4125 402.4671875 402.51875 402.8765625 402.88671875 402.9303385416667 402.98203125 403.1703125 403.69921875 404.03125 404.90625 404.99453125 405.0921875 405.53984375 405.546875 405.61171875 405.91796875 406.07578125 406.45 406.81484375 409.334375 412.7703125

Copy link
Contributor

Performance Comparison Report 📊 (8/13)

Meaningless Changes To Duration (7/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
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: 24.072 %
Stdev: 1.407 % (5.8%)
Runs: 21.6 21.6 21.8 22.3 22.3 22.3 22.4 22.6 22.6 22.6 22.7 22.7 23 23 23.1 23.1 23.2 23.2 23.4 23.4 23.4 23.5 23.5 23.5 23.6 23.8 23.8 23.9 23.9 23.9 24 24.2 24.2 24.2 24.3 24.3 24.4 24.4 24.4 24.7 24.7 24.7 25 25.1 25.1 25.1 25.2 25.3 25.3 25.5 25.6 25.8 25.8 25.9 26.8 27.4 27.4 27.7

Current
Mean: 25.887 %
Stdev: 1.607 % (6.2%)
Runs: 21.9 23.2 23.4 23.5 23.9 24 24 24.3 24.3 24.3 24.3 24.3 24.4 24.6 24.8 24.8 24.9 25 25 25.1 25.1 25.2 25.3 25.3 25.3 25.5 25.5 25.7 25.8 25.9 25.9 25.9 25.9 25.9 25.9 26 26.2 26.2 26.2 26.2 26.6 26.6 26.6 26.8 26.8 26.9 27.1 27.1 27.5 27.6 27.6 27.8 27.9 28 28.3 28.3 28.7 29 29.3 29.8
Report typing Composer typing rerender count Baseline
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Current
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Copy link
Contributor

Performance Comparison Report 📊 (9/13)

Meaningless Changes To Duration (8/12)

Show entries
Name Duration
App start time nativeLaunch 26.339 ms → 32.690 ms (+6.351 ms, +24.1%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 81.300 ms → 63.167 ms (-18.133 ms, -22.3%) 🟢
App start time appCreation 69.633 ms → 64.000 ms (-5.633 ms, -8.1%)
App start time contentAppeared_To_screenTTI 864.044 ms → 912.209 ms (+48.166 ms, +5.6%)
App start time appCreationEnd_To_contentAppeared 446.300 ms → 409.750 ms (-36.550 ms, -8.2%)
App start time runJsBundle 321.450 ms → 295.017 ms (-26.433 ms, -8.2%)
App start time TTI 1487.877 ms → 1482.309 ms (-5.568 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (-0.001 ms, -3.4%)
App start time (CPU) 152.049 % → 154.818 % (+2.769 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 374.991 MB → 375.614 MB (+0.623 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.047 % → 29.083 % (+1.036 %, +3.7%)
Open search router TTI Load Search Options 130.547 ms → 130.890 ms (+0.343 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1191.812 ms → 1217.428 ms (+25.616 ms, +2.1%)
Open search router TTI (CPU) 145.798 % → 151.561 % (+5.764 %, +4.0%)
Open search router TTI (FPS) 60.000 FPS → 59.998 FPS (-0.002 FPS, ±0.0%)
Open search router TTI (RAM) 400.837 MB → 399.582 MB (-1.255 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.072 % → 25.887 % (+1.814 %, +7.5%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 469.820 ms → 466.761 ms (-3.059 ms, -0.7%)
Report typing (CPU) 93.215 % → 92.608 % (-0.607 %, -0.7%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 455.339 MB → 454.816 MB (-0.523 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.427 % → 20.329 % (-0.099 %, ±0.0%)
Chat opening (CPU) 160.568 % → 162.044 % (+1.476 %, +0.9%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 386.267 MB → 384.214 MB (-2.053 MB, -0.5%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.178 % → 32.407 % (+0.228 %, +0.7%)
Money request - Open Manual Tracking 136.393 ms → 135.874 ms (-0.519 ms, ±0.0%)
Money request - Open Contacts 214.356 ms → 214.493 ms (+0.137 ms, ±0.0%)
Money request - Open Create 133.100 ms → 131.621 ms (-1.479 ms, -1.1%)
Money request (CPU) 177.558 % → 177.790 % (+0.232 %, ±0.0%)
Money request (FPS) 59.071 FPS → 58.900 FPS (-0.172 FPS, ±0.0%)
Money request (RAM) 440.517 MB → 438.817 MB (-1.700 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.855 % → 42.928 % (+0.073 %, ±0.0%)
Show details
Name Duration
Report typing Message sent Baseline
Mean: 469.820 ms
Stdev: 28.748 ms (6.1%)
Runs: 418.9874679995701 419.6945799998939 423.1783849997446 424.41780600044876 427.06132100056857 429.1099850004539 430.09041300043464 433.15307699982077 434.6952720005065 435.50305199995637 435.54280600044876 436.22375500015914 436.71561700012535 438.9115800000727 439.537434999831 443.11690199933946 450.1747640008107 451.7215579999611 452.7172039998695 460.234985999763 466.8664549998939 467.3015959998593 467.7031650003046 468.1273600002751 468.89554900024086 469.24853600002825 471.0463870000094 471.08272300008684 472.3137209992856 473.10416699945927 473.2275390001014 473.7799070002511 475.1524259997532 475.9391279993579 476.53291799966246 477.4499099999666 479.3146980004385 479.76338799949735 480.5454509994015 480.8356119999662 481.22485399991274 481.2586260000244 484.5804850002751 485.10611999966204 485.3144530002028 487.112508000806 488.57535899989307 489.6361500006169 490.9465740006417 492.3827309999615 493.33227599970996 493.8309329999611 500.26436400040984 510.23018399998546 514.5285240001976 515.5681560002267 522.0980630004779 523.197103000246 528.9178059995174 532.0891929995269

Current
Mean: 466.761 ms
Stdev: 31.143 ms (6.7%)
Runs: 412.4305019993335 416.96557600051165 419.1588549995795 419.3538819998503 421.72562700044364 423.73689799942076 425.0922849997878 425.271931999363 427.8182779997587 430.3780930005014 431.4067789996043 432.52954200003296 433.80082200001925 433.8336600000039 434.5562339993194 436.2257489999756 437.8465579999611 442.494262999855 443.28128999937326 453.8647459996864 454.60579499974847 461.04182900022715 463.5538729997352 464.3696699999273 464.64241500012577 465.00061100069433 465.94466200005263 468.74625699967146 470.7018229998648 471.60534700006247 471.7629389995709 472.2913830000907 473.04911299981177 473.191529000178 473.41060400009155 474.1472980007529 474.61087999958545 476.3145350003615 476.95064300019294 477.4234620006755 481.1356610003859 482.2433270001784 482.8978269994259 484.42895600013435 485.1798910005018 485.9978839997202 486.41646299976856 488.41890499927104 489.83337400015444 490.48250399995595 496.3902590004727 501.1079509994015 503.1802980005741 516.9897460006177 517.5412200000137 519.4232999999076 520.2375900000334 521.0283209998161 522.8017980000004 534.8122560000047
Report typing (CPU) Baseline
Mean: 93.215 %
Stdev: 3.522 % (3.8%)
Runs: 85.58367738487567 85.87548440638157 86.25479982585422 86.67218660234435 87.25931054313374 88.30294771194684 88.7141236644463 88.84033146363757 88.94730245826891 89.4278914560325 89.8894059233235 90.05051907874056 90.29120959579112 90.37101889351392 90.41720765598838 91.33811900232142 91.3751147037875 91.56237377331962 92.69499788539649 92.80755664637717 92.8517505702075 92.91187835766884 92.97020021158342 93.15641791106158 93.31569568817443 93.57179971576593 93.62452994798348 94.1601575804757 94.19428192991367 94.23300653880551 94.25163539333627 94.26129693639541 94.41009137211434 94.43591692932286 94.52492468038663 94.52732276682863 94.69529877160804 94.91348660416588 94.92565611890679 95.05292106990703 95.1734598582234 95.23524355032767 95.32957018234642 95.43221844598304 95.51291046080642 95.70714773361671 96.59524682695074 96.64473731908038 96.72726671759384 97.11277818734747 97.20462178911094 98.06370864176347 98.43100168471074 98.61206847015536 98.71736672946868 101.88800708116642

Current
Mean: 92.608 %
Stdev: 3.163 % (3.4%)
Runs: 85.27449141741337 86.29004727865612 87.14604984410472 87.59799450485889 87.9313935802305 88.32099940340242 88.38333100824198 88.99709844783645 89.06867544784838 89.25940871225583 89.64611625055234 89.87973398607085 90.29871552293737 90.37325877053787 90.77995294472456 90.84515912999807 90.91756475909374 91.15731166099933 91.34199428189747 91.37630555355024 91.38667189945855 91.68792480734201 91.81215772421425 91.85633468777975 91.93924163273513 91.95255961627683 92.34434402043482 92.66928005842705 92.73281508168621 92.78919776941973 92.92888749227191 93.03682478200102 93.27203272776777 93.56873124562627 93.64472266469508 93.76769324565649 93.91193476713799 93.94916919479775 94.16974023215404 94.22649145154556 94.31523491338504 94.44313779213701 94.59598554257337 94.61011096977126 95.02566590205515 95.18868584475437 95.25765539102544 95.3535475011293 95.99517562245852 96.09887853213877 96.45177176650279 96.61995093035061 97.31339691517674 97.87838155765738 98.5730661073286 99.16651353717015 99.25225765948996
Report typing (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 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

Copy link
Contributor

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

@aldo-expensify
Copy link
Contributor

If the performance issues are real, we could look into doing this: #61771 (comment), but disabling the lint for the specific lines because we know it is fine 🤷

@sosek108
Copy link
Contributor Author

If the performance issues are real, we could look into doing this: #61771 (comment), but disabling the lint for the specific lines because we know it is fine 🤷

I'm fine with that

@mountiny
Copy link
Contributor

Yeah its hard to say now if these reported regressions are indeed correct cc @chrispader

@chrispader
Copy link
Contributor

Yeah its hard to say now if these reported regressions are indeed correct cc @chrispader

looking into it

Copy link
Contributor

🚀 Deployed to production by https://github.com/mountiny in version: 9.1.46-12 🚀

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

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.

7 participants