Skip to content

Fix - Add Custom field 1 and Custom field 2 in the workspace member profile. #60277

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
merged 19 commits into from
May 12, 2025

Conversation

FitseTLT
Copy link
Contributor

@FitseTLT FitseTLT commented Apr 15, 2025

Details

Fixed Issues

$ #59243
PROPOSAL: #59243 (comment)

Tests

  1. Open Settings -> Workspace -> Members
  2. Click on a member
  3. Click on custom field 1 and input any text and save it
  4. Verify the value is persisted
  5. Do the same for custom field 2
  • Verify that no errors appear in the JS console

Offline tests

Same as above

QA Steps

Same as above

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed 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 approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • 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.js 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(themeColors.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 form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label 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
2025-04-25.00-13-26.mp4
Android: mWeb Chrome
2025-04-25.00-15-37.mp4
iOS: Native
2025-04-24.23-09-40.mp4
iOS: mWeb Safari
2025-04-24.23-10-33.mp4
MacOS: Chrome / Safari
2025-04-24.23-08-28.mp4
MacOS: Desktop
2025-04-24.23-09-06.mp4

@FitseTLT FitseTLT marked this pull request as ready for review April 24, 2025 21:16
@FitseTLT FitseTLT requested a review from a team as a code owner April 24, 2025 21:16
@melvin-bot melvin-bot bot requested review from rayane-d and removed request for a team April 24, 2025 21:16
Copy link

melvin-bot bot commented Apr 24, 2025

@rayane-d 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]

@FitseTLT
Copy link
Contributor Author

FitseTLT commented Apr 24, 2025

@dannymcclain Mind u give a quick 👀 as it is a new feature Thx

@dannymcclain
Copy link
Contributor

Videos are looking good to me! Do these fields only show up on the Members detail page? Or do they also show up as read-only on the user's profile?

@rayane-d
Copy link
Contributor

@dannymcclain They are currently displayed only on the member detail page and not on the user's profile.

@rayane-d
Copy link
Contributor

rayane-d commented Apr 28, 2025

Reviewer Checklist

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

Screenshots/Videos

Android: HybridApp
Screen.Recording.2025-05-09.at.3.23.38.PM.mov
Android: mWeb Chrome
Screen.Recording.2025-05-09.at.11.04.55.AM.mov
iOS: HybridApp
Simulator.Screen.Recording.-.iPhone.15.Pro.Max.-.2025-05-09.at.11.06.42.mp4
iOS: mWeb Safari
Simulator.Screen.Recording.-.iPhone.15.Pro.Max.-.2025-05-09.at.11.03.26.mp4
MacOS: Chrome / Safari
web.mov
MacOS: Desktop
desktop.mov

@trjExpensify
Copy link
Contributor

@rayane-d how are you getting on with the review here?

CC: @zsgreenwald to follow along as you have a lead asking for this.

Copy link
Contributor

@rayane-d rayane-d left a comment

Choose a reason for hiding this comment

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

@FitseTLT Let's add logic to properly handle the POLICYCHANGELOG_UPDATE_EMPLOYEE report action in the #admin room; it currently displays the message for member role updates instead of custom field updates.

The message should be added an <employeeUserID / employeePayrollID> of "<Value>" to <User> or updated the <employeeUserID / employeePayrollID> of <User> to "<Value>" (previously "<Value>")

We also need to include translations for these messages.

Screenshot 2025-04-28 at 7 53 09 PM

Here is the JSON data of a sample action:

JSON Data
{
      "actionName": "POLICYCHANGELOG_UPDATE_EMPLOYEE",
      "actorAccountID": 19723429,
      "avatar": "https://d2k5nsl2zxldvw.cloudfront.net/images/avatars/default-avatar_14.png",
      "created": "2025-04-28 18:47:56.435",
      "lastModified": "2025-04-28 18:47:56.435",
      "message": [
            {
                  "type": "COMMENT",
                  "html": "added a employeePayrollID of \"Test adm 2\" to [email protected]",
                  "text": "added a employeePayrollID of \"Test adm 2\" to [email protected]",
                  "isEdited": false,
                  "whisperedTo": [],
                  "isDeletedParentAction": false,
                  "deleted": "",
                  "reactions": []
            }
      ],
      "originalMessage": {
            "accountID": 19723429,
            "email": "[email protected]",
            "field": "employeePayrollID",
            "isNewDot": true,
            "lastModified": "2025-04-28 18:47:56.435",
            "newValue": "Test adm 2",
            "oldValue": ""
      },
      "person": [
            {
                  "type": "TEXT",
                  "style": "strong",
                  "text": "Admin"
            }
      ],
      "reportActionID": "431092518121503504",
      "shouldShow": true,
      "timestamp": 1745866076,
      "reportActionTimestamp": 1745866076435,
      "automatic": false,
      "whisperedToAccountIDs": []
}

@rayane-d
Copy link
Contributor

BUG: The custom field page opens without a sliding animation.

Screen.Recording.2025-04-28.at.8.08.09.PM.mov

@FitseTLT
Copy link
Contributor Author

FitseTLT commented Apr 29, 2025

Handled most comments but still having trouble on the sliding animation bug so asking the community here

@rayane-d
Copy link
Contributor

rayane-d commented May 5, 2025

@FitseTLT Any update?

@trjExpensify
Copy link
Contributor

does this mean that every single member view across all workspaces will have these additional two custom fields? Maybe @trjExpensify can explain it to me!

Yep, they do. No conditional logic. They live here on every member in the people table on OldDot:

image

Companies use these fields to store additional info about employees, to mainly then include in manual CSV exports. E.g employeeID, cost centre etc.

@shawnborton
Copy link
Contributor

Right on, thanks for confirming!

@shawnborton
Copy link
Contributor

cc @Expensify/design for viz, this is a "new" thing for NewDot to keep in mind.

Copy link
Contributor

@rayane-d rayane-d left a comment

Choose a reason for hiding this comment

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

LGTM and tests well 👍

@JmillsExpensify
Copy link

Cool, so we're only short one review from @francoisl and then we can get this merged, right?

@francoisl francoisl merged commit e7cb5a5 into Expensify:main May 12, 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 May 12, 2025
Copy link
Contributor

Performance Comparison Report 📊 (1/11)

⚠️ 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 1498.450 ms → 1636.459 ms (+138.009 ms, +9.2%) 🔴
Show details
Name Duration
App start time TTI Baseline
Mean: 1498.450 ms
Stdev: 256.291 ms (17.1%)
Runs: 1127.4622760005295 1176.6419249996543 1187.1219970006496 1197.6927990000695 1204.7184560000896 1205.32504699938 1205.8691659998149 1224.6137659996748 1235.6831819992512 1242.2360139992088 1244.3170159999281 1252.0411179997027 1258.066548999399 1261.774374999106 1262.544965999201 1264.9885910004377 1278.7282710000873 1282.4676729999483 1286.0315579995513 1294.4221170004457 1296.110217999667 1299.3612949997187 1308.1093760002404 1316.7894390001893 1322.0932049993426 1325.0688109993935 1332.1155120003968 1333.7672429997474 1352.6748539991677 1362.9920850005 1371.4920610003173 1389.8399810008705 1407.3997460007668 1576.8974629994482 1639.1349350009114 1651.8443730007857 1686.3824230004102 1699.6852809991688 1700.320793999359 1708.656974999234 1720.0068309996277 1730.0507229994982 1737.115225000307 1748.8608389999717 1750.9367539994419 1761.0049019996077 1771.5363250002265 1790.7860150001943 1793.7277559991926 1800.8589789997786 1807.0360480006784 1811.5531690008938 1839.846991000697 1845.21160300076 1845.965889999643 1846.1517799999565 1846.3117030002177 1866.447365000844 1882.0528590008616 1938.0642499998212

Current
Mean: 1636.459 ms
Stdev: 240.480 ms (14.7%)
Runs: 1208.9627539999783 1272.4731770008802 1274.4574180003256 1295.650706000626 1295.7248589992523 1297.7742139995098 1298.6083569992334 1299.8111790008843 1321.70002900064 1329.3730859998614 1332.9497909992933 1360.086462000385 1378.0114489998668 1379.9629089999944 1394.6928310003132 1395.00008800067 1396.9779349993914 1397.346333000809 1400.0502569992095 1403.9040120001882 1411.5276909992099 1415.9013000000268 1420.845527999103 1453.91193100065 1658.547770999372 1711.6518120002002 1732.5123040005565 1734.5754920002073 1755.321506999433 1758.8738439995795 1765.2138620000333 1775.3885570000857 1780.614333000034 1790.560891000554 1804.4561790004373 1808.4992249999195 1809.082325000316 1810.4202239997685 1824.212473999709 1825.885379999876 1830.5819620005786 1832.36477500014 1835.708660999313 1838.1011430006474 1841.1082450002432 1843.1822989992797 1849.3824979998171 1860.3778729997575 1863.1957569997758 1870.8715920001268 1872.200643999502 1872.5509360004216 1877.6064720004797 1878.7000559996814 1883.7130069993436 1898.0881559997797 1899.8997930008918 1903.5906150005758 1918.1252609994262 1936.6648270003498

Copy link
Contributor

Performance Comparison Report 📊 (10/11)

Meaningless Changes To Duration (9/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
Show details
Name Duration
Money request - Open Manual Tracking Baseline
Mean: 145.645 ms
Stdev: 13.574 ms (9.3%)
Runs: 125.73665399849415 126.0573319979012 126.35766600072384 126.9472250007093 127.07072000205517 127.68021599948406 130.52067099884152 131.07906099781394 131.53381299972534 131.59737199917436 132.80627499893308 133.3223869986832 133.70731600001454 134.5566000007093 135.3039559982717 135.31315200030804 135.5268150009215 137.52339700236917 138.16756200045347 138.42635099962354 138.88570099696517 139.1048180013895 139.3419589996338 139.93729599937797 140.95524099841714 141.20345100015402 141.52746600285172 141.78031399846077 141.9002280011773 142.25777200236917 144.547770999372 144.75463899970055 145.24845400080085 146.51448599994183 147.82482900097966 148.34916200116277 149.68876199796796 149.75150600075722 150.29016099870205 150.34126799926162 152.36018899828196 152.80879700183868 153.0295000001788 153.30037399753928 155.55403699725866 155.94258599728346 156.1684979982674 157.6967779994011 162.16605599969625 162.3935950025916 162.80578599870205 167.4889330007136 167.9236660003662 168.84334300085902 170.6790769994259 171.03084300085902 175.87231400236487 177.92374700307846

Current
Mean: 150.476 ms
Stdev: 14.542 ms (9.7%)
Runs: 120.9436849988997 128.92472300305963 131.67110199853778 132.66817300021648 133.4609370008111 133.5442299991846 134.0305179990828 134.60119700059295 136.02998799830675 137.61136900261045 137.69213899970055 137.94681799784303 138.2483719997108 139.09708599746227 139.11584500223398 139.86161299794912 140.11625199764967 140.84928399696946 141.1238199993968 141.1898600012064 141.4675699993968 141.58333399891853 142.86796100065112 143.79793300107121 145.5564780011773 145.78706900030375 145.88895700126886 146.9302570000291 147.72615499794483 147.7570799998939 150.375 150.51586899906397 151.13814199715853 151.5616049990058 153.5446779988706 153.67981000244617 154.0749110020697 154.11177499964833 154.45320699736476 155.2622479982674 155.89554899930954 156.75256299972534 156.8141280002892 157.21321599930525 157.3359370008111 159.52042699977756 160.87491899728775 161.10587599873543 163.72619700059295 165.1546219997108 167.990112002939 168.94860900193453 170.04174799844623 172.05533800274134 175.01668300107121 177.53125 182.18054199963808 185.2053220011294 187.91202799975872
Money request - Open Contacts Baseline
Mean: 222.295 ms
Stdev: 13.096 ms (5.9%)
Runs: 199.38529499992728 201.60270100086927 203.90694100037217 204.9134519994259 205.44453900307417 205.969645999372 206.8987229987979 207.36356700211763 207.61267100274563 208.19926000013947 209.16711399704218 210.18758200109005 210.20100900158286 210.75496400147676 210.98177099972963 211.5653070025146 211.59940600022674 211.97468999773264 212.4677330031991 212.7833249978721 213.43493700027466 213.98368399962783 214.23669500276446 215.84456400200725 215.87206999957561 217.68155999854207 218.25533000007272 218.77852400019765 221.22961500287056 222.72395899891853 222.81673200055957 224.28763899952173 224.5252270027995 225.24536100029945 225.70479299873114 225.79325300082564 226.06770899891853 226.2682700008154 226.99462899938226 227.18391899764538 227.6510819979012 229.23042799904943 230.62638400122523 231.5368239991367 232.62357600033283 232.85811400040984 232.8931069970131 234.28104700148106 234.30554199963808 234.60262100026011 235.78092399984598 236.11710599809885 238.24267600104213 238.72989900037646 239.7330319993198 242.85188799723983 243.3587649986148 244.89310700073838 252.74829099699855 254.7076820023358

Current
Mean: 226.438 ms
Stdev: 15.738 ms (7.0%)
Runs: 199.43908699974418 204.55782099813223 205.20817099884152 206.9982099980116 207.34033200144768 208.81982399895787 208.89709500223398 210.82417900115252 212.13891600072384 212.21940200030804 212.68798800185323 212.92293300107121 213.35062699764967 213.60852099955082 213.61869300156832 214.01493299752474 214.2109370008111 214.49666299670935 214.787761002779 215.31009900197387 216.20170099660754 218.22355199977756 218.44689900055528 218.6383869983256 218.75057000294328 219.18835400044918 220.05082200095057 220.78890000283718 221.25862599909306 221.7482510022819 223.1328129991889 224.61177599802613 224.81624300032854 226.1574300006032 227.51102700084448 228.39160200208426 228.77595999836922 229.63566099852324 230.07779999822378 230.8052569963038 232.08308900147676 232.33427000045776 232.60091200098395 232.60294600203633 235.5835769996047 236.3702800013125 238.6359050013125 239.6210119985044 239.87105299904943 242.1763100028038 247.23543300107121 249.31697700172663 251.66284200176597 251.96378599852324 252.7170010022819 253.4720049984753 254.75065100193024 255.00048800185323 260.9742019996047 264.67167200148106
Money request (CPU) Baseline
Mean: 181.246 %
Stdev: 4.743 % (2.6%)
Runs: 170.3883570719371 170.88276705106622 170.986276092295 172.38836351805284 172.9320479092968 173.24583927929882 174.33669157061848 174.8379455470946 175.29925802742082 175.3989420218811 177.13832191374945 177.1523211982773 177.18606417733943 177.32774696792606 177.44668195404893 177.99411372690972 178.17382263921385 178.6229306739007 178.66281797710673 179.43784682894903 180.0187270412597 180.33129992617583 180.3946763655919 180.54094747021264 180.62257580555556 180.7968174013444 181.3893795421816 181.82341630755133 181.96981395189752 182.15958946158585 182.9412474994309 182.97661486365777 182.99917669921234 183.3632460758939 183.6545188207262 183.7593013886666 183.8803903238716 183.98194557205485 183.98506247474793 184.4212371398577 184.46963490557602 184.47916824344958 184.72097971326022 184.8831571541842 185.1949905948171 185.26817132728064 185.27263828978136 185.4338958482082 185.52635260484763 185.5618181516648 185.64156283083852 185.7903424928024 185.8716498251007 185.92169306303938 186.53505088358173 186.5634971256187 187.00223177410217 187.89256343703465 188.3276436365776 188.55237369964047

Current
Mean: 183.748 %
Stdev: 4.190 % (2.3%)
Runs: 176.09745040937167 176.6068695846698 176.88761488185608 176.91489641826018 176.93250580211802 177.39447781469158 178.41567581051973 178.61893753390154 178.64396506216485 179.0065867549012 179.04959274842747 179.05444055317545 179.33821498806927 179.6086150238867 180.2972753568723 180.66700493192909 180.74443875691395 181.16068657479798 181.610869477072 181.68845616468892 181.81890381392452 182.3847181948185 182.8323810946628 182.98140280075003 183.09531574999545 183.13183134807022 183.3659932082419 183.38549414616952 183.71576595725273 183.84816833814702 184.3507143002683 184.4820505868776 184.56417640406804 184.91640763097334 184.99313604855084 185.04790841971277 185.30548541512633 185.49384939187382 185.5437886079967 185.57020415457086 185.71062200616345 185.99736997396107 186.11295732998119 186.12703390486124 186.28285022437186 186.56179119636198 186.82090473467696 187.02095911077575 187.34578415111937 187.50393414580236 187.860958331634 187.9215318953338 187.9635254463173 188.16048529210502 189.58193880113078 190.04317396217775 191.0888335094789 191.35404120728367 192.61070203631294 193.21619907595164
Money request (FPS) Baseline
Mean: 58.627 FPS
Stdev: 0.833 FPS (1.4%)
Runs: 57.17486961231579 57.201997882712305 57.202592134414495 57.414770764300975 57.482993710681455 57.52552555666895 57.559099027963235 57.670162865642126 57.718166559302865 57.72069150192106 57.73672882450124 57.80162487937909 57.805194670005555 57.905378802739314 57.9429192706762 57.94691144540078 58.08835719352064 58.210972451851745 58.231055726835024 58.23683721431486 58.27121636427002 58.27621730272695 58.30344939499276 58.30701401457887 58.330145730201984 58.41658391272421 58.417446210536994 58.41855315421399 58.42797887286505 58.45447209043503 58.46799296169123 58.48724108797079 58.53707004717072 58.643804331616806 58.76929243508067 58.944402336239506 58.96454491140243 58.979600334601166 58.996454315196104 59.00960784556104 59.042412204142366 59.10500707214146 59.258145330838765 59.28391010390364 59.2989348258831 59.305800215819 59.37919605319077 59.52064567826887 59.66583397620995 59.72337281722181 59.7575015768853 59.81612189892057 59.84922140480028 60 60 60 60 60 60

Current
Mean: 58.579 FPS
Stdev: 0.889 FPS (1.5%)
Runs: 56.73167488123206 56.86260902286416 57.342632797338744 57.34276861743801 57.55806599007969 57.57418363112373 57.600239794837236 57.62137859124983 57.65584180779334 57.67731186691374 57.67773029754987 57.704080968690256 57.797796185961246 57.805289095073555 57.80976147619605 57.95317318117268 57.98138485007772 57.984344830725625 57.985446131708066 57.9967043918019 58.03514696590669 58.12499613219191 58.13111664014571 58.166967384340445 58.20520014104653 58.281017568255415 58.33320225388283 58.39295513817768 58.40974158359007 58.516493527360915 58.67000004629068 58.683785529522076 58.72438405813344 58.734618497994845 58.74990570705642 58.79132977488656 58.81648269665097 58.85542829412119 59.0193926857465 59.023109676759304 59.04275748755414 59.0550716043757 59.26775521837468 59.31957006453664 59.36199032000662 59.58729962926876 59.62975447291588 59.66719765315194 59.69140406194953 59.706746304743255 59.90516576011546 60 60 60 60 60 60 60

Copy link
Contributor

Performance Comparison Report 📊 (11/11)

Meaningless Changes To Duration (10/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
Show details
Name Duration
Money request (RAM) Baseline
Mean: 446.008 MB
Stdev: 6.651 MB (1.5%)
Runs: 431.1162109375 431.63783482142856 434.01060267857144 434.662109375 435.51171875 436.37109375 436.66964285714283 439.31808035714283 440.42578125 440.48291015625 440.7890625 441.0864955357143 441.09877232142856 441.10302734375 441.27232142857144 441.962890625 441.99776785714283 442.09423828125 442.3208705357143 442.56863839285717 443.29017857142856 443.4091796875 443.59486607142856 443.87158203125 443.921875 444.5786830357143 445.04017857142856 445.09130859375 445.67354910714283 446.15625 446.32763671875 446.34654017857144 446.8798828125 446.9013671875 447.08370535714283 447.51395089285717 447.56591796875 447.7451171875 447.7650669642857 447.9765625 448.10791015625 448.29736328125 448.5048828125 448.54150390625 451.2919921875 451.37388392857144 451.779296875 451.85595703125 453.56689453125 453.71435546875 453.90380859375 454.1015625 454.15185546875 454.91162109375 455.24755859375 455.75244140625 455.9951171875 456.08154296875 459.634765625 460.40625

Current
Mean: 437.159 MB
Stdev: 8.852 MB (2.0%)
Runs: 422.15457589285717 422.486328125 422.53173828125 423.63839285714283 423.78173828125 424.4560546875 424.51708984375 425.125 425.18526785714283 425.2963169642857 425.71826171875 428.06473214285717 428.21728515625 428.94363839285717 429.5931919642857 429.95849609375 430.02978515625 430.95591517857144 431.90122767857144 431.9658203125 432.2939453125 432.81752232142856 433.529296875 433.55029296875 435.02099609375 435.74951171875 436.21533203125 437.74330357142856 437.7822265625 438.04464285714283 438.1904296875 438.78125 438.82177734375 439.19287109375 440.07177734375 440.18212890625 440.5478515625 441.49560546875 441.9140625 442.173828125 442.61328125 443.55970982142856 444.24462890625 444.44140625 444.6953125 444.78564453125 444.95263671875 444.98046875 445.16357421875 445.6259765625 446.9794921875 447.119140625 447.7587890625 448.47314453125 449.1298828125 449.4580078125 449.5888671875 451.1568080357143 452.15234375 454.02064732142856
Money request (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Money request (CPU/UI) Baseline
Mean: 43.760 %
Stdev: 1.428 % (3.3%)
Runs: 41.3 41.4 41.8 41.8 41.9 41.9 42.1 42.1 42.3 42.4 42.7 42.7 42.7 42.8 42.8 42.8 42.9 42.9 43 43 43 43.1 43.2 43.3 43.3 43.4 43.4 43.4 43.5 43.6 43.6 43.7 43.8 44 44 44.1 44.2 44.2 44.2 44.3 44.4 44.4 44.4 44.5 44.5 44.6 45.1 45.1 45.3 45.7 45.9 46.2 46.2 46.2 46.7 47 47.5

Current
Mean: 43.942 %
Stdev: 1.770 % (4.0%)
Runs: 40.3 40.9 40.9 41.1 41.7 41.8 41.9 42 42.3 42.3 42.4 42.4 42.5 42.5 42.7 42.9 43 43 43 43 43.1 43.2 43.3 43.4 43.5 43.6 43.6 43.6 43.7 43.7 43.8 43.9 43.9 43.9 44 44 44 44 44.1 44.4 44.5 44.6 44.6 44.7 44.8 45 45.2 45.4 45.4 45.5 45.5 46.3 46.6 46.7 46.9 47 47.3 47.4 47.7 48.1
Money request - Open Create Baseline
Mean: 138.279 ms
Stdev: 9.913 ms (7.2%)
Runs: 116.6020100004971 118.79459699988365 119.24943099915981 120.67456099763513 126.38387000188231 126.47289999946952 127.3714600019157 127.56355800107121 128.4287919998169 129.29964200034738 130.46142600104213 130.8478599973023 131.94791599735618 132.14176499843597 132.33235700055957 132.86230500042439 133.0022380016744 133.00858599692583 133.5377190001309 133.66442899778485 134.1450599990785 134.29300900176167 134.3648279979825 134.7057699970901 134.73958300054073 134.81282600015402 134.90043199807405 136.72131400182843 136.81962100043893 137.19112100079656 137.2237550020218 137.41886400058866 138.9881999976933 140.27722200006247 140.29557299986482 142.01049900054932 142.0663250014186 142.11507200077176 142.47871899977326 142.87080899998546 144.25260400027037 144.65901700034738 144.68139700219035 144.781819999218 145.61592600122094 146.2147630006075 147.41918900236487 147.70971700176597 148.1486000008881 148.36669899895787 149.77396599948406 150.4890950024128 151.3483070023358 152.03295900300145 153.1351719982922 155.44392899796367 156.66267900168896 166.38541599735618

Current
Mean: 139.016 ms
Stdev: 9.126 ms (6.6%)
Runs: 118.10306799784303 123.14583400264382 124.10306800156832 124.530517000705 125.35164399817586 125.53027299791574 126.07881700247526 126.83422899991274 128.9718430005014 129.45483399927616 130.34765600040555 132.31538899987936 133.5639649964869 133.63610900193453 134.1527099981904 134.3910719975829 135.1958820000291 135.21968600153923 135.51456699892879 136.35152200236917 136.49255400151014 136.56270400062203 136.72985899820924 136.8018799982965 137.16910799965262 137.47469099983573 138.89375799894333 139.16267900168896 139.71341900154948 139.98213700205088 139.98897299915552 139.99666399881244 140.01082299649715 140.0865480005741 140.22147599980235 140.39807099848986 140.8366700001061 141.59053599834442 142.00773099809885 142.10404400154948 143.234659999609 143.55619300156832 144.34529599919915 144.70483399927616 144.89176499843597 147.672159999609 147.84338299930096 148.05989599972963 148.37687199935317 148.5432130023837 148.6488850004971 151.6858730018139 151.87703400105238 153.6649580001831 158.05863400176167 159.60396299883723 160.11450199782848

Copy link
Contributor

Performance Comparison Report 📊 (2/11)

Meaningless Changes To Duration (1/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 33.441 ms
Stdev: 4.447 ms (13.3%)
Runs: 27 27 27 28 28 28 29 29 29 29 29 29 29 30 30 30 30 30 30 31 31 31 31 31 31 32 32 32 33 33 33 33 33 34 34 34 34 34 35 35 35 35 35 36 37 37 37 38 38 39 40 40 40 40 40 41 42 43 45

Current
Mean: 26.050 ms
Stdev: 4.233 ms (16.2%)
Runs: 21 21 21 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 26 26 27 27 28 28 28 29 29 30 31 31 31 32 32 33 33 33 34 34 35 35 35
App start time appCreation Baseline
Mean: 66.103 ms
Stdev: 8.553 ms (12.9%)
Runs: 52 52 53 54 54 54 55 55 57 58 59 60 60 60 61 61 62 62 62 63 63 63 63 63 64 64 64 64 64 64 65 65 65 66 67 67 68 69 69 69 69 69 69 70 72 72 74 74 74 76 77 79 80 81 82 83 86 87

Current
Mean: 72.767 ms
Stdev: 9.348 ms (12.8%)
Runs: 54 56 58 58 59 61 61 62 62 62 62 65 65 65 65 66 66 68 68 68 69 69 70 70 71 71 71 73 73 74 74 74 74 74 74 74 74 75 75 76 76 77 77 78 78 78 80 80 81 81 82 82 83 83 86 87 89 91 95 96
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 413.627 ms
Stdev: 29.572 ms (7.1%)
Runs: 347 350 358 368 369 377 378 384 384 384 387 390 391 393 394 396 398 399 401 402 402 403 404 405 405 405 408 408 410 410 412 413 415 418 418 420 421 422 427 430 430 432 433 434 435 435 435 438 439 445 445 451 451 453 455 460 474 475 478

Current
Mean: 454.220 ms
Stdev: 21.941 ms (4.8%)
Runs: 397 415 416 423 428 429 432 432 432 432 435 436 437 437 438 438 438 438 443 444 445 446 446 446 447 447 449 449 451 453 454 455 458 460 461 462 462 463 463 463 465 465 465 466 467 468 470 474 476 478 480 481 481 485 488 488 495 502 505
App start time contentAppeared_To_screenTTI Baseline
Mean: 916.650 ms
Stdev: 248.764 ms (27.1%)
Runs: 579.4622760005295 605.6419249996543 643.6831819992512 646.32504699938 647.066548999399 657.6927990000695 659.2360139992088 659.7184560000896 663.7743749991059 665.8691659998149 681.6748539991677 683.6137659996748 686.0688109993935 686.1219970006496 689.4676729999483 691.0932049993426 694.5449659992009 696.7672429997474 701.4221170004457 702.3170159999281 707.1102179996669 710.0315579995513 712.9885910004377 720.7282710000873 721.1093760002404 730.0411179997027 736.3612949997187 747.1155120003968 755.7894390001893 759.4920610003173 776.3997460007668 779.9920850005001 780.8399810008705 1069.8974629994482 1088.1349350009114 1110.8443730007857 1121.6852809991688 1137.8608389999717 1145.0507229994982 1148.3824230004102 1150.320793999359 1151.0068309996277 1153.656974999234 1173.5531690008938 1176.9367539994419 1177.0049019996077 1178.115225000307 1182.7277559991926 1205.7860150001943 1208.0360480006784 1211.5363250002265 1224.8589789997786 1226.21160300076 1229.846991000697 1236.965889999643 1239.447365000844 1242.1517799999565 1261.0528590008616 1280.0642499998212 1288.3117030002177

Current
Mean: 1005.242 ms
Stdev: 240.188 ms (23.9%)
Runs: 626.9627539999783 656.6507060006261 657.4574180003256 665.8111790008843 667.9497909992933 673.7000290006399 674.4731770008802 681.6083569992334 701.7742139995098 704.9629089999944 706.7248589992523 707.3730859998614 724.0114489998668 726.0000880006701 732.0864620003849 750.9040120001882 752.8455279991031 755.9013000000268 759.6928310003132 760.0502569992095 762.346333000809 770.9779349993914 778.5276909992099 797.9119310006499 1082.6518120002002 1084.547770999372 1127.5123040005565 1137.8738439995795 1139.5754920002073 1142.321506999433 1160.560891000554 1164.3885570000857 1167.614333000034 1174.082325000316 1174.2138620000333 1175.4561790004373 1189.4202239997685 1194.1082450002432 1194.6064720004797 1195.1011430006474 1197.4992249999195 1201.5906150005758 1206.885379999876 1207.708660999313 1209.1822989992797 1209.1957569997758 1212.212473999709 1212.5819620005786 1220.3824979998171 1222.36477500014 1231.200643999502 1242.5509360004216 1242.6648270003498 1245.8715920001268 1248.0881559997797 1252.7130069993436 1261.1252609994262 1261.8997930008918 1263.3778729997575 1264.7000559996814

Copy link
Contributor

Performance Comparison Report 📊 (3/11)

Meaningless Changes To Duration (2/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
Show details
Name Duration
App start time runJsBundle Baseline
Mean: 301.661 ms
Stdev: 16.792 ms (5.6%)
Runs: 268 268 269 269 273 273 273 273 276 276 278 278 278 278 281 281 281 281 281 281 285 285 290 290 291 291 291 291 291 291 293 293 294 294 295 295 295 295 297 297 297 297 298 298 298 298 299 299 299 299 300 300 303 303 303 303 303 303 304 304 304 304 304 304 305 305 305 305 306 306 307 307 307 307 307 307 308 308 309 309 309 309 309 309 311 311 312 312 315 315 318 318 319 319 322 322 324 324 326 326 326 326 327 327 328 328 331 331 332 332 338 338

Current
Mean: 324.842 ms
Stdev: 15.746 ms (4.8%)
Runs: 293 293 293 293 297 297 297 297 301 301 302 302 303 303 303 303 305 305 307 307 308 308 310 310 313 313 314 314 314 314 314 314 319 319 319 319 319 319 321 321 321 321 322 322 322 322 323 323 324 324 325 325 325 325 325 325 326 326 327 327 327 327 329 329 330 330 330 330 330 330 331 331 331 331 332 332 332 332 333 333 333 333 333 333 334 334 334 334 335 335 338 338 339 339 340 340 340 340 341 341 345 345 345 345 346 346 350 350 350 350 352 352 364 364
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 65.254 ms
Stdev: 9.573 ms (14.7%)
Runs: 49 50 52 52 53 53 54 54 54 55 55 55 56 56 57 58 58 59 59 60 61 61 61 62 62 62 63 63 64 64 65 65 65 65 66 67 68 69 71 71 71 72 72 73 74 74 74 74 75 75 75 76 77 78 79 79 81 85 92

Current
Mean: 78.712 ms
Stdev: 8.830 ms (11.2%)
Runs: 61 62 67 68 68 69 69 70 70 71 72 72 72 72 73 73 73 74 74 74 74 74 74 75 75 75 76 76 76 76 77 77 78 78 79 80 81 81 82 82 83 83 84 85 85 86 86 87 87 87 88 88 89 89 91 93 97 101 105
App start time regularAppStart Baseline
Mean: 0.025 ms
Stdev: 0.003 ms (13.2%)
Runs: 0.019408999010920525 0.020142000168561935 0.020426001399755478 0.020548000931739807 0.021362001076340675 0.021443000063300133 0.021483998745679855 0.0215659998357296 0.022135000675916672 0.022339001297950745 0.022379999980330467 0.02254199981689453 0.022866999730467796 0.022949999198317528 0.022950001060962677 0.02307100035250187 0.02307100035250187 0.023559000343084335 0.02364100143313408 0.02376299910247326 0.023966001346707344 0.024007000029087067 0.024088000878691673 0.02408900111913681 0.02433300018310547 0.02433300018310547 0.024414001032710075 0.024454999715089798 0.024658000096678734 0.024739999324083328 0.024779999628663063 0.0253090001642704 0.025512000545859337 0.02555299922823906 0.025635000318288803 0.025755999609827995 0.025918999686837196 0.02612300030887127 0.026366999372839928 0.026691999286413193 0.026774000376462936 0.027018999680876732 0.027262000367045403 0.027465999126434326 0.027588000521063805 0.02762800082564354 0.027750998735427856 0.0278329998254776 0.027994999662041664 0.028157999739050865 0.03080200031399727 0.03096500039100647 0.0317390002310276 0.031859999522566795 0.03259299881756306 0.03316299989819527 0.03356900066137314

Current
Mean: 0.020 ms
Stdev: 0.002 ms (9.6%)
Runs: 0.01713000051677227 0.017334001138806343 0.018067000433802605 0.01810699887573719 0.01810699887573719 0.018268998712301254 0.018310999497771263 0.018311001360416412 0.018757998943328857 0.018838999792933464 0.018838999792933464 0.01892099902033806 0.018921000882983208 0.01896199956536293 0.01908399909734726 0.019164999946951866 0.019164999946951866 0.0192050002515316 0.019206000491976738 0.019328000023961067 0.019328000023961067 0.019572000950574875 0.019572000950574875 0.019613001495599747 0.019652999937534332 0.019652999937534332 0.019694000482559204 0.020262999460101128 0.020263999700546265 0.02034500055015087 0.0204670000821352 0.020508000627160072 0.020711999386548996 0.020712001249194145 0.020954998210072517 0.02099599875509739 0.020997000858187675 0.02128100022673607 0.021525001153349876 0.02160700038075447 0.021728001534938812 0.022175999358296394 0.022216999903321266 0.02237899973988533 0.022419998422265053 0.022501999512314796 0.02254300005733967 0.022745998576283455 0.0231929998844862 0.023437999188899994 0.0235190000385046 0.023559000343084335 0.025065001100301743 0.026367999613285065
App start time (CPU) Baseline
Mean: 154.529 %
Stdev: 8.274 % (5.4%)
Runs: 132.17552325907639 139.92724609951702 140.33996847449845 140.63363935562094 140.68420213613902 141.601109663996 142.06649605153535 142.17348435658806 143.61232604373757 144.6120382256454 144.73306772908373 144.79655135320345 145.07441435106216 145.92890961205268 148.97742363877813 149.41903536476 149.9810987903226 151.26175219598744 151.2879350403603 152.00927898908864 152.304612774544 152.62616079674385 153.06244899918406 153.26588853972936 154.0825193499135 154.1135480877312 154.18035111715477 154.83362019506603 156.19577242795546 156.33748101315902 156.48643295702126 156.7054108882903 156.84436663096275 157.370557453513 157.70075162466858 158.18363273453105 158.37548648911886 158.7393583214398 159.05941158555902 159.97347922011198 159.97645299349276 160.3972590421874 160.8423461795654 160.93524283441073 161.1214078174375 162.0428450321696 162.05560174091653 162.4014688845841 162.42937788604982 162.58740562184985 162.77352584559458 163.17260625265487 163.50385865418377 163.6630353585656 163.71140898745176 164.36479074187338 164.85408299866126 164.9834322109565 166.9755726641955 167.1906360604025

Current
Mean: 164.418 %
Stdev: 4.099 % (2.5%)
Runs: 152.92333187240848 155.71713147410367 156.69081521995386 157.3091690579893 159.32117428535196 159.75125603788283 159.854867583444 160.15694840639358 160.35033783694232 161.05268927371273 161.2679889540028 162.150971932706 162.30460159935885 162.34659766620754 162.9717051237682 163.36552181373037 163.42415366722113 163.4249871991807 163.51728600892486 163.54380931681166 163.57355745468033 163.61563812547135 164.06703400173456 164.57307823949506 164.6909203000626 164.7132860429447 164.86965519357403 165.35766669839742 165.4020563922286 165.70807514823107 165.7297090635847 165.8971963845695 165.9279258371046 166.2924975132244 166.3152427115378 166.34890942880665 166.64867711074157 167.17826772596607 167.19064220305322 167.48428277135577 168.1818567810579 168.4492714066473 168.52511376940336 168.8670469286678 169.2305078143892 169.2807552281771 169.33602674169737 169.78039522408622 171.27546450441972 174.94384126541422

Copy link
Contributor

Performance Comparison Report 📊 (4/11)

Meaningless Changes To Duration (3/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
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 60 60 60 60 60

Current
Mean: 59.726 FPS
Stdev: 0.458 FPS (0.8%)
Runs: 58.42031909714458 58.64937899082664 58.69470327764535 58.69617112345541 58.73581973486071 58.98148458619172 59.010575222312156 59.03548859016954 59.19208276073427 59.268310383197296 59.30466379285479 59.310872534138674 59.44160915201589 59.513320562599006 59.52222248745665 59.5774028621988 59.8656220079849 59.9801073670784 59.99628256475705 60 60 60 60 60 60 60 60 60 60 60 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: 362.910 MB
Stdev: 7.333 MB (2.0%)
Runs: 344.87109375 348.185546875 348.494140625 349.8828125 351.119140625 352.876953125 352.955078125 353.259765625 353.607421875 355.16015625 355.248046875 356.337890625 356.52734375 356.8125 357.716796875 358.341796875 359.4674479166667 359.7825520833333 359.9401041666667 360.2799479166667 361.5026041666667 361.9765625 362.52734375 362.630859375 362.8372395833333 362.9674479166667 363.3763020833333 363.4388020833333 364.19921875 364.2526041666667 364.4817708333333 364.6080729166667 364.6458333333333 365.19140625 365.27734375 365.4752604166667 366.1015625 366.2135416666667 366.3841145833333 366.4752604166667 366.6705729166667 367.2252604166667 367.2291666666667 367.9518229166667 368.4479166666667 368.6041666666667 369.46875 369.9361979166667 370.1822916666667 370.7057291666667 370.9010416666667 371.3763020833333 371.45703125 372.1575520833333 372.4505208333333 373.3359375 376.2578125 379.0052083333333

Current
Mean: 368.791 MB
Stdev: 5.442 MB (1.5%)
Runs: 354.775390625 355.587890625 358.5911458333333 359.056640625 359.2942708333333 359.5234375 360.5598958333333 360.92578125 362.1041666666667 362.2486979166667 364.0260416666667 365.14453125 365.1510416666667 365.828125 366.5338541666667 367.4609375 367.7890625 368.0950520833333 368.1223958333333 368.1888020833333 368.5247395833333 368.5299479166667 368.98828125 369.0234375 369.0546875 369.10546875 369.2330729166667 369.2877604166667 369.2981770833333 369.30078125 369.3385416666667 369.7994791666667 369.8333333333333 370.1588541666667 370.3723958333333 370.64453125 370.6653645833333 371.28125 371.3997395833333 371.4609375 371.5598958333333 371.9088541666667 372.48828125 372.8502604166667 372.8854166666667 373.1041666666667 373.7135416666667 374.0520833333333 374.26953125 374.591796875 374.79296875 375.58203125 376.03125 376.03515625 376.26171875 377.9736328125 378.6588541666667
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.895 %
Stdev: 2.660 % (9.2%)
Runs: 21.9 22.6 24.9 24.9 25 25 25.1 25.9 25.9 26 26 26 26.7 26.8 27.1 27.3 27.5 28 28 28 28.1 28.4 28.5 28.5 28.6 28.7 28.7 28.7 28.9 29 29.1 29.1 29.1 29.3 29.4 29.8 29.9 29.9 30 30.5 30.6 30.6 30.7 30.7 30.8 31.1 31.1 31.3 31.4 31.4 31.8 31.9 32 32.1 32.5 32.7 33.2 33.5 34.6

Current
Mean: 28.631 %
Stdev: 2.190 % (7.6%)
Runs: 23.8 24 24.5 24.7 24.7 25.1 25.2 26 26 26 26.3 26.7 26.8 27.3 27.3 27.3 27.4 27.5 27.9 28 28 28.4 28.4 28.5 28.6 28.6 28.6 28.6 28.7 29 29.2 29.3 29.3 29.3 29.3 29.4 29.4 29.7 29.8 29.8 29.9 29.9 30 30 30 30 30 30.2 30.4 30.6 30.6 30.7 31.3 31.4 31.7 31.9 32.6 32.6 33

Copy link
Contributor

Performance Comparison Report 📊 (5/11)

Meaningless Changes To Duration (4/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
Show details
Name Duration
Open search router TTI Load Search Options Baseline
Mean: 138.033 ms
Stdev: 5.557 ms (4.0%)
Runs: 129.39420500025153 130.09887699969113 130.21459900029004 130.28466800041497 130.31909199990332 130.41153999976814 131.12382000125945 131.23970500007272 131.496825998649 132.53450500033796 132.6940509993583 133.18379699997604 133.515909999609 133.76407900080085 133.92907700128853 133.93497800081968 134.06343599967659 134.1237380001694 134.15625 134.18355399928987 134.37683099880815 134.55655900016427 134.61934399977326 134.80924499966204 134.8265789989382 134.94893399998546 135.08028100058436 135.2051190007478 136.55924499966204 136.70776399970055 136.80672199837863 137.20003299973905 137.9212649986148 138.54797299951315 138.6330159995705 138.91629999876022 139.00451700016856 139.4377440009266 140.8639330007136 141.05887800082564 141.25813799910247 141.65844699926674 142.3453780002892 142.88708500005305 143.4472250007093 143.5513099990785 144.26713000051677 144.3205570001155 144.62276200018823 144.6634119991213 144.9224040005356 145.07084099948406 145.31718000024557 145.72867899946868 145.91589299961925 146.011880999431 146.45519999973476 147.46183199994266 148.04195100069046 149.27042699977756

Current
Mean: 138.060 ms
Stdev: 6.193 ms (4.5%)
Runs: 123.30651799961925 125.8893630001694 127.25703899934888 129.86185700073838 129.94331900030375 130.24613500013947 130.3669840004295 130.43070399947464 131.52864599972963 131.70100899972022 131.8583579994738 131.93339099921286 132.07881600037217 132.2289230003953 132.8685710001737 132.9840089995414 134.2043869998306 134.46577900089324 134.97745699994266 135.3665769994259 135.37251800112426 135.60518399998546 135.83691500127316 135.83972200006247 135.95841499976814 136.50862700119615 136.75353999994695 137.13740999996662 137.3640140015632 137.63846800103784 138.05208400078118 138.1585290003568 138.89294400066137 139.050619000569 139.58756499923766 139.67830500006676 140.09106499888003 140.75634800083935 141.233805000782 141.37329100072384 141.82722899876535 142.62947599962354 142.84789999946952 142.97302299924195 143.0841469988227 143.35144000127912 143.71089700050652 143.77217600122094 143.890625 144.23400900140405 144.38655599951744 144.4047849997878 144.53474999964237 144.5577800013125 144.74568700045347 145.5000810008496 146.04756599850953 148.02099600061774 151.83146199956536 152.8838299997151
Open search router TTI Open Search Router TTI Baseline
Mean: 1257.812 ms
Stdev: 80.571 ms (6.4%)
Runs: 1065.1114099994302 1067.382162000984 1070.0143240001053 1070.2131349984556 1071.7397060003132 1074.1740319989622 1079.1800539996475 1081.0988369993865 1083.5167239997536 1087.8414719998837 1088.4130049999803 1089.2837729994208 1089.7682710010558 1090.0498050004244 1091.4745690003037 1091.7330740001053 1091.7585049998015 1092.8853360004723 1094.3931070007384 1095.6948249991983 1097.324667001143 1097.622110998258 1098.7122810017318 1101.7437340002507 1101.8063559997827 1104.53462699987 1104.718913000077 1106.1426189988852 1107.3955489993095 1111.6403000000864 1119.0990809984505 1123.7872730009258 1123.9178470000625 1125.085531000048 1127.3232829999179 1129.9773370008916 1131.4046640004963 1133.9086510017514 1142.2292889989913 1147.8463550005108 1149.356730999425 1149.4002700001001 1157.1857099998742 1157.9746499992907 1158.4252119995654 1159.5374349988997 1161.2631030008197 1163.0249840002507 1168.5434990003705 1170.32348700054 1170.6835939995944 1175.7954920008779 1177.2953289989382 1179.8113609999418 1181.700765999034 1181.9318040013313 1185.5466719996184 1187.1059990003705 1187.558147000149 1192.066855000332 1192.1859949994832 1192.1859949994832 1192.3134359996766 1192.3134359996766 1194.3566079996526 1195.527751000598 1196.0058600008488 1196.0686039999127 1196.294515999034 1196.9627280011773 1198.0310069993138 1198.6426189988852 1199.3070889990777 1199.3070889990777 1200.4518229998648 1201.7169599998742 1206.0368659999222 1206.2683520000428 1207.3156339991838 1208.2698980011046 1210.715292001143 1210.874960001558 1211.0134689994156 1211.3364669997245 1211.4235850013793 1211.7249770015478 1211.9765630010515 1212.591105999425 1212.7764079999179 1214.165690999478 1214.2647300008684 1214.40356499888 1214.539225999266 1214.753987999633 1214.753987999633 1215.446777999401 1216.6204019989818 1218.2431240007281 1218.479330001399 1218.6051440015435 1219.3521729987115 1219.4857999999076 1219.4857999999076 1220.644449999556 1220.7615159992129 1222.6366380006075 1222.6741540003568 1222.9112960007042 1224.1039230003953 1224.1039230003953 1224.3428550008684 1224.5863450001925 1225.3563239984214 1225.90702399984 1226.5302740000188 1226.7441420014948 1227.3573819994926 1227.9954019989818 1228.3361820001155 1228.5775559991598 1228.606282999739 1228.606282999739 1228.6201589982957 1228.9279380012304 1229.3061930015683 1229.507569000125 1229.555013999343 1230.781291000545 1230.781291000545 1233.4796559996903 1233.7645680010319 1234.3274739999324 1234.7304689995944 1235.0807299986482 1235.2401130013168 1235.4372969996184 1236.288127001375 1237.0264079999179 1237.0394700001925 1237.0394700001925 1237.5179859995842 1239.4442139994353 1239.465657999739 1239.5885020010173 1239.5885020010173 1240.5207529999316 1240.6251229997724 1240.634277999401 1242.2846280001104 1242.4284669999033 1242.753703000024 1242.9660240001976 1244.102864999324 1244.102864999324 1244.163412000984 1244.7339280005544 1246.4337569996715 1246.7829190008342 1246.8355319984257 1247.4755460005254 1247.8935960009694 1248.5731210000813 1249.0533050000668 1249.2390960007906 1249.2390960007906 1249.5137130003422 1249.8840749990195 1250.5339770000428 1250.7951260004193 1250.8079840000719 1250.9995940010995 1251.977905999869 1252.1161299999803 1252.6668710000813 1253.0302740000188 1254.4889330007136 1255.612914999947 1256.0492359995842 1256.099283998832 1257.600912000984 1257.8546149991453 1258.282267998904 1259.2717289999127 1259.6918950006366 1260.5921229999512 1261.1157640013844 1261.481608999893 1261.481608999893 1262.231935000047 1262.5834560003132 1262.6203619986773 1262.7488620001823 1262.7488620001823 1263.2788500003517 1263.3016370013356 1265.062663000077 1265.5487470012158 1265.5487470012158 1266.3649500012398 1267.1786710005254 1267.4889330007136 1268.3455820009112 1268.6326099988073 1269.402223000303 1269.6647549998015 1269.6871750000864 1270.0677499994636 1270.2373460009694 1270.3332119993865 1270.464153001085 1271.0147709995508 1272.2693290002644 1274.0257569998503 1274.0611170008779 1275.0137140005827 1275.429322000593 1276.210328001529 1276.2881680000573 1276.5304780006409 1276.9720869995654 1277.0299490001053 1277.0338960010558 1277.0338960010558 1279.2133800014853 1279.3293869998306 1279.4321299996227 1280.0136319994926 1281.1668710000813 1281.4521490000188 1281.9215510003269 1281.9215510003269 1282.0447599999607 1282.9630539994687 1284.149861998856 1284.3590500000864 1284.3714199997485 1284.441448001191 1286.605185000226 1286.614014999941 1288.247233999893 1288.6199139989913 1289.5967210009694 1290.2331549990922 1290.5550140012056 1291.1687830016017 1291.8391119986773 1291.9737959988415 1294.7209890000522 1295.1282150000334 1295.4897470008582 1296.1646330002695 1296.6572680007666 1296.6572680007666 1296.8126639984548 1296.8791109994054 1296.9720060005784 1297.2244070004672 1298.410237999633 1299.7393399998546 1300.3059089984745 1300.7010910008103 1301.950032999739 1302.3784599993378 1302.3784599993378 1302.4127620011568 1302.6625570002943 1302.6625570002943 1303.1156009994447 1303.2377940006554 1303.5535900015384 1303.5535900015384 1304.7493500001729 1305.0556240007281 1305.172242000699 1305.5307219997048 1305.6194670014083 1306.0292170010507 1306.0292170010507 1307.2478440012783 1308.121379001066 1308.2935799993575 1309.289795998484 1309.367635998875 1309.8997000008821 1311.000652000308 1311.375732999295 1312.3503430001438 1312.656739000231 1312.7338469997048 1312.8265390004963 1314.0670580007136 1314.682048998773 1314.7685150001198 1316.8821209985763 1317.8189710006118 1320.0062259994447 1323.8431809991598 1324.8158780001104 1324.8161629997194 1326.800945000723 1326.8456640001386 1327.0456960015 1327.7562669999897 1328.668539000675 1329.3343109991401 1330.3554290011525 1332.124919001013 1332.3016359992325 1332.7372239995748 1332.7552090007812 1333.5310879983008 1335.447103999555 1336.2016200013459 1339.6380209997296 1340.898641999811 1341.8339449986815 1342.6227219998837 1342.7968760002404 1343.2078859992325 1345.1065279990435 1345.2024339996278 1345.2024339996278 1345.2945570014417 1348.5062669999897 1350.165649998933 1350.3457039985806 1350.762004001066 1352.5916349999607 1352.7649739999324 1353.7007250003517 1354.191285001114 1357.3505049999803 1358.2431649994105 1361.8655199985951 1363.5643719993532 1364.1459969989955 1364.5652670003474 1364.7694509997964 1365.3436290007085 1366.0030519999564 1366.0030519999564 1367.6702070012689 1369.453694999218 1370.2403979990631 1371.0526539999992 1375.6809490006417 1376.0476890001446 1378.3314619995654 1379.262858999893 1383.3730879984796 1383.87036200054 1383.87036200054 1384.551188999787 1384.6479909997433 1384.8771570008248 1388.8572599999607 1392.9423430003226 1400.0807709991932 1400.1106780003756 1401.8336999993771 1401.8336999993771 1403.1765140015632 1406.450724998489 1407.0764570012689 1410.3308520000428 1412.132975999266 1416.9698900002986 1419.8739839997143 1420.2133389990777 1420.3339850008488 1420.3339850008488 1427.3459479995072 1433.6052660010755

Current
Mean: 1259.226 ms
Stdev: 82.805 ms (6.6%)
Runs: 1055.495240001008 1057.223307998851 1062.3293050006032 1066.5065520014614 1070.0951339993626 1071.0308030005544 1071.9718839991838 1072.9051920007914 1074.2294929996133 1074.820232000202 1075.822103999555 1078.0174969993532 1081.4494230002165 1083.6541349999607 1088.32881699875 1088.4130049999803 1091.422159999609 1091.6109619997442 1094.5619309991598 1096.028483999893 1096.898804999888 1097.9030760005116 1099.9512949995697 1102.4321300014853 1103.4567469991744 1104.3028570003808 1105.7668060008436 1113.8870449997485 1114.683310000226 1115.2246099989861 1115.716227998957 1115.7646900005639 1118.3840750008821 1118.5644129998982 1122.9230150002986 1125.8608809988946 1126.2323409989476 1127.805867999792 1129.356608999893 1131.5437430012971 1133.3699549995363 1133.454183999449 1133.8271080013365 1144.2305100001395 1146.1751709990203 1150.4775399994105 1150.6513679996133 1154.277953999117 1157.5367029998451 1161.0528979990631 1166.8473319988698 1168.9542650002986 1169.492433000356 1170.8469650000334 1171.1610519997776 1175.809488998726 1179.46537300013 1179.8346770014614 1180.0521649997681 1180.5534680001438 1180.5534680001438 1187.6781419999897 1187.7093099988997 1190.6888840012252 1193.4322110004723 1194.1749280001968 1195.0222169999033 1196.9956059996039 1197.5135099999607 1197.5135099999607 1197.5247799996287 1197.8489180002362 1197.9147549998015 1198.7344569992274 1199.784872001037 1202.316609999165 1202.4171959999949 1203.8881030008197 1204.0305189993232 1204.0305189993232 1204.4519870001823 1204.6751309987158 1206.2020679991692 1206.2020679991692 1206.2455649990588 1207.319621000439 1208.468913000077 1208.468913000077 1208.516440000385 1208.9080410003662 1209.4329439997673 1209.6561290007085 1210.2794599998742 1210.4323330000043 1210.9287529997528 1211.2025959994644 1214.6370860002935 1216.9404709991068 1219.053833000362 1219.198691001162 1219.198691001162 1220.2309169992805 1220.6090500000864 1220.798055998981 1222.1577969994396 1222.4051109999418 1222.4051109999418 1223.327840000391 1226.2356770001352 1226.2356770001352 1226.3208419997245 1226.4871020000428 1226.6035980004817 1227.5128990001976 1227.887858999893 1228.2922770008445 1228.3690600004047 1228.6928719989955 1228.703166000545 1229.2835299987346 1229.4084880016744 1230.00069199875 1230.4665940012783 1230.5649820007384 1232.2909749988467 1233.7362469993532 1234.372436998412 1234.9171549994498 1235.1687019988894 1235.3909519985318 1235.8219809997827 1235.9252119995654 1236.3883469998837 1236.3883469998837 1236.4763599988073 1239.6700440011919 1239.6700440011919 1240.0503339990973 1240.0503339990973 1240.0808920003474 1240.2567139994353 1241.1042080000043 1241.2365320008248 1241.5113539993763 1241.768636001274 1242.4355880003422 1242.542400000617 1243.7252610009164 1244.429363001138 1244.6757420003414 1245.3866380006075 1246.2744149994105 1246.5261649992317 1246.59452399984 1247.59790099971 1249.309449000284 1249.309449000284 1249.9561780001968 1250.8567710015923 1251.5758469998837 1251.731119999662 1252.7021490000188 1253.2435720004141 1253.4943850003183 1254.135865001008 1254.3018399998546 1254.3018399998546 1254.402792001143 1254.7651379983872 1255.0324720013887 1255.6773279998451 1258.1866870000958 1258.2571619991213 1260.0927740000188 1260.53955199942 1261.0457370001823 1261.2743739988655 1261.8118089996278 1261.9744470007718 1262.8115650005639 1263.1701259985566 1263.4334319997579 1263.7588710002601 1264.8878180012107 1265.2277020011097 1265.844482999295 1266.1578369997442 1266.1783869992942 1266.1783869992942 1267.3120120000094 1267.97636000067 1268.1516519989818 1268.5034190006554 1268.6159680001438 1268.7742110006511 1270.4279789999127 1270.5636810008436 1271.2765309996903 1272.3860279992223 1272.4325370006263 1272.4325370006263 1272.6004239991307 1272.7614750005305 1273.122192999348 1275.0539559982717 1275.2702229991555 1275.7666020002216 1275.9679779987782 1275.997192999348 1276.7806810010225 1277.698772000149 1277.7726249992847 1277.9804290011525 1279.7044680006802 1279.821655999869 1279.821655999869 1280.1540530007333 1280.384603999555 1281.5295419991016 1281.582195000723 1282.2753100004047 1283.2522379998118 1283.6077069994062 1284.0305589996278 1284.5423999987543 1285.6096199993044 1286.0849620010704 1286.2754720002413 1287.0059009995311 1287.603027999401 1288.3611659985036 1289.1707770004869 1289.5179040003568 1290.153199000284 1291.1155610010028 1291.276368001476 1291.7173670008779 1292.0622160006315 1292.2745369989425 1292.3278000000864 1292.688843999058 1293.0234780013561 1293.0758059993386 1294.4563809987158 1294.8177910000086 1295.2239190004766 1295.6509199999273 1296.2834889981896 1296.2834889981896 1296.5444339998066 1296.788656000048 1296.7907729987055 1297.1331379991025 1298.676188999787 1299.8227539993823 1300.1127530001104 1300.652060000226 1300.7360839992762 1301.5889899991453 1301.76709099859 1302.2514249999076 1302.9877939987928 1303.254598999396 1303.704020999372 1303.7910569999367 1305.2990730013698 1305.4768879991025 1305.5892340000719 1307.4584960006177 1307.4584960006177 1307.7009690012783 1307.953694999218 1308.5447599999607 1309.4962169993669 1309.554117999971 1309.5722260009497 1309.5758469998837 1311.614706998691 1312.6092939991504 1313.5531830005348 1313.5531830005348 1313.8951420001686 1314.0911050010473 1314.3922940008342 1314.5431730002165 1316.090616999194 1316.8824469987303 1317.2233080007136 1317.2233080007136 1317.571371998638 1317.8522139992565 1318.7872320003808 1319.3298350013793 1322.4194339998066 1322.519369000569 1323.2934169992805 1323.2934169992805 1323.9682219997048 1324.321655999869 1325.4379489999264 1325.5214849989861 1325.5939549989998 1325.903931999579 1328.1643070001155 1328.906902000308 1329.3277190010995 1330.484701000154 1333.1231690011919 1333.7392989993095 1333.963542001322 1334.7797459997237 1335.212280999869 1335.800699999556 1335.800699999556 1336.2848719991744 1336.649617999792 1338.004070000723 1338.9363209996372 1340.9760339986533 1341.0935879983008 1341.7056489996612 1342.5883799996227 1342.5883799996227 1342.9321699999273 1344.718913000077 1345.8969730008394 1346.2965099997818 1347.7462979983538 1348.5209149997681 1349.7554930001497 1350.6702880002558 1351.1200359985232 1351.7108569983393 1351.7926439996809 1352.6186530012637 1352.9274509996176 1353.2356770001352 1353.3496920000762 1355.6472580004483 1355.781006000936 1360.3878579996526 1360.739745998755 1362.1832689996809 1362.4674900006503 1364.149089999497 1364.149089999497 1365.6800539996475 1367.7399099990726 1368.914023000747 1369.993611998856 1370.5307219997048 1371.0690930001438 1377.3933930005878 1378.7707519996911 1379.0823980011046 1380.8380950000137 1380.8380950000137 1388.7941909991205 1388.7941909991205 1390.8784600012004 1391.4759940002114 1393.6819670014083 1396.5427259989083 1397.712361998856 1403.6416430007666 1403.6745610013604 1405.1355809997767 1407.1248790007085 1409.9658619984984 1416.641235999763 1419.0281180012971 1425.3308919984847 1426.4089360013604 1434.2401539999992 1443.6383469998837 1448.6258550006896 1457.1657309997827
Open search router TTI (CPU) Baseline
Mean: 154.861 %
Stdev: 3.296 % (2.1%)
Runs: 147.06354134250978 147.62084377922082 148.39288702956443 149.38163248290857 149.52364225040535 150.0505324756615 151.00156938205262 151.39525547745157 151.64715536939855 151.87206505889552 152.5842961972497 152.7846177244956 152.85644396101077 152.9243845186 153.0148872778334 153.31600812519227 153.46508090801868 153.7221623731038 153.74875626005874 153.8151352842721 153.86216520236812 153.95447827751497 153.9907845674674 153.9968721048853 154.22024756827423 154.2658403914279 154.3683404046719 154.58481562922876 154.92061880036562 154.9323603353189 154.95177324864116 155.3250374440218 155.34406101067984 155.49253070818898 155.64887394969028 155.84469198353727 156.1086296917566 156.1244074285884 156.14136263624482 156.17138285578594 156.47377121056843 156.55690077438638 156.77214783940622 156.92387557195005 157.45265560362822 157.6305395958282 157.90929027406932 158.0427391726872 158.06178971787008 158.18021870785066 158.575153972593 158.60810347320404 160.08111338317315 160.3411368348091 160.99960558567346 161.4875510736281 162.54930139720565

Current
Mean: 154.635 %
Stdev: 2.766 % (1.8%)
Runs: 148.6677105696569 149.60835009822256 149.8206837472398 150.2539679910983 150.59949273376137 151.0314579876446 151.18129961258768 151.42528983851466 151.64668601055206 151.6698619562651 152.24396208249925 152.3297686013963 152.43285030820746 152.55139494802376 152.58607113748351 152.61974212501792 152.76451691885615 152.97216685281577 153.12718145856795 153.30393883781454 153.50260591145056 153.5700770495003 153.82562414280792 153.93681128175078 153.98652172321374 154.16477420808624 154.29318677316428 154.4522093356685 154.5214035114831 154.5367172004412 154.77844844589566 154.84541185514857 155.06908309821412 155.15248667665773 155.45693107178838 155.5228128654399 156.06521052341847 156.11720627664482 156.14500980713083 156.22215196363368 156.31010819589662 156.35340161238446 156.38943845826725 156.44320889745137 156.55192181337787 156.64242401528043 156.77367310721382 157.04149305551022 157.27806266835645 157.30884551352327 157.71287038070622 157.79644612356367 158.13360446598847 158.71175681566132 158.72953639257452 159.2613108149013 161.19745836510077 161.21170858970436
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 60

Copy link
Contributor

Performance Comparison Report 📊 (6/11)

Meaningless Changes To Duration (5/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
Show details
Name Duration
Open search router TTI (RAM) Baseline
Mean: 392.109 MB
Stdev: 4.740 MB (1.2%)
Runs: 381.2671875 381.528125 382.4641927083333 383.696875 384.83828125 384.9772135416667 385.296875 387.734375 388.00390625 388.3359375 388.34921875 389.0484375 389.8294270833333 389.8509114583333 389.86796875 389.9375 389.9484375 389.953125 390.22265625 390.255859375 390.41953125 390.4359375 390.6770833333333 390.90390625 391.1022135416667 391.15859375 391.62109375 392.0162760416667 392.2265625 392.29453125 392.35546875 392.47265625 392.49921875 392.6421875 393.1296875 393.2337239583333 393.3359375 394.0328125 394.1578125 394.34296875 394.68125 395.38046875 395.77265625 395.9484375 396.50078125 396.58359375 396.60859375 396.94296875 396.958984375 396.982421875 397.435546875 397.48828125 397.5125 400.35546875 400.55625 401.38984375 402.6412760416667

Current
Mean: 393.273 MB
Stdev: 5.065 MB (1.3%)
Runs: 383.0296875 383.50234375 383.5125 383.69140625 384.109375 386.33046875 386.82890625 386.9015625 387.3671875 387.3703125 388.8390625 389.04140625 390.09921875 390.19140625 390.3546875 390.4114583333333 390.45078125 390.73515625 391.25546875 391.7890625 391.9225260416667 392.123046875 392.13515625 392.14453125 392.6015625 392.6953125 392.88515625 393.2125 393.32578125 393.7125 393.93671875 394.0109375 394.046875 394.259375 394.28359375 394.4953125 394.5453125 394.6875 395.0654296875 395.42578125 395.63125 395.76171875 395.809375 396.0514322916667 396.18203125 397.32734375 397.8209635416667 397.8704427083333 399.693359375 400.072265625 400.084375 400.3880208333333 400.8046875 401.23515625 401.3125 401.7203125 402.1256510416667 402.6041666666667
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: 27.837 %
Stdev: 1.583 % (5.7%)
Runs: 25 25 25 25.1 25.4 25.7 25.8 25.8 26 26 26.2 26.2 26.7 26.8 26.8 26.8 27 27 27 27.2 27.2 27.4 27.4 27.4 27.4 27.4 27.5 27.6 27.9 27.9 27.9 27.9 28 28 28.2 28.2 28.2 28.2 28.5 28.5 28.6 28.7 28.7 28.8 28.8 29 29.1 29.1 29.1 29.2 29.2 29.2 29.3 29.3 29.6 30 30.6 31 31.5 32.2

Current
Mean: 27.753 %
Stdev: 1.392 % (5.0%)
Runs: 24.2 25.1 25.4 25.4 26 26.2 26.3 26.4 26.4 26.5 26.5 26.6 26.7 26.7 26.7 26.8 26.8 26.9 27.1 27.1 27.2 27.2 27.3 27.4 27.4 27.5 27.5 27.5 27.5 27.6 27.6 27.9 27.9 27.9 28 28 28.2 28.2 28.3 28.3 28.3 28.4 28.6 28.7 28.8 28.9 28.9 28.9 29 29 29 29.3 29.5 29.6 30 30.1 30.3 30.7 31.2
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 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/11)

Meaningless Changes To Duration (6/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
Show details
Name Duration
Report typing Message sent Baseline
Mean: 505.598 ms
Stdev: 32.245 ms (6.4%)
Runs: 422.46016500145197 424.58931499905884 435.671996999532 454.99772199988365 456.9388430006802 458.984048999846 460.79276599921286 463.1539309993386 466.09834800101817 467.39457199908793 467.987671000883 471.281819999218 475.36376999877393 476.1168620008975 480.2140709999949 483.6269540004432 484.11144999973476 485.24926699884236 486.64396199956536 488.07942800037563 492.13118599914014 493.8207200001925 497.9419349990785 502.6223960015923 504.6056730002165 515.2869870010763 516.4980069994926 517.7447509989142 518.7091879993677 520.4824630003422 521.5733240004629 521.8171390015632 522.1670339982957 522.2026370000094 522.6580399982631 522.765788000077 523.3774820007384 523.7025959994644 524.0025639999658 526.8251140005887 527.1516519989818 528.0985920000821 528.5707609988749 528.7216389998794 530.4911299999803 534.0522870011628 534.3421229999512 534.3560389988124 535.191487999633 536.1645100004971 536.1925459988415 536.3987220004201 536.4857589993626 536.6147869993001 537.6984449997544 539.0994060002267 540.843708999455 540.8774830009788 542.7443450000137 551.1088870000094

Current
Mean: 503.094 ms
Stdev: 33.584 ms (6.7%)
Runs: 430.0664470009506 438.765746999532 442.9852290004492 449.84834800101817 450.04382300004363 450.625406999141 451.1217849999666 454.4294840004295 458.9176030009985 461.1023360006511 463.293293999508 463.535157000646 464.71732600033283 468.10782900080085 471.254029000178 471.3912760000676 472.35567199997604 476.66927099972963 483.55188000015914 483.95633899979293 488.6313069984317 492.59940600022674 493.31778999976814 494.8617350012064 499.09191900119185 504.50594099983573 513.6246750000864 515.3471690006554 516.7634679991752 516.8337409999222 518.7300220001489 520.265625 520.5033369995654 521.7288409993052 523.26977599971 523.4990640003234 524.271891001612 524.5795899983495 525.2946780007333 525.8672690000385 526.9274090006948 527.2350260000676 527.2858889997005 527.7781990002841 528.0664059985429 531.0960280001163 534.8385419994593 535.393717000261 535.6580400001258 535.7814539987594 536.2672929987311 536.7645270004869 537.86283400096 538.4344890005887 538.6143399998546 540.1605629995465 542.0564370006323 542.7071529999375 543.7109370008111 548.6525070015341
Report typing (CPU) Baseline
Mean: 99.113 %
Stdev: 5.503 % (5.6%)
Runs: 90.77062876741832 91.27691142640866 91.56686033689161 92.03584048087762 92.46099420915087 92.5434851944303 93.0367405853957 93.07942302855146 93.39473860895711 94.49337788978106 94.64280914916034 94.7311335854856 94.7719495671691 94.80248192176447 94.85255111879623 94.8548468709953 94.89197158185182 94.93353826720087 95.09211909072128 95.45492866374447 95.61606849176142 95.73804410835528 95.83299108155134 96.0835943576539 96.22230500155368 96.38150969524324 96.43774713468306 96.56556708581226 96.69234237845457 96.80808900014486 98.33804343926975 98.47920302436934 98.5283391325056 98.63581834978126 98.94852463727209 99.5555416072829 99.6728781650413 101.42372663435587 101.83996115962307 102.06446299749645 102.68785043208395 103.14655581556346 103.68957891415094 103.7519551701084 103.84495758827835 104.19194316988666 104.35242824042048 104.37581302637612 104.45472953873437 104.6036331287753 104.99184082654746 105.0641326734457 105.07216138602114 105.27704239829315 105.44714879688259 105.68543076382929 105.90362020289415 106.13929532562213 114.8188409288449 115.72822360807486

Current
Mean: 98.857 %
Stdev: 4.419 % (4.5%)
Runs: 90.44119299379797 91.62709360205187 91.64258610559739 91.85436961595283 92.15180271762094 92.2997601441727 93.4283863261517 93.62006580351506 93.62570923099355 93.87021374523346 94.05690209695287 94.74282777847665 95.55139649925096 95.79625469694355 95.9712512244573 96.16385323432574 96.30977833850584 96.44397207469724 96.45567658848557 96.51477071010463 96.68374272192482 96.77138959616079 96.86430416897926 96.90478486454693 96.98964907870821 97.04728320997442 97.58022277935535 97.62406649285566 97.87807634208009 98.1546375484643 98.36415946264962 98.62239552412026 99.49770067718258 99.90863165176233 99.93242939413265 100.22576462830673 100.50327906867747 100.58803444762015 100.61829855373806 100.753810039797 100.93395924297022 101.06377043163916 102.08125769806438 102.33597616952811 102.61708979195187 103.41305089297545 103.57895215381399 103.74323794503914 103.75899200784693 103.85778837654048 104.27025750915446 104.85922458982456 105.12684174297381 105.64372621729225 105.6634448114486 106.09476601050218 106.14581277467323 106.49294701082886 106.80717651214982
Report typing (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Report typing (RAM) Baseline
Mean: 453.687 MB
Stdev: 6.104 MB (1.3%)
Runs: 436.78001644736844 442.97602982954544 443.57315340909093 443.84676846590907 445.31569602272725 446.4395461309524 446.61665482954544 447.29854910714283 447.41068892045456 447.4904119318182 447.6988467261905 448.03590029761904 448.2017578125 448.2835115131579 449.3350074404762 449.33735795454544 449.4345238095238 449.5816200657895 449.6192336309524 450.03409090909093 450.13813920454544 450.38227982954544 450.84691220238096 451.7284226190476 451.7360197368421 451.91850142045456 452.0271661931818 452.11186079545456 452.7734375 452.78071732954544 453.1919642857143 454.7515980113636 455.52232142857144 456.1708984375 456.4421875 456.6064967105263 456.7205078125 456.74732730263156 456.7748766447368 456.8793174342105 457.0668174342105 457.5035342261905 458.0533854166667 458.08575148809524 458.7044921875 459.041796875 459.30057565789474 459.33573190789474 459.45535714285717 459.61348684210526 459.9547697368421 460.0106907894737 460.46875 461.189453125 461.4907483552632 461.63754111842104 462.76953125 463.98046875 464.69551809210526 465.29502467105266

Current
Mean: 451.860 MB
Stdev: 6.707 MB (1.5%)
Runs: 433.4361979166667 434.7685546875 442.59095982142856 443.39925986842104 444.3046875 444.728515625 444.7913707386364 444.82979910714283 445.33913352272725 445.3822265625 445.56044407894734 445.68306107954544 445.9986979166667 446.4459292763158 446.4625355113636 446.50513980263156 446.6793323863636 447.40909090909093 447.6553199404762 448.54403409090907 448.65049342105266 448.8815104166667 449.08309659090907 449.1854538690476 449.89328835227275 449.9293323863636 450.24502840909093 450.80941611842104 450.84463778409093 450.93501420454544 451.9254092261905 451.93768601190476 452.2890625 452.68696732954544 452.8815104166667 453.7724095394737 454.4555921052632 454.56435032894734 455.17598684210526 455.759375 456.0647615131579 456.3515625 456.701171875 457.2747395833333 457.4996279761905 457.6171875 457.7958470394737 458.01685855263156 458.2150390625 458.7544921875 458.8709161931818 459.0639391447368 459.91036184210526 460.1400390625 460.6274671052632 460.89185855263156 461.1349609375 462.89932528409093 463.2943359375 466.0849095394737

Copy link
Contributor

Performance Comparison Report 📊 (8/11)

Meaningless Changes To Duration (7/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
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: 21.786 %
Stdev: 1.093 % (5.0%)
Runs: 19.9 19.9 20 20.3 20.3 20.3 20.3 20.4 20.5 20.5 20.7 20.7 20.7 20.7 20.9 20.9 21 21.1 21.1 21.1 21.1 21.1 21.2 21.4 21.5 21.5 21.5 21.6 21.7 21.8 21.8 22 22 22 22.2 22.2 22.2 22.3 22.3 22.4 22.5 22.5 22.6 22.6 22.7 22.7 22.8 22.8 23 23 23.2 23.2 23.3 23.4 23.4 23.5 23.5 23.7 23.9

Current
Mean: 21.907 %
Stdev: 0.996 % (4.5%)
Runs: 19.9 20 20.1 20.5 20.5 20.6 20.7 20.8 20.8 20.9 21 21 21 21.1 21.1 21.1 21.1 21.2 21.3 21.4 21.5 21.5 21.7 21.7 21.7 21.7 21.8 21.8 21.8 22 22 22 22.1 22.1 22.2 22.2 22.3 22.3 22.3 22.4 22.4 22.4 22.5 22.5 22.5 22.6 22.7 22.7 22.7 22.9 22.9 22.9 23 23.4 23.4 23.8 23.8 24.1 24.1
Chat opening Chat TTI Baseline
Mean: 816.207 ms
Stdev: 37.318 ms (4.6%)
Runs: 729.1345210000873 734.1609300002456 741.394612999633 767.5063489992172 773.2048749998212 776.4942220002413 780.8406580016017 782.1642259992659 783.0124519988894 783.3050950001925 786.2067879997194 787.0583900008351 790.0015879999846 791.8310549985617 793.0517170000821 794.2116299998015 794.328451000154 795.3638920001686 795.6324060000479 797.6112469993532 802.2752689998597 806.1322840005159 806.8776859994978 806.8780929986387 809.3277589995414 809.6990150008351 823.3181160017848 825.0970059987158 825.8688559997827 825.9488120004535 826.5651450008154 832.2812099996954 833.0989589989185 833.7929290011525 834.5511480011046 842.5570069998503 843.4697680007666 844.9945880006999 847.6986090000719 847.8158780001104 848.1648360006511 850.4632169995457 853.3507899995893 855.2156980000436 863.4452720005065 866.5034999996424 867.8279219996184 869.0993649996817 878.3505860008299 884.3686939999461 885.000041000545

Current
Mean: 819.311 ms
Stdev: 44.561 ms (5.4%)
Runs: 679.030680000782 722.3508710004389 763.5430910009891 764.8164469990879 767.0294199995697 778.4357500001788 778.7476399987936 780.3667810000479 782.1001389995217 782.9027919992805 787.0002449993044 789.2468260005116 789.8529460001737 791.3393560014665 794.503824999556 795.531371999532 795.7707119993865 797.7442629989237 800.0227459985763 801.5181479994208 804.7035320010036 810.0509850010276 811.0086269993335 812.8033849988133 817.6474609989673 821.7923179995269 822.1472180001438 824.3231620006263 830.1838790010661 830.9484049994498 839.6493730004877 842.0494389999658 844.3669429998845 847.3180749993771 848.3117679990828 851.156086999923 851.5024420004338 855.2987879998982 858.1594650000334 859.1232510004193 859.8261719997972 863.4219569992274 871.1826990004629 875.1117349993438 881.5641690008342 882.2751869987696 891.124878000468 893.2087820004672 904.1401780005544
Chat opening (CPU) Baseline
Mean: 169.255 %
Stdev: 3.352 % (2.0%)
Runs: 161.2086728607831 161.52119811290132 163.57447711291417 164.17472085394127 164.37297870104794 164.72134323945713 165.0048723025495 165.16952797322608 165.78143394861183 166.2292374280299 166.2569894166023 166.29484244284686 166.315680096517 166.55372472418168 166.76467355224253 166.89402390438252 166.9819366137455 166.9877535390727 167.07349416046398 167.5082072898962 167.8145210715112 167.93383935111035 168.40841006449315 168.50191368711953 168.94684546378826 169.07636487081874 169.1993383663458 169.2818635100224 169.30212548649425 169.34274520775176 169.50257293295837 170.03754734583137 170.14704790401473 170.16669677161215 170.47031878239807 170.48556334585993 170.60923848978538 170.91770957170772 171.14149422878236 171.2729437177255 171.58163970987349 171.5945516514689 171.81124952045155 171.88034706953255 172.1100893900077 172.14065586600333 172.39094540146203 172.6123927926823 172.8455800168693 172.85378640286996 173.32728942894857 173.36555854642793 173.43101787228568 173.7972055888225 174.1082304289457 174.4069750511056 175.05812727012818 175.51166783905975

Current
Mean: 169.010 %
Stdev: 3.277 % (1.9%)
Runs: 162.51299290787836 163.13009462965147 163.40782549439024 163.42489667391146 163.93237073110535 164.31063709613323 164.46394660877453 165.51194293652728 165.78862986615565 165.8324613073585 166.014215178241 166.22536307953027 166.58183572970498 166.756093159916 166.82074362089938 166.91490695288022 167.31054506733702 167.4414152863116 167.52835756281684 167.58526472966088 167.94923432028952 168.1752988047809 168.23708650966506 168.26875214953762 168.3756102110038 168.54820717131489 168.7665310262984 168.80006628847107 168.9048474993369 168.9390425269738 169.0107932250254 169.27506979635206 169.38944429276899 169.4224303357494 169.52576243136195 169.67607603189245 169.78553800496252 170.0065847458972 170.105611993232 170.22213904198213 170.25535029039003 170.27031370101568 170.45212814946274 170.59924495410283 170.88987777201507 171.05862020268947 171.82903383810122 171.9152876091769 172.06960634107128 172.142103242511 173.28451443968208 173.41340903849687 174.0563061820231 174.1266895190958 175.4182021725967 175.81737560735112 176.00836740145675 176.07734447874262

Copy link
Contributor

Performance Comparison Report 📊 (9/11)

Meaningless Changes To Duration (8/10)

Show entries
Name Duration
App start time nativeLaunch 33.441 ms → 26.050 ms (-7.391 ms, -22.1%) 🟢
App start time appCreation 66.103 ms → 72.767 ms (+6.663 ms, +10.1%)
App start time appCreationEnd_To_contentAppeared 413.627 ms → 454.220 ms (+40.593 ms, +9.8%)
App start time contentAppeared_To_screenTTI 916.650 ms → 1005.242 ms (+88.592 ms, +9.7%)
App start time runJsBundle 301.661 ms → 324.842 ms (+23.181 ms, +7.7%)
App start time nativeLaunchEnd_To_appCreationStart 65.254 ms → 78.712 ms (+13.458 ms, +20.6%) 🟡
App start time regularAppStart 0.025 ms → 0.020 ms (-0.005 ms, -19.2%) 🟢
App start time (CPU) 154.529 % → 164.418 % (+9.889 %, +6.4%)
App start time (FPS) 60.000 FPS → 59.726 FPS (-0.274 FPS, ±0.0%)
App start time (RAM) 362.910 MB → 368.791 MB (+5.880 MB, +1.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.895 % → 28.631 % (-0.264 %, -0.9%)
Open search router TTI Load Search Options 138.033 ms → 138.060 ms (+0.028 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1257.812 ms → 1259.226 ms (+1.415 ms, ±0.0%)
Open search router TTI (CPU) 154.861 % → 154.635 % (-0.226 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 392.109 MB → 393.273 MB (+1.164 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 27.837 % → 27.753 % (-0.084 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 505.598 ms → 503.094 ms (-2.505 ms, ±0.0%)
Report typing (CPU) 99.113 % → 98.857 % (-0.256 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 453.687 MB → 451.860 MB (-1.826 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.786 % → 21.907 % (+0.120 %, +0.6%)
Chat opening Chat TTI 816.207 ms → 819.311 ms (+3.104 ms, ±0.0%)
Chat opening (CPU) 169.255 % → 169.010 % (-0.245 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 382.604 MB → 383.767 MB (+1.163 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 35.236 % → 34.709 % (-0.527 %, -1.5%)
Money request - Open Manual Tracking 145.645 ms → 150.476 ms (+4.831 ms, +3.3%)
Money request - Open Contacts 222.295 ms → 226.438 ms (+4.144 ms, +1.9%)
Money request (CPU) 181.246 % → 183.748 % (+2.502 %, +1.4%)
Money request (FPS) 58.627 FPS → 58.579 FPS (-0.049 FPS, ±0.0%)
Money request (RAM) 446.008 MB → 437.159 MB (-8.849 MB, -2.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.760 % → 43.942 % (+0.182 %, ±0.0%)
Money request - Open Create 138.279 ms → 139.016 ms (+0.736 ms, +0.5%)
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
Chat opening (RAM) Baseline
Mean: 382.604 MB
Stdev: 3.526 MB (0.9%)
Runs: 374.865625 375.015625 375.66484375 376.6984375 378.1640625 378.65625 378.67734375 378.8447265625 378.8795572916667 378.88046875 379.02890625 379.54921875 379.73359375 380.0375 380.53515625 380.56875 380.98125 381.24375 381.52421875 381.52734375 381.5546875 381.67890625 381.7578125 381.84375 381.94296875 382.02421875 382.1046875 382.17265625 382.17421875 382.34453125 382.35234375 382.4953125 383.07578125 383.109375 383.1234375 383.2890625 383.48125 383.5265625 384.04140625 384.2 384.2515625 384.53515625 384.66328125 384.82265625 384.959375 385.10859375 385.22265625 385.34765625 385.7890625 386.65625 386.9329427083333 387.07578125 387.8265625 387.92109375 388.3453125 389.5299479166667 390.29375 390.4046875

Current
Mean: 383.767 MB
Stdev: 4.718 MB (1.2%)
Runs: 373.04609375 374.3265625 374.62109375 374.6875 375.21875 375.87578125 375.884375 377.11171875 378.9921875 379.0234375 379.034375 379.546875 379.94921875 380.11640625 380.50625 380.6725260416667 380.846875 381.7838541666667 381.98203125 382.18203125 382.36640625 382.5670572916667 383.31875 383.38203125 383.6015625 384.00625 384.1203125 384.2875 384.428125 384.95703125 385.03671875 385.1575520833333 385.5110677083333 385.58984375 385.69453125 385.71953125 386.034375 386.2234375 386.48828125 386.5359375 387.3404947916667 387.571875 387.58046875 387.84375 387.8484375 387.89453125 388.0734375 388.09453125 388.31171875 388.36953125 388.5826822916667 389.275 389.40078125 389.49609375 389.5852864583333 390.47109375 390.90703125 391.42578125
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: 35.236 %
Stdev: 1.692 % (4.8%)
Runs: 30.8 31.4 31.5 31.5 32.3 33.3 33.6 33.8 33.8 33.8 33.9 34 34 34.2 34.2 34.3 34.4 34.4 34.6 34.7 34.7 34.8 34.9 35 35.1 35.2 35.3 35.3 35.6 35.6 35.6 35.9 35.9 35.9 36 36 36 36.1 36.2 36.2 36.4 36.5 36.6 36.6 36.7 36.7 36.7 36.8 36.8 37.2 37.2 37.6 37.6 37.7 38 38.3

Current
Mean: 34.709 %
Stdev: 1.567 % (4.5%)
Runs: 31.2 31.6 32.3 32.5 32.5 32.5 32.6 32.7 32.7 33.2 33.3 33.4 33.4 33.5 33.5 33.5 33.5 33.8 34 34.1 34.2 34.3 34.3 34.4 34.4 34.5 34.6 34.7 34.8 34.9 34.9 35 35.1 35.1 35.2 35.2 35.2 35.2 35.3 35.4 35.4 35.5 35.5 35.7 35.9 35.9 36 36 36.3 36.4 36.5 36.6 36.7 37 37.3 37.5 38.1 38.3

Copy link
Contributor

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

francoisl added a commit that referenced this pull request May 12, 2025
Revert "Merge pull request #60277 from FitseTLT/fix-implement-custom-fields"

This reverts commit e7cb5a5, reversing
changes made to 149074c.
francoisl added a commit that referenced this pull request May 12, 2025
Revert "Merge pull request #60277 from FitseTLT/fix-implement-custom-fields"

This reverts commit e7cb5a5, reversing
changes made to 149074c.
@francoisl
Copy link
Contributor

Sounds like a false positive, I reran the E2E tests in a revert PR and it gave higher results for the App start time TTI

https://github.com/Expensify/App/actions/runs/14981705901/job/42088935414#step:19:61

| App start time TTI | Baseline
Mean: 1806.061 ms
Stdev: 109.032 ms (6.0%)
Runs: 1385.0150020001456 1586.8586200000718 1587.2864140002057 1638.5740100000985 1652.332233000081 1653.7204100000672 1672.3218789999373 1682.2304949997924 1683.233388000168 1717.0625430000946 1724.7954339999706 1726.2901730001904 1735.1031969999894 1769.4043379998766 1793.3316609999165 1795.4911230001599 1796.4834280000068 1807.2480720002204 1808.650446999818 1816.4518820000812 1818.4086699998006 1820.9593000002205 1821.3191089998 1826.865772999823 1829.089767999947 1829.3865149999037 1829.7379470001906 1841.0284930001944 1848.7222119998187 1849.13233199995 1850.7645080001093 1864.937797000166 1865.4994830000214 1869.7222179998644 1870.486574999988 1875.4956720001064 1880.0136179998517 1881.872841999866 1882.1009809998795 1883.4915720000863 1887.045880000107 1888.357658999972 1890.211891000159 1895.0818759999238 1905.9609929998405 1909.728066000156 1916.2805010001175 1922.410379000008 1931.4765670001507 1943.4664150001481 1948.178772999905

Current
Mean: 1792.761 ms
Stdev: 135.833 ms (7.6%)
Runs: 1374.0396170001477 1418.181886000093 1425.094031999819 1595.2523079998791 1596.2519490001723 1603.8658230002038 1607.0511449999176 1635.3583019999787 1658.884674999863 1689.3788519999944 1690.503539999947 1707.899122999981 1713.2444460000843 1733.4234319999814 1754.9958580001257 1758.9489569999278 1771.290585000068 1784.4447789997794 1785.9803079999983 1793.14930499997 1796.2921339999884 1811.3734599999152 1813.7617339999415 1815.5549909998663 1831.6433419999667 1837.3400110001676 1839.8146489998326 1839.950585000217 1850.8082190002315 1853.2954389997758 1854.4928379999474 1856.6241560000926 1859.4432169999927 1859.7385840001516 1861.9489049999975 1866.781357999891 1872.935105000157 1872.9438970000483 1879.203714999836 1880.13884099992 1884.9889890002087 1891.2974120001309 1891.3601609999314 1900.5384410000406 1903.3611929998733 1905.30743899988 1905.3594100000337 1910.8154440000653 1929.1163289998658 1931.2453370001167 1957.6235239999369 1976.6138089997694 1977.3648100001737 |

@francoisl francoisl removed the DeployBlockerCash This issue or pull request should block deployment label May 12, 2025
Copy link
Contributor

🚀 Deployed to staging by https://github.com/francoisl in version: 9.1.45-0 🚀

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

Copy link
Contributor

🚀 Deployed to staging by https://github.com/francoisl in version: 9.1.45-0 🚀

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

Copy link
Contributor

🚀 Deployed to production by https://github.com/francoisl in version: 9.1.45-21 🚀

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