Skip to content

Display MoneyRequestReport on Inbox and navigate to it from preview #60119

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

Kicu
Copy link
Member

@Kicu Kicu commented Apr 11, 2025

Explanation of Change

This PR implements 2 things mainly

  • displays the newly added MoneyRequestReportView in the context of Inbox - on ReportScreen (/r/:reportID route) for the types of reports we want to show
  • adds navigating to this ☝️ view from new MoneyRequestReport/Transaction previews

This flowchart (hopefully) helps one understand how we render reportActions now:

reports

Done

  • Added a check to ReportScreen for the case of moneyRequestReport and if true -> render MoneyRequestReportActionsList to show table view, instead of standard ReportActionsView
  • if we end up in case of "single expense" report - we continue to show original component
  • the ☝️ aforementioned check is now shared between SearchMoneyRequestReport and ReportScreen
  • added onPress to previews and copied the navigation from old code
  • some parts of TransactionPreview and MoneyRequestReportPreview were simplified and refactored (but not much visual changes there)

Fixed Issues

$ #57509
PROPOSAL:

Tests

  • start app and go to Inbox
  • click on any chat that contains expenses
  • click on the preview of either: single expense or multiple expenses (carousel)
  • verify you are still within the Inbox context after navigation
  • if the report has more than 1 expense (transaction) then we should see the new view with table at the top
  • when navigating from search we stay in Search context, but when navigating from Inbox we stay in Inbox context

Offline tests

QA Steps

Same as tests

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
rec-reports-andr.mp4
Android: mWeb Chrome
Screen.Recording.2025-04-15.at.15.59.26.mov
iOS: Native
rec-reports-ios.mp4
iOS: mWeb Safari
MacOS: Chrome / Safari
rec-reports-web.mp4
MacOS: Desktop

@Kicu Kicu force-pushed the kicu/57509-use-money-report branch from f0df1d4 to 01ea0be Compare April 11, 2025 13:35
Copy link
Contributor

🚧 @shawnborton has triggered a test app build. You can view the workflow run here.

This comment has been minimized.

@shawnborton
Copy link
Contributor

Nice, feeling good so far. I commented elsewhere about the weird delay we get when the report loads (you see the empty state for a flash, and then the table rows come in) but I think we can handle that elsewhere.

@Kicu Kicu force-pushed the kicu/57509-use-money-report branch 3 times, most recently from c6cfe19 to 2f46854 Compare April 14, 2025 13:21
@Kicu Kicu force-pushed the kicu/57509-use-money-report branch from 71ed84f to e6f62f2 Compare April 15, 2025 08:45
@Kicu Kicu force-pushed the kicu/57509-use-money-report branch from e6f62f2 to 508dc79 Compare April 15, 2025 13:48
@Kicu Kicu force-pushed the kicu/57509-use-money-report branch from 508dc79 to eb19b89 Compare April 15, 2025 14:00
@Kicu Kicu marked this pull request as ready for review April 15, 2025 14:01
@Kicu Kicu requested a review from a team as a code owner April 15, 2025 14:01
@melvin-bot melvin-bot bot requested review from DylanDylann and removed request for a team April 15, 2025 14:01
Copy link

melvin-bot bot commented Apr 15, 2025

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

Copy link
Contributor

@JakubKorytko JakubKorytko left a comment

Choose a reason for hiding this comment

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

Left a few comments, other than that LGTM

const policy = policies?.[`${ONYXKEYS.COLLECTION.POLICY}${report?.policyID}`];
const isTopMostReportId = currentReportIDValue?.currentReportID === reportIDFromRoute;
const didSubscribeToReportLeavingEvents = useRef(false);
const backTo = route?.params?.backTo as string;

const {canUseTableReportView} = usePermissions();
const isSingleTransactionView = getIfReportIsSingleTransaction(report, reportTransactions, canUseTableReportView);
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
const isSingleTransactionView = getIfReportIsSingleTransaction(report, reportTransactions, canUseTableReportView);
const isSingleTransactionView = shouldRenderAsSingleTransactionView(report, reportTransactions, canUseTableReportView);

Copy link
Member Author

Choose a reason for hiding this comment

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

should I change the name of the const as well? because the name of the function was done like this to aligned with the const name.
so something like:

const shouldRenderAsSingleTransactionView = getShouldRenderAsSingleTransactionView(report, reportTransactions, canUseTableReportView);

?

@Kicu Kicu force-pushed the kicu/57509-use-money-report branch from 5dc3d86 to ffd6ee3 Compare April 16, 2025 06:31
@Kicu
Copy link
Member Author

Kicu commented Apr 16, 2025

@DylanDylann please take a look.

Note: There are several lint errors for newly added useOnyx rules that I would rather not touch in this PR, as it changes important logic around Reports. I think we useOnyx can wait a bit.

@@ -318,7 +318,7 @@ function ReportScreen({route, navigation}: ReportScreenProps) {
const backTo = route?.params?.backTo as string;

const {canUseTableReportView} = usePermissions();
const isSingleTransactionView = getIfReportIsSingleTransaction(report, reportTransactions, canUseTableReportView);
const isReportSingleTransaction = getIfReportIsSingleTransaction(report, reportTransactions, canUseTableReportView);
Copy link
Member Author

Choose a reason for hiding this comment

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

getIsReportSingleTransaction

Copy link
Member Author

Choose a reason for hiding this comment

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

(Note for myself remember to clean up styles with border radius)

Copy link
Contributor

🚧 @mountiny has triggered a test app build. You can view the workflow run here.

@Kicu Kicu force-pushed the kicu/57509-use-money-report branch from ffd6ee3 to 4137ffb Compare April 16, 2025 14:59
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.

Ok the build seems to work fine so lets try this one out!

@mountiny mountiny merged commit f48ee32 into Expensify:main Apr 23, 2025
17 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 Apr 23, 2025
Copy link
Contributor

Performance Comparison Report 📊 (1/10)

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

Significant Changes To Duration

Name Duration
App start time TTI 1591.631 ms → 1723.127 ms (+131.496 ms, +8.3%) 🔴
Show details
Name Duration
App start time TTI Baseline
Mean: 1591.631 ms
Stdev: 242.295 ms (15.2%)
Runs: 1179.0730259995908 1299.5441270004958 1299.9418659992516 1305.9097000006586 1311.116087000817 1322.5036219991744 1334.2728140000254 1337.098992999643 1352.2607560008764 1359.0620549991727 1361.6395469997078 1361.6644839998335 1363.3865949995816 1366.509564999491 1369.5254280008376 1370.5046309996396 1375.384755000472 1391.7504450008273 1395.3392840009183 1398.719800999388 1406.6603490002453 1411.6349270008504 1411.685474999249 1412.9298449996859 1414.8476349990815 1425.455504000187 1427.705874999985 1434.3406659998 1434.4913379997015 1449.3190180007368 1454.7945050001144 1473.2915209997445 1519.5304869990796 1722.3830060008913 1745.2662000004202 1752.7548900004476 1764.3034179992974 1768.1651440002024 1796.8018559999764 1809.507364999503 1810.9032630007714 1830.2737780008465 1834.9309049993753 1835.9665079992265 1845.5535289999098 1858.1860230006278 1862.5204150006175 1865.303764000535 1866.7333109993488 1867.666530000046 1883.4489549994469 1889.4603029992431 1893.4309889990836 1899.4808200001717 1909.0357390008867 1915.8479350004345 1917.3665830008686 1934.9494230002165 1937.9294060003012 1947.7899430003017

Current
Mean: 1723.127 ms
Stdev: 235.253 ms (13.7%)
Runs: 1320.018056999892 1389.1618579998612 1398.9588680006564 1402.0942219998688 1406.961589999497 1426.1162509992719 1428.9532789997756 1437.4019140005112 1447.3756869994104 1449.399628000334 1449.41010200046 1453.076248999685 1453.1152160000056 1453.2301989998668 1454.9241700004786 1462.9951549991965 1465.572921000421 1470.0312890000641 1477.5081650000066 1487.5626350007951 1489.6955050006509 1495.929728999734 1501.784112000838 1548.183015000075 1569.278085000813 1691.4372850004584 1784.8117629997432 1801.1695549990982 1856.1677739992738 1866.0463260002434 1871.694281000644 1874.7510150000453 1879.883539000526 1883.2106480002403 1888.3071400001645 1888.6262519992888 1900.5500780008733 1902.5966860000044 1905.741214999929 1915.0938649997115 1917.7708579991013 1918.850197000429 1919.944192999974 1925.1552150007337 1929.0769129991531 1934.3485630005598 1945.8694800008088 1947.8217750005424 1953.3785030003637 1956.1124269999564 1957.318057000637 1960.672988999635 1961.428455999121 1965.7375920005143 1967.804938999936 1973.6708920001984 1981.2028829995543 1990.6841410007328 2011.1157070007175 2020.8519899994135

Copy link
Contributor

Performance Comparison Report 📊 (10/10)

Meaningless Changes To Duration (9/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
Money request - Open Manual Tracking Baseline
Mean: 148.312 ms
Stdev: 12.213 ms (8.2%)
Runs: 123.77701799944043 125.54093400016427 126.96419299952686 128.9301350004971 131.64343200065196 132.72855599969625 135.86987300030887 135.89563000015914 135.9552820008248 136.53454600088298 137.43131499923766 137.9108069986105 138.47424300014973 138.69897500053048 138.96541400067508 139.05505299940705 139.1623129993677 140.4749349988997 141.05537899956107 141.42875099927187 143.8591309990734 144.78857399895787 144.87276200018823 147.14339200034738 147.37776700034738 147.50032499991357 147.60526599921286 147.79890999943018 147.8357340004295 147.83902999944985 148.32934599928558 148.7633459996432 148.77303100004792 148.8077800013125 148.9918210003525 149.11023000068963 149.54207300022244 149.5926510002464 150.27652999944985 151.68379699997604 152.42972799949348 156.42854800075293 156.9307049997151 156.94665499962866 158.37198900058866 159.23738599941134 159.65730800107121 160.86824500001967 160.953288000077 161.39156099967659 163.01123000122607 163.10066800005734 163.9440509993583 167.44059200026095 172.13077799975872 173.81783100031316 173.8452960010618 174.61686199903488

Current
Mean: 146.193 ms
Stdev: 12.654 ms (8.7%)
Runs: 123.66129599884152 124.68839499913156 125.21960400044918 125.3980710003525 127.52616300061345 128.96020600013435 129.5246179997921 130.8491209987551 131.3430989999324 132.68306499905884 133.17045100033283 133.3035070002079 135.1982020009309 135.79036500118673 136.34529599919915 136.60034199990332 137.46264600008726 137.96988900005817 141.34244799986482 141.7491859998554 141.86767599917948 141.9829919990152 142.27299000136554 142.44571899995208 143.0521639995277 144.07800299860537 144.2518310006708 144.41117399930954 144.4245200008154 145.7318110000342 146.59423900023103 147.2408039998263 147.49605299904943 147.51977499946952 148.65893500111997 148.80745499953628 148.91084799915552 149.547607999295 149.82564300112426 150.61653700098395 151.13252800144255 151.97176099941134 151.98270699940622 153.74393699876964 154.0829270016402 154.6527920011431 155.27807600051165 158.87312800064683 159.79219599999487 161.8904219996184 163.82324199937284 163.91202799975872 165.0345060005784 165.3697920013219 166.1872559990734 167.95117199979722 168.4927570000291 170.02620399929583 172.63911999948323
Money request - Open Contacts Baseline
Mean: 231.530 ms
Stdev: 19.619 ms (8.5%)
Runs: 189.1420900002122 201.75549300014973 202.04101600125432 207.08781000040472 210.27657099999487 211.218302000314 212.96024600043893 214.59216300025582 214.82446300052106 216.19242300093174 217.43827299959958 218.58142100088298 219.8888759985566 220.15934200026095 220.34871499985456 220.86507200077176 221.35648600012064 221.80611100047827 221.96805799938738 222.12829600088298 223.4759110007435 223.91772499866784 224.25675499998033 225.10107400082052 225.3387460000813 226.07653800025582 226.1647139992565 227.3046059999615 228.08687299862504 228.43062300048769 229.50793500058353 229.74503600038588 230.14103200100362 230.80338599905372 232.0965580008924 233.00858600065112 233.88411400094628 233.9882000014186 234.65873200073838 237.53112800046802 241.82942800037563 244.8837899994105 248.92073599994183 252.99556499905884 253.2432049997151 256.7872319985181 257.75765000097454 259.29333500005305 262.11519400030375 262.90588299930096 264.7886560000479 268.43261699937284 270.297485999763 290.24499499984086

Current
Mean: 227.896 ms
Stdev: 15.355 ms (6.7%)
Runs: 203.90718600153923 204.9311520010233 205.10546800121665 205.18843600153923 206.5013839993626 206.92309600114822 207.29838100075722 209.75687699951231 212.62772599980235 213.45015500113368 213.60550999827683 214.27176899835467 215.4926350004971 216.93017599917948 217.11177599988878 217.9016930013895 217.91894500143826 218.3225510008633 218.41402200050652 219.03470900096 220.0413010008633 220.7146810013801 221.45869999937713 221.8229580000043 221.83780900016427 223.39025900140405 224.17317700013518 224.81481999903917 224.93021599948406 227.77811699919403 227.93945299834013 229.3856210000813 229.85042300075293 231.3553069997579 231.89974000118673 231.96073500066996 232.31998700089753 232.35933399945498 232.81697599962354 233.328857999295 233.39648400060833 233.49686700105667 233.91341200098395 234.0501299984753 235.74666300043464 236.5636800006032 240.96346099860966 242.44331900030375 243.2893470004201 248.45463100075722 248.98461899906397 250.3432209994644 251.35241700150073 254.6482340004295 255.2108559999615 261.6854659989476 261.95699100010097 262.58081099949777
Money request - Open Create Baseline
Mean: 146.772 ms
Stdev: 12.935 ms (8.8%)
Runs: 120.55627499893308 122.87125599943101 123.36767600104213 125.2510989997536 128.0235190000385 128.1630859989673 131.38183600082994 131.83687400072813 132.01273600012064 132.47570800036192 132.8794349990785 133.80619299970567 134.4928380008787 135.31591800041497 135.6044520009309 136.16898600012064 137.73742599971592 137.81522599980235 138.94425499998033 139.7427570000291 140.0170490015298 142.47428400069475 143.1198320016265 144.6282560005784 144.92423499934375 145.52600099891424 146.7597250007093 147.4070640001446 148.99487299844623 149.0095620006323 149.04353899881244 149.04463700018823 149.26367199979722 149.3478189986199 149.578694999218 149.78275599889457 150.1019289996475 150.26733399927616 150.734822999686 150.91512000001967 152.18021599948406 152.3665369991213 153.64139799959958 153.99580899998546 154.98722399957478 155.97701100073755 156.72094699926674 158.23494500108063 158.33911100029945 159.97204599902034 160.000447999686 160.50996899977326 161.61006700061262 162.6052239984274 162.70495599880815 165.23449700139463 168.24886099994183 171.82535799965262 172.2748620007187 175.48152700066566

Current
Mean: 145.607 ms
Stdev: 13.370 ms (9.2%)
Runs: 112.84362800046802 114.76375300064683 125.26184000074863 126.7977700009942 127.44543399848044 129.78633699938655 130.01359099894762 130.89811200089753 131.35579499974847 131.48482199944556 132.6801350004971 133.93465199880302 135.2102869991213 138.28067999891937 138.3058679997921 138.4014490004629 138.79581699892879 138.80806499905884 139.02612300030887 139.15869100019336 139.55155500024557 139.87524399906397 139.89168299920857 140.59724899940193 140.63509099930525 140.73388599976897 141.52954100072384 142.69840499944985 142.97070300020278 144.7829999998212 145.10396399907768 145.8130290005356 146.3439530003816 146.72993999905884 146.7416179999709 146.87451100163162 148.03637700155377 148.41174300014973 151.38110399991274 151.527505999431 152.15401299856603 155.5696619991213 155.7820640001446 156.5488690007478 157.10205100104213 157.7814940009266 158.0804040003568 158.61096199974418 160.1038419995457 160.47924799844623 162.8893639985472 163.32552099972963 163.531534999609 164.50248199887574 165.3661700002849 167.11336299963295 167.22343000024557 168.5535889994353 172.60766600072384
Money request (CPU) Baseline
Mean: 176.920 %
Stdev: 4.097 % (2.3%)
Runs: 169.0601364085106 169.74740499137997 169.8747826058358 170.5705419527931 170.65091980146303 171.27312948058795 172.55863294236138 172.57423923009856 172.59795312924885 172.70025250565456 172.72713649006872 172.8544419397347 172.8640716418943 173.01758936579182 173.3109733040496 173.68615901437582 174.02041852523314 174.49711216243557 174.52498085170504 174.56627210765845 174.68445333401166 174.87823564181596 175.1495947189924 175.80644852319662 176.5717166883714 176.7996289005074 177.0604266193102 177.06295185854236 177.42043285741798 177.57072386610218 177.7244943201014 177.7751847450835 178.29913263131584 178.31054082922324 178.58231963488296 178.69002540667722 178.69150093993707 178.78417103431738 179.1192806778775 179.24216142929043 179.41676572696906 179.58672113187745 179.6162759735843 179.6641544854308 179.6642003921757 179.69079467631943 179.76593965053516 179.7936648892609 180.3018563270845 181.0192775765912 181.04052050144335 181.47227890831562 181.62872618572607 181.79349611979214 182.32631838371654 184.430015778254 186.25366623000448 188.01927259976642

Current
Mean: 176.947 %
Stdev: 4.558 % (2.6%)
Runs: 168.61349972998576 168.89182006663327 169.37521888262214 170.1234995689071 170.33123335697766 170.88217054771886 171.03259896713377 171.31032606501986 171.51213196653484 171.7249889124148 171.84996394673385 172.09409480576207 172.25284939454164 173.10300988281736 173.22750568785176 173.2946352847701 173.8294220799392 174.09009723024457 174.67129509077398 175.21786520342388 175.65933404199515 175.73498763852066 175.7541651005893 176.01714244396393 176.1349799106416 176.4914251480027 176.78254913760907 176.85202866273718 176.95073523985806 176.98965829082093 177.00719148126504 177.14983447326088 177.26915081143176 177.2832479770574 177.36898254776975 177.43787276374903 177.50440231643242 177.66521215538626 177.77119602191152 178.38781156757173 178.77368910753358 178.98060084658246 179.42291349214585 179.97584580895972 180.01492994644644 180.27622382111775 180.5414687092571 180.96419326600338 181.2694524114758 181.39619798498595 182.10646039494182 182.11457427823362 182.53191961426714 182.64291533703525 182.72414545975982 183.78654195202256 184.32030020759444 184.48653768497303 184.68961678765888 190.1640246484319
Money request (FPS) Baseline
Mean: 59.142 FPS
Stdev: 0.729 FPS (1.2%)
Runs: 57.71108900933486 57.77716606483619 57.82077006394593 57.84967052739137 57.885183227940345 57.944974933299974 57.96293506843223 58.01790476666448 58.057919029280605 58.349490619870295 58.45028609241674 58.495380399785894 58.59777407063243 58.60787828889041 58.7271421970576 58.742702179980746 58.77986593640001 58.799861674830325 58.805492608672026 58.80937554826684 58.82205229717174 58.84659338670812 58.87997045376709 58.883538974138105 58.90718065388624 58.911352444215346 58.91885312973539 58.96026266545764 58.99781858833328 59.060281199085544 59.31178117853422 59.425026442504354 59.42948184282271 59.44567886562292 59.52998562626257 59.53600853345284 59.53909024634506 59.62102391566289 59.65408697024526 59.71891787189127 59.73813910394765 59.78154893957437 59.78909193278114 59.79498384069458 59.81075729269485 59.8538821286153 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 59.101 FPS
Stdev: 0.814 FPS (1.4%)
Runs: 56.877159579429296 57.420882214915075 57.64868272013942 57.733861138970376 57.8599313174049 57.90166813202466 57.96358427436112 58.001004423711876 58.05425116832144 58.12800220997502 58.143746099890514 58.193627169284866 58.209988511099375 58.27663623686213 58.384201994129285 58.589481855822726 58.60120394068172 58.67232372183881 58.69176236349583 58.74747279095959 58.83947436299965 58.881689013351846 59.011546270435886 59.02424817886546 59.04706372130221 59.14382145580624 59.14457050454065 59.16886477304154 59.1921300316444 59.26144614652076 59.279032664055464 59.31442706086703 59.35772707350596 59.41845296387701 59.42857212579444 59.45037878477448 59.45236443274945 59.5978527127241 59.61777959176112 59.638738737718846 59.6531092283438 59.67842399207633 59.747523491685165 59.868503615675834 59.909672842336754 59.91661428915923 59.940357763801394 60 60 60 60 60 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 445.957 MB
Stdev: 8.988 MB (2.0%)
Runs: 426.0087890625 426.7021484375 428.83056640625 429.65478515625 434.15625 434.86104910714283 435.08837890625 435.5630580357143 436.5380859375 436.73193359375 437.17236328125 437.3431919642857 437.92041015625 438.5474330357143 439.22544642857144 439.6400669642857 441.38623046875 441.5234375 441.64564732142856 442.0986328125 443.38392857142856 443.634765625 444.23876953125 444.46372767857144 445.0502232142857 445.1674107142857 445.92689732142856 446.2216796875 446.421875 446.48660714285717 446.5357142857143 447.0390625 447.34151785714283 447.50669642857144 447.94970703125 448.3251953125 448.46630859375 449.1953125 449.22879464285717 449.3359375 449.50223214285717 450.47314453125 450.55029296875 450.85693359375 451.14697265625 451.56103515625 451.82421875 452.43582589285717 453.42236328125 455.189453125 455.9244791666667 456.53955078125 457.0390625 459.6015625 460.39341517857144 460.86572265625 461.6372767857143 464.6763392857143 465.240234375

Current
Mean: 446.060 MB
Stdev: 8.684 MB (1.9%)
Runs: 427.50830078125 429.89501953125 432.44189453125 434.1318359375 434.4345703125 435.08642578125 435.18603515625 436.193359375 436.20654296875 436.32666015625 436.83251953125 437.8353794642857 438.017578125 439.62220982142856 439.80322265625 440.2587890625 440.98095703125 441.3701171875 441.4760044642857 441.92919921875 442.09988839285717 442.58370535714283 443.4849330357143 443.8828125 443.9408482142857 444.82177734375 444.99755859375 445.0380859375 445.4095982142857 445.5658482142857 446.181640625 446.89013671875 447.09988839285717 447.2634548611111 447.68115234375 447.70947265625 448.00948660714283 449.15576171875 449.2900390625 449.58426339285717 449.84130859375 450.03759765625 450.1201171875 450.73828125 451.47021484375 451.57421875 452.50390625 453.0122767857143 454.32177734375 454.3544921875 454.81298828125 455.94384765625 456.51318359375 458.78076171875 461.1478794642857 461.25048828125 462.5286458333333 464.822265625 467.5279017857143
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.854 %
Stdev: 1.813 % (4.2%)
Runs: 39.7 40 40.1 40.2 40.5 40.7 40.7 41 41 41.1 41.2 41.2 41.4 41.6 41.7 41.7 41.8 41.8 41.8 41.8 41.8 41.9 41.9 42 42 42 42 42.1 42.1 42.3 42.5 42.5 42.7 42.9 42.9 43 43.2 43.3 43.3 43.9 43.9 43.9 44 44.4 44.4 44.6 44.6 44.7 44.8 44.9 45.1 45.2 45.5 45.6 45.9 45.9 46.2 46.6 46.9

Current
Mean: 42.373 %
Stdev: 1.482 % (3.5%)
Runs: 39.2 39.9 39.9 40 40.1 40.2 40.5 40.6 40.8 40.9 41.1 41.2 41.3 41.3 41.5 41.6 41.6 41.6 41.7 41.8 41.9 41.9 41.9 42 42 42 42.1 42.1 42.1 42.2 42.4 42.4 42.4 42.5 42.5 42.6 42.7 42.8 42.8 42.9 42.9 43 43 43.1 43.1 43.2 43.4 43.5 43.9 43.9 44.1 44.2 44.4 44.5 45 45.2 45.5 45.5 45.6

Copy link
Contributor

Performance Comparison Report 📊 (2/10)

Meaningless Changes To Duration (1/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 33.441 ms
Stdev: 3.971 ms (11.9%)
Runs: 28 29 29 29 29 29 29 30 30 30 30 30 30 30 30 30 30 30 31 31 31 31 31 32 32 32 32 32 32 32 32 32 33 33 33 33 34 34 34 35 35 35 35 35 35 36 37 37 39 39 39 39 39 40 40 41 42 42 44

Current
Mean: 26.000 ms
Stdev: 3.264 ms (12.6%)
Runs: 21 22 22 22 22 22 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 25 25 26 26 26 26 26 26 27 27 27 27 28 28 29 29 29 29 30 30 30 31 31 31 31 33 33 36
App start time appCreation Baseline
Mean: 70.367 ms
Stdev: 9.524 ms (13.5%)
Runs: 56 56 58 58 59 60 60 61 61 61 62 62 62 62 62 62 63 64 64 65 65 65 65 65 66 66 67 67 67 67 68 68 69 71 71 72 72 72 74 74 74 74 74 74 75 77 77 79 81 81 82 83 83 85 86 86 88 88 90 96

Current
Mean: 80.800 ms
Stdev: 10.292 ms (12.7%)
Runs: 57 62 62 63 66 67 67 69 70 71 72 72 73 74 74 75 75 75 76 77 78 78 78 78 78 78 78 79 80 80 81 81 81 81 81 82 82 83 84 84 84 85 85 85 88 88 89 89 90 91 93 93 93 97 97 99 99 99 99 103
App start time runJsBundle Baseline
Mean: 305.200 ms
Stdev: 20.292 ms (6.6%)
Runs: 256 256 257 257 263 263 278 278 281 281 281 281 283 283 283 283 284 284 284 284 284 284 287 287 291 291 291 291 292 292 293 293 293 293 294 294 295 295 297 297 297 297 299 299 299 299 299 299 300 300 300 300 300 300 301 301 302 302 302 302 303 303 303 303 304 304 306 306 310 310 311 311 311 311 311 311 315 315 315 315 316 316 316 316 317 317 317 317 320 320 325 325 326 326 326 326 327 327 327 327 327 327 327 327 327 327 327 327 330 330 331 331 338 338 342 342 344 344 347 347

Current
Mean: 338.333 ms
Stdev: 19.861 ms (5.9%)
Runs: 291 291 302 302 306 306 306 306 311 311 313 313 317 317 317 317 319 319 321 321 322 322 323 323 323 323 324 324 325 325 325 325 326 326 326 326 327 327 328 328 329 329 329 329 330 330 330 330 331 331 331 331 332 332 333 333 334 334 336 336 338 338 340 340 341 341 342 342 342 342 344 344 344 344 344 344 344 344 345 345 345 345 346 346 349 349 353 353 353 353 353 353 354 354 355 355 355 355 356 356 356 356 359 359 360 360 362 362 365 365 368 368 369 369 379 379 384 384 388 388
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 65.817 ms
Stdev: 10.209 ms (15.5%)
Runs: 46 47 50 50 51 52 54 54 54 54 56 56 56 57 58 59 60 60 60 60 61 62 62 63 63 64 64 64 64 64 66 66 66 66 66 67 67 68 69 70 71 72 72 73 74 74 74 74 76 76 77 78 79 79 80 81 81 86 87 89

Current
Mean: 85.086 ms
Stdev: 9.496 ms (11.2%)
Runs: 67 69 70 71 71 71 71 72 75 76 77 78 79 79 80 80 81 81 81 81 81 81 81 82 82 83 83 83 83 84 84 84 85 85 86 88 89 89 90 91 91 91 91 91 92 92 92 93 95 96 96 96 97 98 98 105 108 109

Copy link
Contributor

Performance Comparison Report 📊 (3/10)

Meaningless Changes To Duration (2/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 512.475 ms
Stdev: 40.124 ms (7.8%)
Runs: 447 454 456 457 459 460 465 466 466 468 470 471 471 472 483 486 488 491 494 495 496 496 496 496 497 498 498 502 502 506 510 515 516 519 520 520 523 523 526 527 528 530 531 534 539 544 545 551 554 560 560 564 564 565 568 570 602 602 620

Current
Mean: 561.017 ms
Stdev: 45.324 ms (8.1%)
Runs: 479 489 500 501 505 505 510 510 514 515 520 521 521 524 527 529 530 530 532 534 537 537 539 540 544 545 545 549 550 551 554 555 556 556 558 562 568 569 571 577 579 579 580 584 585 590 603 604 606 614 625 625 625 626 632 640 640 643 649 673
App start time contentAppeared_To_screenTTI Baseline
Mean: 907.098 ms
Stdev: 243.344 ms (26.8%)
Runs: 552.0730259995908 554.5441270004958 592.7058749999851 599.1160870008171 599.6644839998335 620.9418659992516 626.5036219991744 656.0620549991727 670.3406659998 681.2915209997445 685.6349270008504 688.2728140000254 688.9097000006586 699.509564999491 701.0989929996431 704.3392840009183 708.5254280008376 712.3865949995816 713.9298449996859 714.3847550004721 724.6395469997078 727.2607560008764 727.8476349990815 728.7945050001144 729.5046309996396 730.7198009993881 740.4913379997015 756.3190180007368 757.6603490002453 758.7504450008273 771.685474999249 779.4555040001869 811.5304869990796 974.3830060008913 1063.1651440002024 1096.4808200001717 1100.4603029992431 1103.9032630007714 1123.7548900004476 1132.2662000004202 1135.3034179992974 1139.5535289999098 1146.9665079992265 1170.2737780008465 1171.507364999503 1172.8018559999764 1173.9309049993753 1175.7333109993488 1185.0357390008867 1195.303764000535 1195.4489549994469 1197.1860230006278 1205.5204150006175 1216.8479350004345 1226.4309889990836 1233.9494230002165 1235.7899430003017 1245.9294060003012 1246.3665830008686 1246.666530000046

Current
Mean: 968.761 ms
Stdev: 230.780 ms (23.8%)
Runs: 586.0942219998688 592.018056999892 595.2301989998668 665.3996280003339 665.9588680006564 668.6955050006509 672.41010200046 673.1618579998612 685.1162509992719 692.9241700004786 703.9615899994969 704.9532789997756 727.4019140005112 728.5626350007951 730.1830150000751 731.1152160000056 733.3756869994104 738.7841120008379 740.076248999685 752.0312890000641 754.9297289997339 759.572921000421 762.9951549991965 774.5081650000066 796.278085000813 1022.4372850004584 1025.1677739992738 1058.3071400001645 1067.7510150000453 1076.8117629997432 1081.5500780008733 1090.850197000429 1104.0463260002434 1105.8694800008088 1107.0938649997115 1113.2106480002403 1119.1552150007337 1131.1695549990982 1142.5966860000044 1144.741214999929 1151.3485630005598 1160.8217750005424 1165.0769129991531 1165.694281000644 1176.883539000526 1186.944192999974 1187.6262519992888 1187.7708579991013 1191.1157070007175 1204.804938999936 1208.3785030003637 1215.6708920001984 1219.318057000637 1219.7375920005143 1221.672988999635 1240.2028829995543 1240.428455999121 1243.8519899994135 1248.1124269999564 1263.6841410007328
App start time regularAppStart Baseline
Mean: 0.021 ms
Stdev: 0.002 ms (10.9%)
Runs: 0.01672299951314926 0.01765899918973446 0.018024999648332596 0.018311001360416412 0.018472999334335327 0.018757998943328857 0.01908300071954727 0.01936900056898594 0.019408999010920525 0.019409000873565674 0.01961199939250946 0.019937999546527863 0.02001899853348732 0.02001900039613247 0.020019998773932457 0.020100999623537064 0.02018200047314167 0.020262999460101128 0.020263999700546265 0.02034500055015087 0.020386001095175743 0.0204670000821352 0.0204670000821352 0.020547999069094658 0.020671000704169273 0.02075199969112873 0.020833000540733337 0.020955000072717667 0.021076999604701996 0.021077001467347145 0.021077999845147133 0.021198999136686325 0.021199000999331474 0.021240999922156334 0.021320998668670654 0.021362999454140663 0.021524999290704727 0.021891999989748 0.022095000371336937 0.02213600091636181 0.022175999358296394 0.022217001765966415 0.022257000207901 0.023273998871445656 0.0233559999614954 0.02347799949347973 0.02376299910247326 0.02380399964749813 0.023885000497102737 0.024739999324083328 0.025268999859690666 0.026570999994874 0.026774000376462936 0.027018001303076744 0.027465999126434326

Current
Mean: 0.023 ms
Stdev: 0.003 ms (14.2%)
Runs: 0.01648000068962574 0.017496000975370407 0.01798500120639801 0.01822900027036667 0.01822900027036667 0.01879899948835373 0.01892099902033806 0.019286999478936195 0.019449999555945396 0.01973400078713894 0.01977499946951866 0.019816000014543533 0.02006000094115734 0.0204670000821352 0.0204670000821352 0.020507000386714935 0.020507998764514923 0.020508000627160072 0.0206300001591444 0.020913999527692795 0.02127999998629093 0.0215659998357296 0.02160700038075447 0.02160700038075447 0.0217289999127388 0.0217289999127388 0.021810000762343407 0.021810000762343407 0.022053999826312065 0.022379999980330467 0.022461000829935074 0.022583000361919403 0.02266399934887886 0.022908998653292656 0.023517999798059464 0.0235190000385046 0.023763000965118408 0.02392599917948246 0.02404800057411194 0.024170000106096268 0.024495000019669533 0.02449600026011467 0.02449600026011467 0.02486100047826767 0.025350000709295273 0.025390999391674995 0.025675000622868538 0.026081999763846397 0.026569999754428864 0.026895999908447266 0.027058999985456467 0.027587998658418655 0.02848299965262413 0.029133999720215797 0.032958999276161194
App start time (CPU) Baseline
Mean: 151.212 %
Stdev: 6.683 % (4.4%)
Runs: 134.56418996837505 135.66574883661016 135.81707783515012 138.50473223675075 139.33917145945267 141.66445134605178 141.691926341488 144.39400461785314 145.12484598295194 145.1659116128441 145.21590636048464 145.36324569769386 146.19173159919535 146.81221178552914 146.94051670863414 147.80020241709832 147.96714311163973 148.37377277795957 148.42014579191516 148.97985770330916 149.03526280771794 150.58320207468213 150.8295426428722 151.12259449608845 151.13852618288732 151.1708460720272 151.1843094154821 151.22975847047948 151.4115804027691 151.88526836496425 151.9765288799657 152.39698953293487 152.61374739927598 152.61960775934617 152.77690537681895 152.89294969732094 152.89564013126832 153.93674977461257 154.4176807794505 154.734084799609 154.78321051195076 154.87363016997688 155.4707330395717 155.49615066360747 156.24279459642491 156.68895957722415 157.2841279002933 157.6088410888135 157.62404079123172 157.74420175062488 157.78746442940297 158.22435535479016 159.5208679990956 160.21785371973712 160.24757983429325 160.34614671793656 161.6337735192211 161.84516022772218 163.03848084261833

Current
Mean: 155.027 %
Stdev: 4.610 % (3.0%)
Runs: 146.40391894900918 146.4563117379505 146.73824605883573 147.88652260671205 148.37973025714362 148.74766822542097 149.63391434368566 149.67900492136772 150.11033699294305 150.16842006279052 150.27051373702565 151.1724761650538 151.75586864137472 152.09358191028247 152.1890030814476 152.7359743429052 152.83179400225552 153.20170891816772 153.40839061953545 153.63432696404192 153.65468842359684 153.6854152984098 153.9421796448067 153.98825481851964 154.07468261149833 154.29743817234106 154.49667994687908 154.6267097376718 154.7140944731307 155.02585516318152 155.28543860207193 155.5949859362895 155.6573705179283 155.66844512383275 155.84585473133143 155.92129110470137 155.99863161914453 156.41247916170516 157.12220635018804 157.27072059246757 157.6164945499002 157.92985131528775 158.9200647905101 159.05532749801134 159.07775339037866 159.71459978593538 161.56435643564353 161.78803203347343 162.05704666963936 162.2934923737021 162.37848060792018 162.68300279248876 162.81181295074632 163.54696955295756 164.2595275300854

Copy link
Contributor

Performance Comparison Report 📊 (4/10)

Meaningless Changes To Duration (3/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
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
App start time (RAM) Baseline
Mean: 366.613 MB
Stdev: 5.956 MB (1.6%)
Runs: 354.21484375 354.8046875 355.541015625 355.642578125 356.0143229166667 356.07421875 357.494140625 357.6315104166667 357.8229166666667 358.1497395833333 359.3515625 359.455078125 360.8567708333333 360.8997395833333 362.1458333333333 362.4375 362.712890625 363.8177083333333 364.50390625 365.1549479166667 365.2916666666667 365.6484375 366.2356770833333 367.32421875 367.5755208333333 367.8893229166667 368.0846354166667 368.2473958333333 368.2799479166667 368.3372395833333 368.4609375 368.484375 368.9700520833333 368.9973958333333 369.0221354166667 369.0533854166667 369.5026041666667 369.7252604166667 369.80078125 370.2122395833333 370.3697916666667 370.48046875 370.53125 370.76953125 370.9869791666667 371.15234375 371.2109375 371.2578125 371.734375 372.0182291666667 372.0546875 372.0716145833333 372.17578125 372.5247395833333 372.7877604166667 373.1145833333333 373.125 373.5638020833333 377.37109375 377.5807291666667

Current
Mean: 361.799 MB
Stdev: 6.723 MB (1.9%)
Runs: 347.6901041666667 351.0403645833333 353.1927083333333 353.93359375 354.1809895833333 354.5911458333333 354.8216145833333 355.08984375 355.1106770833333 355.28515625 356.57421875 356.8216145833333 356.8606770833333 356.8958333333333 356.9947916666667 357.05078125 357.06640625 357.1848958333333 357.4140625 357.5104166666667 357.6419270833333 357.7083333333333 357.96875 358.8671875 358.98046875 359.1223958333333 359.9856770833333 360.1106770833333 360.15234375 360.7994791666667 361.0729166666667 361.2408854166667 361.31640625 362.1614583333333 362.18359375 362.1940104166667 362.1979166666667 362.5364583333333 363.4752604166667 363.828125 365.0221354166667 365.1458333333333 365.921875 366.1158854166667 366.654296875 366.9153645833333 368.19921875 369 369.1783854166667 370.8134765625 371.72265625 372.3802083333333 372.8489583333333 374.0403645833333 374.2278645833333 374.4635416666667 376.3776041666667 376.4830729166667
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
App start time (CPU/UI) Baseline
Mean: 28.845 %
Stdev: 2.165 % (7.5%)
Runs: 23 25 25.3 25.3 25.3 25.4 25.7 26.4 26.5 26.5 26.6 26.7 27.2 27.2 27.3 27.9 28 28 28 28.1 28.1 28.3 28.3 28.4 28.6 28.6 28.7 28.7 29.1 29.2 29.2 29.3 29.3 29.3 29.4 29.6 29.8 29.8 29.9 30 30 30 30 30.4 30.4 30.6 30.6 30.7 31.1 31.3 31.4 31.6 31.8 31.9 32 32.1 32.7 33.4

Current
Mean: 29.649 %
Stdev: 2.165 % (7.3%)
Runs: 25.9 26 26.1 26.4 26.6 26.7 27.1 27.1 27.4 27.7 27.8 27.9 27.9 28 28 28 28.1 28.5 28.6 28.6 28.7 28.7 28.7 28.9 29.1 29.3 29.3 29.3 29.3 29.3 29.3 30 30 30 30.5 30.5 30.5 30.6 30.6 30.6 30.6 31 31.1 31.3 31.4 31.5 31.7 31.8 31.9 31.9 32 32.4 32.9 33.3 33.9 34 35.7

Copy link
Contributor

Performance Comparison Report 📊 (5/10)

Meaningless Changes To Duration (4/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
Open search router TTI Load Search Options Baseline
Mean: 142.977 ms
Stdev: 4.956 ms (3.5%)
Runs: 134.83544899895787 135.23750800080597 136.93676800094545 136.9378669988364 137.54935800097883 137.67451999895275 137.77119900099933 137.88061599992216 138.02473900094628 138.51196300052106 138.6458329986781 138.94234200008214 139.03955100104213 139.0685629993677 139.09501099959016 139.10506100021303 139.2191160004586 139.4451499991119 139.62593600153923 139.7565509993583 140.03535900078714 140.16060400009155 140.31136099994183 140.51057999953628 140.82466600090265 140.88590499944985 141.1217439994216 141.14054400101304 141.19120300002396 141.4733879994601 142.20109100081027 142.20764099992812 142.3828940000385 142.42036899924278 142.50935899838805 142.60542800091207 143.42337999865413 143.60648600012064 143.874836999923 143.9643560014665 144.03365099988878 144.08203199878335 144.9052729997784 145.47518000006676 145.6375319994986 146.5011800006032 147.4904379993677 147.80415900051594 147.83264099992812 147.87386099994183 148.35139899887145 149.19885200075805 150.2906909994781 150.30236800014973 151.40860999934375 152.46077500097454 153.22200500033796 153.22810800001025 153.7759610004723 154.56127999909222

Current
Mean: 140.780 ms
Stdev: 4.738 ms (3.4%)
Runs: 132.11059499904513 133.7104899995029 134.08121700026095 134.1741540003568 134.23925799876451 134.40555800125003 134.4302570000291 134.51810799911618 134.87723799981177 135.01912500150502 135.48164900019765 135.63586399890482 135.8369549997151 136.2873129993677 136.95503699965775 137.00419100001454 137.9277749992907 138.05781999975443 138.18969699926674 138.25093599967659 138.47814900055528 138.5170900002122 138.64424699917436 138.95507800020278 139.49682600051165 139.53474899940193 139.5895989984274 139.70975800044835 139.92753100022674 140.15970900096 140.8082280009985 141.1020100004971 141.45227099955082 141.6310629993677 142.4061680007726 142.4947920013219 143.2218430005014 143.31192999891937 143.5541179999709 143.9154059998691 144.081299001351 144.32157399877906 144.33129899948835 144.3735349997878 144.5203449986875 144.7394620012492 144.89656599983573 144.9938150011003 145.04610200040042 145.33235700055957 145.34537799842656 145.5879319999367 146.12357600033283 146.3181149996817 146.67138700000942 148.37784799933434 149.6730550006032 151.5317790005356 151.66491799987853
Open search router TTI Open Search Router TTI Baseline
Mean: 1218.994 ms
Stdev: 83.244 ms (6.8%)
Runs: 1022.5876880008727 1023.0640869997442 1023.1519370004535 1023.1750499997288 1023.5996909998357 1026.29349800013 1026.430826999247 1028.6458340007812 1028.663819000125 1029.1422939989716 1029.386963000521 1031.2847499996424 1031.9376229997724 1032.3023279998451 1036.0248210001737 1037.5770270004869 1038.2821050006896 1038.882690999657 1040.8619799986482 1047.042643001303 1048.3812260013074 1053.0022790003568 1053.1871349997818 1053.8312180005014 1059.0137939993292 1063.676473999396 1063.8504240009934 1065.165853999555 1068.281291000545 1069.191529000178 1071.7312019988894 1075.8193779997528 1090.8351639993489 1108.3296309988946 1115.093954000622 1117.1971439998597 1120.656413000077 1121.650513999164 1122.3995770011097 1137.3413500003517 1139.8060299996287 1143.7406009994447 1144.1710619982332 1144.574789000675 1144.574789000675 1149.8837490007281 1150.0570890009403 1150.7712010014802 1150.8580329995602 1156.6523029990494 1157.6064450014383 1159.6952720005065 1161.1476649995893 1161.1476649995893 1161.2399500012398 1161.7530109994113 1162.1522630006075 1163.7803150005639 1164.12569199875 1165.2246500011533 1165.5769049990922 1165.5769049990922 1165.8168549984694 1166.5546069983393 1166.7525229994208 1167.1103109996766 1169.632079999894 1170.164103999734 1170.2911789994687 1171.0622570011765 1171.769612999633 1171.9477549996227 1172.7306729983538 1173.225992999971 1173.3675539996475 1173.4967459999025 1173.6420090012252 1173.777792001143 1174.215210000053 1174.3575039990246 1174.793578999117 1174.979574000463 1175.1939289998263 1175.5829670000821 1175.5829670000821 1176.0623380001634 1179.1077079996467 1179.2915860004723 1179.5579429995269 1180.1118989996612 1180.5266939997673 1181.2218839991838 1181.5810150001198 1181.8763839993626 1182.059488998726 1182.0804439987987 1182.4710690006614 1183.2067879997194 1184.0644129998982 1184.4099129997194 1184.5672610010952 1184.6265060007572 1185.2499599996954 1185.3261719997972 1186.8895670007914 1187.3252770006657 1187.5031749997288 1187.87093100138 1189.1197509989142 1189.8511159997433 1189.9108889997005 1190.7473959997296 1191.011028001085 1191.4278570003808 1191.8287760000676 1191.8315440006554 1192.0118419993669 1192.3686520010233 1193.4264330007136 1195.0922860000283 1195.157878998667 1195.1972659993917 1196.10945700109 1196.8501389995217 1197.6044929996133 1197.9361169990152 1198.0694180000573 1198.0694180000573 1198.2722169999033 1198.4958500005305 1198.7805179990828 1199.1398939993232 1199.5303549990058 1199.9332689996809 1199.9563400000334 1200.2399090006948 1201.8727630004287 1202.3203130010515 1202.3203130010515 1202.88598700054 1204.523398000747 1204.628785001114 1204.9819740001112 1205.6202799994498 1205.6291100010276 1205.7014569994062 1205.722574999556 1206.3908289987594 1206.609538000077 1206.68819199875 1206.6993409991264 1206.8500980008394 1207.1435959991068 1208.2606210000813 1209.1048590000719 1211.609538000077 1212.2687999997288 1212.4713550005108 1213.223511999473 1213.9131279997528 1214.2841389998794 1214.2841389998794 1214.9790850002319 1215.1414390001446 1215.159831000492 1215.3059090003371 1215.3193769995123 1215.6151529997587 1216.5656339991838 1216.9560559988022 1216.9560559988022 1217.012532999739 1217.0188400000334 1218.6718349996954 1218.7711999993771 1218.8411870002747 1219.2235920000821 1219.3802090007812 1219.8607590012252 1221.527546999976 1222.804850999266 1223.128661999479 1223.2067469991744 1224.2766929995269 1225.028525000438 1225.0706380009651 1226.8332120012492 1227.5693369992077 1229.1722820010036 1229.3582769986242 1229.4267580006272 1229.4267580006272 1230.0563970003277 1230.1109219994396 1230.4121909998357 1232.1215829998255 1232.2023520004004 1232.2322189994156 1232.5599769987166 1232.8209240008146 1233.1076260004193 1234.0337330009788 1234.0337330009788 1235.0663259997964 1235.0719820000231 1235.5194920003414 1235.6056730002165 1235.7392580006272 1236.3351250011474 1236.8574640005827 1238.7024339996278 1238.975829999894 1239.5963139999658 1239.938315000385 1240.2798670008779 1240.2798670008779 1241.9974770005792 1242.0018319990486 1242.6610109992325 1242.8363449983299 1245.7833250015974 1245.7934990003705 1246.0546479988843 1247.4559739995748 1248.3799649998546 1248.7921959999949 1249.0878909993917 1249.088949000463 1249.2934169992805 1249.5217289999127 1251.2785249985754 1253.3010660000145 1253.8270680010319 1254.1016850005835 1255.735555998981 1256.2224129997194 1257.2643240001053 1257.9652919992805 1258.0468759983778 1261.7620860002935 1261.970134999603 1262.2022709995508 1262.5846770014614 1262.6832689996809 1262.6864839997143 1263.9206950012594 1264.5428470000625 1265.882569000125 1265.9110519997776 1266.1297609992325 1266.6348070017993 1267.2598880007863 1267.2863779999316 1268.2491859998554 1270.0716969985515 1270.4594330005348 1272.477579999715 1272.725912000984 1273.0456140004098 1273.8078209999949 1274.1122239995748 1274.399902999401 1275.0957450009882 1275.0957450009882 1276.4985769987106 1277.6124680005014 1281.031169001013 1281.285237999633 1282.0412600003183 1282.2058109994978 1282.3678389992565 1282.494792001322 1284.6766769997776 1285.3539639990777 1285.3539639990777 1285.563395999372 1285.563395999372 1287.226929999888 1287.603475999087 1289.3494069986045 1289.4793710000813 1289.7399500012398 1290.3357750009745 1290.9903969988227 1293.4514170009643 1293.4550780002028 1295.3562429994345 1295.8966469988227 1295.9064539987594 1296.1780600007623 1300.0173339992762 1300.1562099996954 1300.4879160001874 1300.9549570009112 1303.1203220002353 1303.9940600004047 1305.53133200109 1306.4796549994498 1306.9114999994636 1307.3472910001874 1307.7338060010225 1312.2197270002216 1312.7100029997528 1313.7555350009352 1314.5218099988997 1318.8878999985754 1319.165079999715 1319.5586759988219 1319.902629999444 1321.2126470003277 1322.3635260015726 1323.507406000048 1329.035726999864 1331.8893640004098 1332.9934090003371 1333.2845060005784 1333.2845060005784 1335.898641999811 1337.465129999444 1340.3530280012637 1340.4992680009454 1343.5536709986627 1343.5536709986627 1349.2337250001729 1351.1652840003371 1355.141683999449 1355.141683999449 1355.8796390015632 1355.8796390015632 1357.2495529986918 1367.003948001191 1373.7605389989913 1378.7286789994687 1378.7286789994687 1385.5083009991795 1386.098511999473 1398.1514899991453 1405.6889660004526 1407.4754639994353 1415.266194999218 1420.6671559996903 1420.7510579992086 1423.2982179988176

Current
Mean: 1214.678 ms
Stdev: 99.034 ms (8.2%)
Runs: 999.6855059992522 1000.8887940011919 1003.4717619996518 1007.1245939992368 1009.8057870008051 1010.6887619998306 1011.191366000101 1012.6711839996278 1012.7610269989818 1012.8455409985036 1013.2008469998837 1014.9890550002456 1015.8997399993241 1016.4486490003765 1017.6400559991598 1019.4643150009215 1019.934610998258 1021.0251470003277 1021.6960450001061 1022.2932139988989 1023.6936859991401 1025.0706380009651 1026.3352060001343 1030.8822029996663 1031.0015060007572 1032.085815999657 1032.8070080000907 1033.1716719996184 1040.1148690003902 1041.1130790002644 1044.2147220000625 1044.4614669997245 1047.1881920006126 1047.9153250008821 1053.3021250013262 1069.5105399992317 1070.2405600007623 1071.2763679996133 1071.3269049990922 1073.588949000463 1074.9610600005835 1078.9122730009258 1079.8064780011773 1080.5227469988167 1089.7762460000813 1094.856648998335 1097.649454999715 1111.0337739996612 1113.4776610005647 1115.3640140015632 1121.1666269991547 1124.6780600007623 1125.0496420003474 1134.034953000024 1134.6427820008248 1135.3886319994926 1135.6323240008205 1142.6385910008103 1142.6385910008103 1143.4405519999564 1144.4220789987594 1145.0506599992514 1146.4698489997536 1146.7264000009745 1153.6920980010182 1153.84106499888 1153.9503990001976 1154.1960050016642 1157.8115240000188 1159.2315680012107 1159.4145110007375 1159.6418869998306 1159.7341309990734 1160.3465580008924 1160.4993090014905 1161.9589039999992 1162.4678550008684 1165.5910650007427 1167.901897000149 1168.996094999835 1169.198080001399 1170.176351999864 1170.6935220006853 1171.6201179996133 1171.943481998518 1175.383829999715 1175.6269950009882 1175.8282479997724 1177.336222998798 1177.336222998798 1177.347372001037 1177.5801199991256 1178.0881350003183 1179.0655530001968 1180.0525720007718 1180.1535240001976 1180.254557998851 1180.496094999835 1180.5288500003517 1181.883829999715 1182.5404469985515 1183.1819659993052 1183.7489430010319 1184.2330729998648 1184.234903998673 1185.2204179987311 1185.3222660012543 1185.7495530005544 1185.7540289983153 1186.2383229993284 1186.3883880004287 1186.9762780014426 1189.8754489999264 1191.557414000854 1191.878824999556 1192.3649500012398 1192.616333000362 1192.8618169985712 1192.8618169985712 1193.1938480008394 1193.200685000047 1193.8363849986345 1195.3699549995363 1196.0825610011816 1196.1418459992856 1198.0506599992514 1198.6237390004098 1198.7679040003568 1198.7760830000043 1199.820597998798 1200.292278001085 1200.800456000492 1202.1007089987397 1202.1958420015872 1202.2567549999803 1203.679891999811 1204.1971029993147 1206.6715500000864 1206.9872650001198 1207.7048749998212 1207.7184250000864 1208.3345539998263 1208.4210209995508 1208.4766849987209 1208.484701000154 1210.2488210015 1210.7148850001395 1211.7259940002114 1212.3774830009788 1213.023437999189 1213.559733999893 1214.8341070003808 1214.9342049993575 1215.5277110002935 1216.667074000463 1217.438476998359 1217.813232999295 1218.234172001481 1220.375204000622 1221.0356040000916 1221.5207930002362 1222.3438319992274 1222.6109219994396 1222.7790939994156 1223.3525800015777 1223.5834149997681 1223.6348069999367 1224.566976999864 1224.8041190002114 1225.2691249996424 1226.0432550013065 1226.24267699942 1227.8280039988458 1229.5188400000334 1229.8437510002404 1231.1243089996278 1231.8711350001395 1232.3271080013365 1232.3766690008342 1232.3953449986875 1233.1837980002165 1234.3850509990007 1235.4843760002404 1237.6589369997382 1239.5315359998494 1239.5315359998494 1239.6708990000188 1239.8370770011097 1240.133992999792 1240.262004001066 1240.2983809988946 1240.7663580011576 1241.5216479990631 1241.7949630003422 1242.1666669994593 1244.511272000149 1245.250367000699 1245.250367000699 1247.6462409999222 1247.9082440007478 1248.2147220000625 1248.2604580000043 1248.2882489990443 1248.4878749996424 1248.83573500067 1248.9720060005784 1249.2500010002404 1251.059733999893 1251.059733999893 1251.9278970006853 1252.0932620000094 1253.9753829985857 1253.9753829985857 1256.0056149996817 1256.4554449990392 1256.4868580009788 1256.68420500122 1257.8339850008488 1257.8867189995944 1260.461100999266 1260.9326179996133 1260.9326179996133 1262.0557869989425 1264.2757159993052 1264.9550780002028 1265.2880460005254 1265.3496099989861 1265.5424409992993 1266.5290939994156 1267.352173000574 1267.5568439997733 1267.703003000468 1270.3018000014126 1272.6628019995987 1273.1206059996039 1273.4442560002208 1273.5644539985806 1273.7985849995166 1277.704142998904 1277.704142998904 1277.8440770003945 1278.4005950000137 1278.4005950000137 1281.0803229995072 1281.8884280007333 1282.7326259985566 1283.6312259994447 1285.12508200109 1287.4623220004141 1287.4709879998118 1289.6647549998015 1293.0934250000864 1294.1428629998118 1295.4666339997202 1297.6079919990152 1297.809529999271 1297.809529999271 1298.508464999497 1298.508464999497 1299.3367520011961 1302.395060999319 1303.9698079992086 1305.3893229998648 1305.6566579993814 1306.7134199999273 1307.429444000125 1308.8509529996663 1308.9581310003996 1310.4988209996372 1311.94848700054 1313.6014009993523 1313.6014009993523 1316.2811279986054 1319.3236900009215 1319.5401620008051 1321.3706059996039 1322.397746000439 1322.9828299991786 1325.0682779997587 1329.9104419983923 1330.164145000279 1332.8479820005596 1332.9195969998837 1335.4407970011234 1339.6994230002165 1339.7097580004483 1343.2645270004869 1343.2645270004869 1345.8213710002601 1346.5061040017754 1346.5061040017754 1348.2110199984163 1352.6224370002747 1352.7328290008008 1353.9553229995072 1354.730754001066 1359.3655609991401 1362.8118909988552 1366.2646490000188 1367.3539230003953 1372.7586269993335 1374.984822999686 1375.1088469997048 1375.1088469997048 1379.2051600012928 1382.5098069999367 1384.888387998566 1387.9325769990683 1387.9325769990683 1395.1648359987885 1398.297079000622 1398.297079000622 1399.5075280014426 1407.7023120000958 1409.6430670004338 1418.7403160016984 1424.3695890009403 1427.140829000622 1435.5946050006896
Open search router TTI (CPU) Baseline
Mean: 145.945 %
Stdev: 4.131 % (2.8%)
Runs: 137.67498687608813 138.47845885319117 138.7336877157441 139.2337602712709 139.30820490991505 139.65580432298322 140.7435967773656 140.89141814399122 141.36482837585442 142.14037774892807 142.21132995781286 142.22443055728644 142.22641708474023 142.4632549411224 142.75708004100625 142.9751873441722 143.2686188425401 143.93602780468547 143.9409101590112 144.0280721455782 144.25156546508384 144.6666750086153 144.99146488890392 145.025212075385 145.0503455429077 145.3084318859769 145.3176648042662 145.4008957192696 145.43174458959567 145.5876228600458 145.79203241190487 145.92115768463077 146.0371882322617 146.26873560243254 146.4584819620334 146.80432416909986 146.85206342524242 147.0278769880356 147.41769924594072 147.61311668513792 148.02880183948395 148.02998020988866 148.563476984347 148.57484464666823 148.86049399778483 149.0817528456691 149.19721115537854 149.35482595228595 149.459831875669 149.8573268862657 150.0799416121147 150.2389504727588 150.47420997945102 150.76703717460828 150.81159937587924 152.61142704094894 153.08519560791933 153.56367522212412 154.43677129962816 156.12513296971682

Current
Mean: 146.753 %
Stdev: 3.986 % (2.7%)
Runs: 137.3362302901817 138.92645553023425 140.84566220287056 142.14109323492156 142.29734705115175 142.41083739174942 142.5453199540056 142.77178503632985 143.05921583880678 143.32979635663565 143.35471211748822 143.35759643749114 143.36928593701833 143.63384525043497 143.8314220420443 143.89332982167136 143.91829161735856 144.12261989286776 144.18229225751483 144.18867390452291 144.53938995385295 144.75037164655217 144.98906590257334 145.1680777277064 145.443981997136 145.45586416147614 145.60029908432608 145.62899093955227 145.79258090120015 146.11051189800338 146.38298728413466 146.69094905606295 146.90771306570164 146.98334501852977 147.23495118316595 147.46939591099272 147.64262014218284 147.67064376007536 147.7987996929178 147.9003025982367 148.42484377182052 148.72227257308302 149.04133794325585 149.32892568748022 149.47785007272248 149.71908190137742 149.76953591792463 149.837323159721 150.4492039307804 152.22436100157992 152.46361006547912 152.59695566687887 152.71916639420078 153.01013587156828 153.334818682779 153.68840265065327 154.1959383615132 154.56701373669833 155.2067203245099
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: 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

Copy link
Contributor

Performance Comparison Report 📊 (6/10)

Meaningless Changes To Duration (5/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
Open search router TTI (RAM) Baseline
Mean: 393.723 MB
Stdev: 4.752 MB (1.2%)
Runs: 382.03046875 384.02734375 384.1125 384.14375 385.34140625 386.35703125 386.62421875 387.909375 388.08828125 389.359375 389.60546875 389.73828125 390.08828125 390.34140625 390.62734375 390.6703125 390.71328125 391.340625 391.8212890625 392.11171875 392.13984375 392.7265625 393.1334635416667 393.44296875 393.59921875 393.9404296875 393.99453125 394.0265625 394.1357421875 394.309375 394.6513671875 394.798828125 394.87109375 394.9109375 394.91875 395.2626953125 395.4212239583333 395.50234375 396.15625 396.2796875 396.63828125 397.06953125 397.52265625 397.6412760416667 397.671875 397.9625 397.9640625 397.98203125 398.35859375 398.3875 398.61328125 398.64765625 398.8040364583333 399.15390625 399.2076822916667 399.66796875 399.67890625 402.3203125 403.1142578125

Current
Mean: 393.708 MB
Stdev: 4.663 MB (1.2%)
Runs: 383.3001302083333 383.92734375 384.3078125 385.94609375 386.1546875 386.31015625 386.54921875 388.4166666666667 388.8740234375 389.2486979166667 389.5169270833333 390.38515625 390.51875 390.58671875 390.72421875 390.79765625 390.9078125 391.41640625 391.6416015625 391.90625 391.9264322916667 392.06875 392.0953125 392.521484375 392.61328125 392.67890625 392.6828125 393.07265625 393.134375 393.18125 393.22109375 393.5484375 394.005859375 394.365625 394.48984375 394.88984375 395.759375 396.0052083333333 396.19609375 396.2546875 396.353125 396.58359375 396.603125 396.66796875 396.7125 397.29375 397.6640625 397.869140625 397.89609375 398.8546875 399.04296875 399.10546875 399.1921875 399.5553385416667 399.7734375 399.9791666666667 401.2859375 401.515625 401.7783203125 402.6028645833333
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.887 %
Stdev: 2.181 % (8.8%)
Runs: 21.5 21.6 21.8 21.9 22 22.1 22.3 22.3 22.4 22.4 22.6 22.8 23 23 23.1 23.1 23.3 23.3 23.4 23.5 23.5 23.5 23.6 23.8 23.8 24.2 24.2 24.2 24.2 24.3 24.5 24.7 24.9 25.2 25.2 25.6 25.9 25.9 25.9 26.2 26.4 26.5 26.5 26.5 26.6 26.7 26.7 26.7 26.7 26.8 26.9 27 27 27.4 27.8 28.4 29.1 29.2 29.6 30

Current
Mean: 24.820 %
Stdev: 2.006 % (8.1%)
Runs: 21 21.5 21.8 21.8 22.2 22.7 22.7 22.7 23 23 23.1 23.1 23.2 23.2 23.3 23.5 23.5 23.5 23.5 23.6 23.6 23.7 23.8 23.8 23.9 24 24.2 24.2 24.3 24.3 24.3 24.3 24.4 24.4 24.7 24.8 25 25.1 25.3 25.4 25.6 26.2 26.3 26.4 26.4 26.6 26.9 26.9 27 27.1 27.1 27.4 27.6 27.6 27.8 27.9 28.3 28.6 29 29.1
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 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 1 1 1 1

Copy link
Contributor

Performance Comparison Report 📊 (7/10)

Meaningless Changes To Duration (6/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
Report typing Message sent Baseline
Mean: 501.708 ms
Stdev: 41.492 ms (8.3%)
Runs: 420.68619900010526 420.9721679985523 422.90645400062203 428.1384279988706 428.76651999913156 437.55057800002396 439.4586180001497 439.7172849997878 441.88261000066996 444.53035500086844 449.17822300083935 455.79850299842656 463.9413649998605 465.6904300004244 468.89819400012493 471.30879699997604 475.6732580009848 479.3164880014956 484.57820599898696 484.9673259984702 488.28572599962354 489.5098069999367 493.2074379995465 495.68448999896646 497.268636001274 497.58776799961925 503.45007300004363 503.93570999987423 506.70174200087786 519.3580729998648 519.3975419998169 522.5205489993095 522.9944259990007 523.984538000077 524.8354899995029 524.9024660009891 525.4106450006366 525.449137000367 525.5010169986635 525.581706000492 526.0340170003474 526.4247639998794 528.4769289996475 528.930785998702 528.9351400006562 529.2228190004826 529.8139650002122 531.7779139988124 532.8635660000145 537.249756000936 538.2594809997827 539.2878419999033 542.8070880006999 545.8336590006948 545.9652920011431 561.9165449999273 562.6219890005887 564.5641690008342 564.6274820007384 577.3232419993728

Current
Mean: 501.585 ms
Stdev: 39.567 ms (7.9%)
Runs: 417.8214519992471 424.69543500058353 426.86482799984515 426.9480390008539 430.37019800022244 437.7076409999281 442.16935200057924 445.4455159995705 453.64941399917006 458.4037280008197 458.5799149982631 458.74499499984086 461.1266680005938 461.77132200077176 463.453083999455 465.38069700077176 465.8787839990109 466.59057600051165 466.7925629988313 482.24548299983144 483.250447999686 494.0025639999658 503.21549499966204 504.54398600012064 505.0391039997339 506.16971800103784 519.8106690011919 520.7380370013416 523.0781659986824 523.3033450003713 523.7878010012209 524.2783209998161 524.7163089998066 524.7687989994884 525.0968429986387 525.343913000077 525.3995370008051 525.5612389985472 525.8535559996963 526.0516759995371 526.2961429990828 526.6459970008582 526.8204750008881 526.840738998726 526.9731450006366 527.5219720005989 529.0366619993001 529.8372399993241 529.9464929997921 531.2930909991264 533.5853269994259 534.265951000154 534.4758710004389 540.433755999431 547.7032479997724 548.5544029995799 549.362956000492 551.1278889998794 553.7999269999564 571.9472660012543
Report typing (CPU) Baseline
Mean: 95.562 %
Stdev: 4.070 % (4.3%)
Runs: 87.59854688954402 89.86191751362367 89.97353701337026 90.24736709317479 90.24772252400642 90.28950762375902 90.7080974094673 91.40345698008602 91.53301768839938 91.56717343367124 91.6913502720943 91.78560980527311 91.89261881154907 92.24739529907403 92.41313065969203 92.6349104199048 92.83505587536007 93.00725762744555 93.0322990209649 93.16143023353276 93.46317561935307 93.56129838229526 93.71743707573025 93.73406023718444 93.88421382767778 94.03489531396421 94.0725196783995 94.22864548498058 94.26619422760898 94.57292454555946 94.5875839738811 94.82317738333327 95.03001081733045 95.09609729356332 95.7046076029111 96.32091198967518 96.74396042619678 96.89933012441337 97.39996518011445 97.43118375660694 97.57147483874097 97.57823027276912 98.25563422289537 98.62483632606089 98.99529193287593 99.12077539195862 99.34837327214841 99.5711073585133 100.07352290132496 100.26953564849 100.50623856277642 100.85536102004713 100.88689847720816 101.23675566126161 102.44088464418408 102.8780296063907 103.09792489538117 104.33911078564144 104.7852830263176

Current
Mean: 95.384 %
Stdev: 4.502 % (4.7%)
Runs: 87.8264451951352 88.18405798855544 88.45015470906607 88.58003330370809 88.78873348823757 88.87903803147303 88.90879873378637 90.15535781790632 90.21857838832115 90.46165954028451 91.33061665516513 91.43857860570077 91.74129476582476 92.02424716064527 92.48696959406693 92.60621360938511 92.7350281951926 92.8093329980961 92.94461095194616 92.98019430579774 93.17753537864222 93.74110066619605 93.78760603271824 93.85518185374772 93.87419973543605 94.11871739974634 94.27774540361817 94.40981804714903 94.42296815720303 94.44527914175814 94.56435133052625 94.74104397320544 94.75333408463561 95.4249738297647 95.94191853249292 96.40636525758923 96.49614843472814 96.79127378264204 96.88730437185974 97.39072184297555 98.26926972831701 98.48403182626447 98.59755003563892 99.14012721303165 99.43571347382704 99.54953852202034 99.56616312336223 99.68028684126054 100.00112747137484 100.16633378488545 100.30215391184674 100.32529539682983 100.37901077435122 100.60447149536893 101.70140350680923 102.22453504079002 103.40282352150916 104.57360282510075 108.16887495375617
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

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
Report typing (RAM) Baseline
Mean: 461.757 MB
Stdev: 6.870 MB (1.5%)
Runs: 441.37314967105266 445.03926809210526 448.80263157894734 451.8277138157895 452.1611842105263 452.90604440789474 453.4940476190476 454.4272203947368 454.8884943181818 455.30448190789474 455.56167763157896 455.6494654605263 455.70365767045456 456.275390625 456.4085115131579 456.61698190789474 456.8569568452381 457.7154605263158 458.2693536931818 458.734765625 458.76190476190476 459.6040296052632 459.72141335227275 459.8616365131579 459.97265625 460.11011904761904 460.42557565789474 461.01083096590907 462.04708059210526 462.39955357142856 463.60546875 463.6625744047619 463.66885653409093 463.79017857142856 464.63014914772725 464.9389391447368 464.98519736842104 465.3922697368421 465.67844460227275 465.768359375 466.1938244047619 466.2549342105263 466.47042410714283 466.500390625 466.541015625 467.28426846590907 467.423828125 467.6108630952381 468.3199404761905 468.6509046052632 468.7483552631579 468.776953125 469.49033717105266 469.613671875 469.9814967105263 470.5185032894737 471.1044407894737 471.1371299342105 471.52890625 475.23980034722223

Current
Mean: 462.423 MB
Stdev: 7.238 MB (1.6%)
Runs: 440.8923611111111 451.7678865131579 452.35238486842104 452.6432291666667 453.2249177631579 453.43412642045456 453.81956845238096 453.826171875 453.9019717261905 454.3203125 454.38589638157896 454.7903645833333 455.33550347222223 456.2833806818182 456.7244318181818 456.9379111842105 457.32440476190476 457.3326171875 457.7074032738095 458.8575994318182 458.9921875 459.4920099431818 459.58078835227275 460.2100074404762 461.19087357954544 461.3832236842105 461.4103338068182 461.45845170454544 461.5415296052632 461.9183799342105 462.60863095238096 462.9703480113636 463.79769736842104 464.83370535714283 464.8396484375 464.98028273809524 465.0746299342105 465.07589285714283 465.1168154761905 465.23916903409093 465.4585193452381 466.2802734375 466.7534950657895 467.1215049342105 467.5669921875 467.76089638157896 468.9175967261905 469.3708984375 469.4681332236842 469.623828125 470.20908717105266 470.735546875 471.0076171875 471.77528782894734 472.0618832236842 473.1663240131579 473.3636924342105 473.6162109375 476.2386924342105 477.31435032894734

Copy link
Contributor

Performance Comparison Report 📊 (8/10)

Meaningless Changes To Duration (7/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
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.609 %
Stdev: 0.681 % (3.3%)
Runs: 19 19.1 19.4 19.6 19.7 19.7 19.8 19.9 19.9 20 20 20.1 20.1 20.1 20.2 20.2 20.2 20.3 20.3 20.4 20.4 20.5 20.5 20.5 20.5 20.5 20.5 20.6 20.6 20.7 20.7 20.7 20.7 20.8 20.8 20.8 20.8 20.8 20.9 20.9 20.9 20.9 21 21 21.1 21.1 21.1 21.1 21.3 21.4 21.5 21.6 21.6 21.7 21.8 22.1 22.3

Current
Mean: 20.486 %
Stdev: 0.847 % (4.1%)
Runs: 18.2 18.8 18.9 19.2 19.2 19.2 19.4 19.6 19.7 19.7 19.9 19.9 19.9 19.9 19.9 20 20 20.1 20.1 20.1 20.1 20.2 20.2 20.2 20.2 20.3 20.3 20.4 20.4 20.5 20.6 20.6 20.6 20.6 20.7 20.7 20.7 20.8 20.8 20.8 20.9 20.9 20.9 21 21.2 21.2 21.3 21.4 21.4 21.5 21.5 21.5 21.5 21.6 21.6 21.6 21.8 22.2 22.3
Chat opening Chat TTI Baseline
Mean: 779.109 ms
Stdev: 37.209 ms (4.8%)
Runs: 692.4818120002747 708.7411710005254 718.8545740004629 720.7629800010473 730.5342619996518 732.2141929995269 732.3599040005356 736.9034829996526 743.3293459992856 748.3546959999949 755.6366779990494 756.3341469988227 758.2429209984839 760.0525310002267 760.988078000024 761.8363450001925 762.1241459995508 765.1959640011191 766.9294029995799 769.6256920006126 771.4255370013416 772.9462080001831 776.6220699995756 777.0969239994884 778.9927980005741 781.7148040011525 782.9330250006169 783.6960859987885 784.6071780007333 785.8584400005639 785.888061998412 788.879070000723 793.7061769999564 793.9787189997733 794.6989750005305 800.0640059988946 803.0027270000428 807.9582930002362 812.5449630003422 813.6905930005014 815.2183439992368 816.7987879998982 821.6157229989767 824.4478760007769 829.7554130014032 835.1813559997827 844.4389650002122 858.4974770005792 858.5929769985378

Current
Mean: 783.192 ms
Stdev: 37.942 ms (4.8%)
Runs: 701.6897790003568 723.9178470000625 729.0699059981853 729.9271240010858 737.6393240001053 739.7384440004826 741.2422289997339 741.5232749991119 742.1516930013895 742.4372569993138 742.4767259992659 743.7285159993917 744.0876470003277 746.968586999923 747.2800699993968 749.809692999348 750.7748620007187 758.1267499998212 759.6705729998648 764.7170820012689 767.6022140011191 769.1784259993583 769.3432219997048 772.8084720000625 774.2165530007333 779.8758540004492 784.5671800002456 785.3467619996518 787.5914719998837 788.003866000101 792.6163330003619 793.6561689991504 795.3478190004826 799.1175129991025 807.2741700001061 807.4938970003277 810.0710049998015 810.7548019997776 814.0036619994789 814.1535650007427 814.1647139992565 815.6854660008103 822.1520179994404 824.0407309997827 824.988241000101 825.0829270016402 825.5530599988997 825.949543999508 828.441935999319 832.5701090004295 842.8438729997724 844.203125 853.0495200008154 853.6504720002413
Chat opening (CPU) Baseline
Mean: 162.242 %
Stdev: 7.112 % (4.4%)
Runs: 147.85176339592059 148.67802497166 148.87370582987785 149.61919789981252 150.97233148927737 151.31945326588462 151.90906926012994 154.69237589856309 154.71042397829243 155.4717369510107 155.48219616671662 156.24414913028264 156.32914067632302 156.53233182795347 157.1060052510587 157.79145213964125 157.84027953805125 158.6431036156258 159.0180707467086 159.0377202268646 159.17691974532414 159.47177517659168 160.16417076840418 160.2358067729084 160.44534178662144 160.5752011753888 160.80089172666268 160.83670300529573 161.32695258802372 161.77207971912463 162.175765096084 162.26865718218707 163.69989148772711 163.89729585832163 163.9866199260138 164.09490722393062 164.63225528664407 164.79318480069327 165.13815876273222 165.54203619770405 166.0025877192973 166.04442496799044 167.19243818525973 167.33784080687687 168.0732855104657 168.22700283071345 168.4779208865781 168.8863683774231 169.05638510044804 169.49360221236554 169.94320585638857 170.05501745329747 170.1364130985601 170.2230227624718 170.6766670499967 171.37966947910573 171.5073391323159 172.34717279015663 173.75914836992683 182.5590337759771

Current
Mean: 160.083 %
Stdev: 6.412 % (4.0%)
Runs: 143.91867083480673 147.98763762195824 148.53181252161968 149.00968084890113 149.8817504451345 150.5242118012154 150.85346827444192 151.5917070153033 152.806311433298 154.20355022669875 154.38102311849806 154.4392947389953 154.71078799458488 154.90757124681036 155.19882114499362 155.21282534532537 155.78955550785886 156.002215607651 156.9046899587427 157.2302633892966 157.6819806897223 158.20454599683723 158.2555933081282 158.26047904191623 158.2911849536082 158.78028444764138 159.37683057869174 159.4300479353516 160.32125885099975 160.48129801746663 161.0042079320073 161.3902336725098 161.45652071789843 162.99006105439054 163.32393125921885 163.63820375457456 163.67310020097398 163.7359519770743 164.2954953179926 164.3662365566806 164.42968480899384 164.45916368207102 164.54398776296244 164.57878956613212 164.65921872692184 164.70443909003458 165.06062339303233 165.11288666277872 165.1730425770662 165.79926646913233 165.94197363944028 165.9608563932739 165.99598075977175 166.92074802173053 167.2770241159236 167.98724347428 168.098920989896 168.5434359773225 168.91292941970045 177.79471520660238

Copy link
Contributor

Performance Comparison Report 📊 (9/10)

Meaningless Changes To Duration (8/9)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.000 ms (-7.441 ms, -22.3%) 🟢
App start time appCreation 70.367 ms → 80.800 ms (+10.433 ms, +14.8%)
App start time runJsBundle 305.200 ms → 338.333 ms (+33.133 ms, +10.9%)
App start time nativeLaunchEnd_To_appCreationStart 65.817 ms → 85.086 ms (+19.270 ms, +29.3%) 🟡
App start time appCreationEnd_To_contentAppeared 512.475 ms → 561.017 ms (+48.542 ms, +9.5%)
App start time contentAppeared_To_screenTTI 907.098 ms → 968.761 ms (+61.663 ms, +6.8%)
App start time regularAppStart 0.021 ms → 0.023 ms (+0.001 ms, +5.5%)
App start time (CPU) 151.212 % → 155.027 % (+3.815 %, +2.5%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 366.613 MB → 361.799 MB (-4.813 MB, -1.3%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.845 % → 29.649 % (+0.804 %, +2.8%)
Open search router TTI Load Search Options 142.977 ms → 140.780 ms (-2.196 ms, -1.5%)
Open search router TTI Open Search Router TTI 1218.994 ms → 1214.678 ms (-4.316 ms, ±0.0%)
Open search router TTI (CPU) 145.945 % → 146.753 % (+0.809 %, +0.6%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.723 MB → 393.708 MB (-0.015 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 24.887 % → 24.820 % (-0.067 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 501.708 ms → 501.585 ms (-0.122 ms, ±0.0%)
Report typing (CPU) 95.562 % → 95.384 % (-0.178 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 461.757 MB → 462.423 MB (+0.666 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.609 % → 20.486 % (-0.122 %, -0.6%)
Chat opening Chat TTI 779.109 ms → 783.192 ms (+4.083 ms, +0.5%)
Chat opening (CPU) 162.242 % → 160.083 % (-2.159 %, -1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 388.760 MB → 388.704 MB (-0.056 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.173 % → 31.886 % (-0.286 %, -0.9%)
Money request - Open Manual Tracking 148.312 ms → 146.193 ms (-2.120 ms, -1.4%)
Money request - Open Contacts 231.530 ms → 227.896 ms (-3.635 ms, -1.6%)
Money request - Open Create 146.772 ms → 145.607 ms (-1.165 ms, -0.8%)
Money request (CPU) 176.920 % → 176.947 % (+0.027 %, ±0.0%)
Money request (FPS) 59.142 FPS → 59.101 FPS (-0.040 FPS, ±0.0%)
Money request (RAM) 445.957 MB → 446.060 MB (+0.103 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 42.854 % → 42.373 % (-0.481 %, -1.1%)
Show details
Name Duration
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

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 388.760 MB
Stdev: 5.663 MB (1.5%)
Runs: 377.4423828125 378.830078125 379.671875 380.55625 380.6318359375 380.7685546875 381.4501953125 381.70703125 381.8265625 381.875 382.0615234375 382.1669921875 382.59375 384.146484375 384.53125 384.751953125 385.044921875 385.1421875 385.2734375 386.2890625 386.572265625 386.8421875 387.7158203125 387.89609375 387.9125 388.0796875 388.2984375 388.3134765625 388.45234375 388.51484375 388.61640625 388.73046875 389.0302734375 389.13359375 389.54453125 389.56015625 390.83125 390.90703125 391.009375 391.1875 391.79296875 391.921875 391.9296875 392.20234375 392.38046875 392.88125 393.34453125 393.50625 393.7 394.2984375 394.3515625 394.8486328125 396.228125 396.32734375 396.55078125 396.6578125 397.7265625 399.7311197916667 400.1119791666667 401.1982421875

Current
Mean: 388.704 MB
Stdev: 5.686 MB (1.5%)
Runs: 376.91640625 377.9736328125 378.4755859375 379.380859375 379.822265625 380.408203125 381.013671875 381.38671875 382.4912109375 383.5283203125 383.7060546875 384.15546875 384.19921875 384.4833984375 384.4873046875 384.56640625 385.0048828125 385.1591796875 385.1640625 385.225 385.24296875 385.279296875 385.89921875 386.35546875 386.365625 386.90234375 388.08046875 389.0517578125 389.13828125 389.14921875 389.4171875 389.646875 389.943359375 390.07890625 390.21640625 390.6265625 390.6546875 391.0296875 391.30703125 391.359375 391.36796875 391.4609375 392.065625 392.5125 392.6671875 393.284375 393.33203125 393.421875 393.7625 393.8671875 394.50390625 394.78046875 395.0546875 395.734375 396.68046875 398.34375 398.66171875 398.6901041666667 398.7239583333333 400.05234375
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.173 %
Stdev: 2.508 % (7.8%)
Runs: 26.7 27 27.5 27.7 27.9 28.4 28.5 28.5 29 29 29.3 29.3 29.7 30.4 30.5 30.5 31 31 31 31.2 31.2 31.4 31.5 32 32.1 32.1 32.6 32.7 32.8 32.8 33 33.1 33.1 33.1 33.1 33.1 33.1 33.2 33.4 33.4 33.6 33.7 33.8 33.9 34.1 34.4 34.4 34.7 34.8 35 35 35 35 35 35.3 35.4 35.5 35.9 36.8

Current
Mean: 31.886 %
Stdev: 2.180 % (6.8%)
Runs: 27.3 27.5 27.9 28.3 28.7 28.8 28.9 28.9 28.9 28.9 29.3 29.5 29.5 29.7 30 30.4 30.5 30.6 31 31.2 31.3 31.3 31.4 31.4 31.8 32.2 32.2 32.2 32.3 32.4 32.5 32.7 32.7 32.7 32.8 33 33 33 33.1 33.1 33.1 33.2 33.3 33.3 33.3 33.5 33.6 33.6 33.8 34 34.1 34.1 34.5 34.6 34.7 34.8 34.9 35.1 36.9

Copy link
Contributor

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

@mountiny
Copy link
Contributor

nativeLaunchEnd_To_appCreationStart Does not feel like this could cause such regression cc @chrispader

@mountiny mountiny removed the DeployBlockerCash This issue or pull request should block deployment label Apr 23, 2025
Copy link
Contributor

🚀 Deployed to staging by https://github.com/mountiny in version: 9.1.32-0 🚀

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

@Kicu
Copy link
Member Author

Kicu commented Apr 24, 2025

Agree with Vit. Some higlights:

One thing that happened here which might have some consequences is that ReportScreen is now connected to additional onyx collection - transactions: https://github.com/Expensify/App/blob/main/src/pages/home/ReportScreen.tsx#L297 (but I did use a selector! 😅)

Other than that:

  • no new routes added
  • no new onyx keys
  • mainly refactoring of some preview components
  • new navigation added and some extra logic to display parts of ReportScreen in a different way

@pecanoro
Copy link
Contributor

I think the new way that we use to display the transactions in the report might have caused this bug: #60834

Copy link
Contributor

🚀 Deployed to production by https://github.com/thienlnam in version: 9.1.32-8 🚀

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
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants