Skip to content
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

Bank account verification modal info #49536

Merged
merged 12 commits into from
Oct 30, 2024

Conversation

koko57
Copy link
Contributor

@koko57 koko57 commented Sep 20, 2024

Details

Fixed Issues

$ #49472
PROPOSAL:

Tests

(if you have already a workspace with Expensify Card enabled and you can issue a new card there, you can skip steps 1-4)

  1. Go to a workspace, enable Expensify Card in More Features
  2. Go to Expensify Card, click Issue New Card, add a new bank account if you don't have any
  3. Choose the bank account from the list
  4. After successful verification you should the Empty State screen
  5. Repeat steps 1-3, choose the same bank account as in the previous workspace
  6. You should the Empty State screen, but with different copier (refer to this comment) and the buttons "Issue Card" and "Settings" should not be displayed.
  • Verify that no errors appear in the JS console

Offline tests

QA Steps

(if you have already a workspace with Expensify Card enabled and you can issue a new card there, you can skip steps 1-4)

  1. Go to a workspace, enable Expensify Card in More Features
  2. Go to Expensify Card, click Issue New Card, add a new bank account if you don't have any
  3. Choose the bank account from the list
  4. After successful verification you should the Empty State screen
  5. Repeat steps 1-3, choose the same bank account as in the previous workspace
  6. You should the Empty State screen, but with different copier (refer to this comment) and the buttons "Issue Card" and "Settings" should not be displayed
  • 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 / Chrome
    • iOS / native
    • iOS / 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 the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • 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 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
    • If we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes
      • 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(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.
  • 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 author checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native

Simulator Screenshot - iPhone 15 Pro - 2024-10-25 at 19 38 19

iOS: mWeb Safari

Simulator Screenshot - iPhone 15 Pro - 2024-10-25 at 19 39 56

MacOS: Chrome / Safari Screenshot 2024-09-20 at 20 18 01 Screenshot 2024-09-20 at 20 13 13
MacOS: Desktop Screenshot 2024-10-25 at 19 30 14

@mountiny
Copy link
Contributor

Shared the instructions for how to create the verifying bank account with you in our dm

@koko57 koko57 marked this pull request as ready for review October 25, 2024 12:41
@koko57 koko57 requested a review from a team as a code owner October 25, 2024 12:41
@koko57 koko57 requested a review from mountiny October 25, 2024 12:41
@melvin-bot melvin-bot bot removed the request for review from a team October 25, 2024 12:41
Copy link

melvin-bot bot commented Oct 25, 2024

@dubielzyk-expensify @DylanDylann One of you needs to 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]

@dubielzyk-expensify
Copy link
Contributor

This is my bad (as I did the mocks), but I wonder when I see it now if we should reduce the height of the illustration/video above "Verification in progress". Our empty states have 220px height, but that feels too small though I see that in Figma @shawnborton commented on using the empty state component here and change the illustration like so:

image

Keen to hear if @Expensify/design agrees.

@koko57
Copy link
Contributor Author

koko57 commented Oct 28, 2024

@dubielzyk-expensify ok, so please confirm if I should make these changes

@shawnborton
Copy link
Contributor

shawnborton commented Oct 28, 2024

I would love to stay consistent with other empty states. I think they are all 220px in height, right?

@dubielzyk-expensify
Copy link
Contributor

dubielzyk-expensify commented Oct 28, 2024 via email

@koko57
Copy link
Contributor Author

koko57 commented Oct 28, 2024

@dubielzyk-expensify @shawnborton ok, so for the Verification state we're changing the illustration for this one:
Screenshot 2024-10-28 at 17 37 34
and the height should be 220px.

Should the height of the illustration also change to 220px for the empty card state modal?
It'll look like this after the changes:
Screenshot 2024-10-28 at 17 36 49

@dubielzyk-expensify
Copy link
Contributor

dubielzyk-expensify commented Oct 28, 2024

Might have to adjust, but the container should be 220px. The illustration height should be 162px according to Figma :)
CleanShot 2024-10-28 at 20 42 49@2x

I think we have the illustration already checked in too

@koko57
Copy link
Contributor Author

koko57 commented Oct 28, 2024

Can we use the Expensify Cards illustration we're already using? CleanShot 2024-10-28 at 20 46 25@2x

So should I change this illustration for verified empty state for this one?

@shawnborton
Copy link
Contributor

I don't think we want to change the illustration personally, I think if the verification is in process, we want to use what Jon has here.

cc @Expensify/design for more thoughts though!

@koko57
Copy link
Contributor Author

koko57 commented Oct 28, 2024

ok, so I will change only the Verification Modal image for now. If you decide to do some changes to the Empty State modal just ping me! 😊

@shawnborton
Copy link
Contributor

Nice. And does that illustration already exist in the repo, or do you need us to export any assets?

@dannymcclain
Copy link
Contributor

Totally agree Shawn!

@koko57
Copy link
Contributor Author

koko57 commented Oct 28, 2024

Screenshot 2024-10-28 at 21 15 36 Screenshot 2024-10-28 at 21 15 24

already applied

@shawnborton
Copy link
Contributor

Lovely!

@dubielzyk-expensify
Copy link
Contributor

Looks great!

@koko57
Copy link
Contributor Author

koko57 commented Oct 29, 2024

@DylanDylann ready for review

@DylanDylann
Copy link
Contributor

I will try to complete my reviewing for these issues on Wed

@koko57
Copy link
Contributor Author

koko57 commented Oct 30, 2024

@DylanDylann
Copy link
Contributor

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 tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • 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.js 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.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native Screenshot 2024-10-30 at 13 31 16
Android: mWeb Chrome Screenshot 2024-10-30 at 12 33 07
iOS: Native Screenshot 2024-10-30 at 13 31 10
iOS: mWeb Safari Screenshot 2024-10-30 at 12 32 57
MacOS: Chrome / Safari Screenshot 2024-10-30 at 12 29 14
MacOS: Desktop Screenshot 2024-10-30 at 12 34 09

@DylanDylann
Copy link
Contributor

Copy link
Contributor

@mountiny mountiny left a comment

Choose a reason for hiding this comment

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

Thanks!

@mountiny mountiny merged commit 9c2d614 into Expensify:main Oct 30, 2024
17 of 22 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 Oct 30, 2024
Copy link
Contributor

Performance Comparison Report 📊

Significant Changes To Duration

Name Duration
Open search router TTI Open Search Router TTI 498.640 ms → 643.715 ms (+145.075 ms, +29.1%) 🔴
Show details
Name Duration
Open search router TTI Open Search Router TTI Baseline
Mean: 498.640 ms
Stdev: 61.274 ms (12.3%)
Runs: 377.5723880007863 378.79117899388075 391.3725180029869 391.78812699764967 394.6515710055828 397.4743250012398 407.8910719975829 411.2725830003619 412.434001006186 415.1363120004535 423.3773599937558 425.569255001843 430.2160639986396 443.2786049991846 450.7601730003953 459.6951900050044 472.99165900051594 475.84073900431395 476.32853200286627 476.91398100554943 483.41605599969625 484.20837400108576 487.4056399986148 491.96915700286627 497.8514400050044 498.65515200048685 499.2569179981947 500.02087400108576 500.2497159987688 501.74597200006247 503.3063570037484 507.465821005404 507.78645899891853 509.98754899948835 511.04252099990845 520.6935220062733 527.2672119960189 527.7065839990973 528.7182219997048 535.7552089989185 536.3261730000377 537.0365399941802 538.9937340021133 549.1984860002995 551.6463629975915 552.5065109953284 554.5542400032282 556.1164960041642 562.2704270035028 564.2386069968343 564.417358994484 564.4731860011816 564.740031003952 567.5380459949374 569.9717610031366 582.1665450036526 582.3282470032573 586.9056399986148 597.2512210011482 597.8485930040479

Current
Mean: 643.715 ms
Stdev: 20.742 ms (3.2%)
Runs: 583.2162270024419 602.022380001843 614.2406410053372 615.44987000525 617.193441003561 618.219563998282 619.3846430033445 619.6492109969258 619.7463380023837 620.5734869986773 621.1062010005116 621.9017750024796 622.0192470028996 622.3404130041599 622.6465659961104 627.1257320046425 629.4742839932442 629.6434329971671 634.0046389997005 635.4951579943299 636.2060959935188 636.2679850012064 637.5999759957194 637.6619069948792 640.9239909946918 642.2864589989185 643.540689997375 644.8958740010858 645.0546880066395 646.103800997138 647.453694999218 649.1572270020843 649.6433519944549 649.6531580016017 649.7404789999127 649.7959400042892 650.9473479986191 651.3203129991889 651.3832189962268 653.3391520008445 654.0917970016599 654.8901370018721 655.0357260033488 655.9897459968925 656.1506350040436 658.5816249996424 659.0521240010858 661.147624000907 661.2979340031743 663.2202150002122 665.9801440015435 669.4008390009403 669.4190270006657 670.5372719988227 672.1526289954782 672.4382330030203 672.7268880009651 677.8003740012646 682.2178149968386 682.3539630025625

Meaningless Changes To Duration

Show entries
Name Duration
App start time nativeLaunch 31.780 ms → 25.000 ms (-6.780 ms, -21.3%) 🟢
App start time nativeLaunchEnd_To_appCreationStart 48.607 ms → 66.467 ms (+17.860 ms, +36.7%) 🟡
App start time appCreationEnd_To_contentAppeared 506.586 ms → 547.772 ms (+41.186 ms, +8.1%)
App start time appCreation 60.183 ms → 66.133 ms (+5.950 ms, +9.9%)
App start time contentAppeared_To_screenTTI 517.156 ms → 514.117 ms (-3.038 ms, -0.6%)
App start time runJsBundle 365.644 ms → 391.617 ms (+25.973 ms, +7.1%)
App start time TTI 1167.108 ms → 1226.548 ms (+59.440 ms, +5.1%)
App start time regularAppStart 0.019 ms → 0.019 ms (+0.000 ms, +1.1%)
App start time (CPU) 148.175 % → 150.700 % (+2.524 %, +1.7%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 363.474 MB → 360.402 MB (-3.072 MB, -0.8%)
App start time (CPU/JS) 79.027 % → 80.703 % (+1.677 %, +2.1%)
App start time (CPU/UI) 27.342 % → 27.222 % (-0.120 %, ±0.0%)
Open search router TTI Load Search Options 111.172 ms → 99.725 ms (-11.447 ms, -10.3%)
Open search router TTI (CPU) 132.508 % → 135.571 % (+3.063 %, +2.3%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 364.021 MB → 369.399 MB (+5.378 MB, +1.5%)
Open search router TTI (CPU/JS) 72.259 % → 76.246 % (+3.986 %, +5.5%)
Open search router TTI (CPU/UI) 25.505 % → 24.130 % (-1.375 %, -5.4%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 391.835 ms → 390.494 ms (-1.341 ms, ±0.0%)
Report typing (CPU) 99.563 % → 100.167 % (+0.604 %, +0.6%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 502.507 MB → 499.460 MB (-3.047 MB, -0.6%)
Report typing (CPU/JS) 51.067 % → 51.113 % (+0.047 %, ±0.0%)
Report typing (CPU/UI) 22.042 % → 22.435 % (+0.392 %, +1.8%)
Chat opening Chat opening 134.015 ms → 136.910 ms (+2.895 ms, +2.2%)
Chat opening Chat TTI 391.943 ms → 395.621 ms (+3.678 ms, +0.9%)
Chat opening (CPU) 136.839 % → 136.849 % (+0.010 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 370.798 MB → 372.502 MB (+1.704 MB, ±0.0%)
Chat opening (CPU/JS) 72.176 % → 72.881 % (+0.705 %, +1.0%)
Chat opening (CPU/UI) 25.397 % → 25.724 % (+0.327 %, +1.3%)
Linking (CPU) 143.539 % → 144.543 % (+1.004 %, +0.7%)
Linking (FPS) 60.000 FPS → 60.000 FPS
Linking (RAM) 416.075 MB → 417.940 MB (+1.865 MB, ±0.0%)
Linking (CPU/JS) 80.147 % → 80.708 % (+0.561 %, +0.7%)
Linking (CPU/UI) 25.195 % → 25.446 % (+0.251 %, +1.0%)
Linking 211.326 ms → 222.864 ms (+11.538 ms, +5.5%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 31.780 ms
Stdev: 2.477 ms (7.8%)
Runs: 28 28 28 28 28 28 29 29 29 29 29 30 30 30 30 30 30 30 31 31 31 31 31 31 31 31 31 31 31 31 32 32 32 32 32 32 32 32 32 33 33 33 33 33 33 33 34 34 34 34 35 35 35 36 36 36 37 37 38

Current
Mean: 25.000 ms
Stdev: 2.136 ms (8.5%)
Runs: 21 22 22 22 22 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 25 25 25 25 26 26 26 26 26 27 27 27 27 28 28 29 29 29 29 30 31
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 48.607 ms
Stdev: 6.058 ms (12.5%)
Runs: 37 39 40 40 40 42 42 42 42 43 43 44 44 44 44 45 45 45 46 46 46 46 46 47 47 48 48 48 48 48 49 49 49 50 50 50 50 51 51 51 51 52 52 53 53 54 54 54 55 55 57 57 59 61 64 66

Current
Mean: 66.467 ms
Stdev: 7.365 ms (11.1%)
Runs: 54 56 57 57 57 58 58 58 59 59 59 59 60 60 60 61 61 61 61 61 61 62 63 63 64 64 65 65 65 65 66 66 66 67 67 67 67 68 68 69 70 70 71 72 72 72 73 73 73 74 74 74 75 76 76 78 81 81 83 86
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 506.586 ms
Stdev: 24.074 ms (4.8%)
Runs: 455 462 462 463 468 470 472 473 479 481 483 488 489 490 491 491 495 496 496 496 499 500 500 500 502 503 505 506 507 507 510 510 511 511 513 516 517 517 518 519 521 521 522 524 526 526 526 531 533 535 537 538 539 541 544 546 549 552

Current
Mean: 547.772 ms
Stdev: 24.623 ms (4.5%)
Runs: 491 493 494 499 511 513 517 518 519 521 524 529 529 531 532 535 536 537 538 539 544 545 548 549 550 550 550 552 552 553 553 554 555 556 557 557 558 558 559 560 561 562 562 566 566 566 567 567 571 573 573 579 582 584 587 588 603
App start time appCreation Baseline
Mean: 60.183 ms
Stdev: 7.091 ms (11.8%)
Runs: 49 50 51 52 52 53 53 53 54 54 54 54 54 55 55 55 55 55 56 56 56 56 56 57 57 57 57 57 58 58 58 59 59 59 59 60 60 61 61 61 62 62 64 64 65 65 66 66 67 67 67 68 70 71 72 74 75 76 77 77

Current
Mean: 66.133 ms
Stdev: 6.576 ms (9.9%)
Runs: 55 56 57 57 58 59 59 59 59 60 60 60 60 61 61 61 61 61 62 62 62 62 63 63 63 64 64 64 64 64 65 65 65 66 67 67 68 68 68 68 68 69 69 70 71 72 72 72 73 74 74 74 75 75 76 78 78 79 80 81
App start time contentAppeared_To_screenTTI Baseline
Mean: 517.156 ms
Stdev: 25.113 ms (4.9%)
Runs: 456.63761399686337 464.2840059995651 467.08878199756145 472.3681339994073 480.06893499940634 483.8506869971752 484.8793850019574 489.99136800318956 493.0983960032463 496.57235199958086 496.6228450015187 497.95655900239944 498.5603329986334 498.9737090021372 499.09390100091696 499.853656001389 501.38490399718285 503.836332000792 504.10367199778557 507.3276759982109 507.5865250006318 507.6097699999809 508.20360700041056 508.3575770035386 510.70337300002575 512.9181030020118 513.0534069985151 514.3084399998188 520.109275996685 520.4254600033164 521.3093580007553 521.6889780014753 522.2731959968805 522.5636079981923 523.0521159991622 523.5234820023179 524.5327859967947 525.4278549998999 525.9932980015874 530.6785179972649 531.8292019963264 533.819495998323 534.6817189976573 534.7596089988947 536.2717429995537 537.0910229980946 537.5247350037098 538.7292559966445 539.7078879997134 539.9344210028648 544.61391299963 544.9814710021019 545.1197329983115 546.9147410020232 551.0415939986706 554.1129010021687 554.966920003295 564.8202150017023 580.3926310017705

Current
Mean: 514.117 ms
Stdev: 21.040 ms (4.1%)
Runs: 463.86420699954033 472.8505500033498 482.31015499681234 486.1807250007987 490.64889600127935 491.3768429979682 492.3667659983039 492.40756200253963 493.134020999074 493.30516900122166 495.8441530019045 495.89571399986744 495.9299210011959 498.7115089967847 499.79659800231457 502.1220960021019 504.07169699668884 504.6479939967394 505.8385389968753 506.06394699960947 506.47031699866056 506.6094970032573 506.6810090020299 506.9347909986973 508.4992249980569 508.62296199798584 510.3301320001483 510.54460199922323 510.96387399733067 511.646899998188 511.71028599888086 511.9589269980788 512.3669210001826 514.3052489981055 514.8138990029693 516.2210209965706 517.4356599971652 520.1517570018768 520.5903799980879 523.9882699996233 523.9979560002685 529.1401289999485 529.9845879971981 530.5901399999857 531.2271860018373 532.3304179981351 533.7398549988866 537.2959669977427 538.4761900007725 540.07035099715 542.1666830033064 543.9289679974318 548.6524669975042 549.5155899971724 550.9829870015383 554.3081090003252 570.0764560028911
App start time runJsBundle Baseline
Mean: 365.644 ms
Stdev: 20.676 ms (5.7%)
Runs: 322 324 327 331 333 336 337 338 343 343 345 345 345 346 347 348 350 351 352 353 354 354 360 364 366 366 367 370 370 370 371 372 373 373 375 375 376 378 379 380 380 380 381 381 383 383 383 384 384 387 388 389 391 392 392 394 395 395 402

Current
Mean: 391.617 ms
Stdev: 23.413 ms (6.0%)
Runs: 335 343 348 351 354 355 357 357 360 363 364 371 372 372 372 373 376 376 376 382 383 384 387 389 390 392 392 394 396 398 401 402 402 403 404 404 405 406 406 406 407 407 408 408 409 409 411 412 413 415 415 415 417 417 418 418 418 424 425 430
App start time TTI Baseline
Mean: 1167.108 ms
Stdev: 42.897 ms (3.7%)
Runs: 1068.2840059995651 1085.6228450015187 1085.8506869971752 1096.3681339994073 1097.0887819975615 1104.0983960032463 1108.6376139968634 1114.8793850019574 1121.5603329986334 1121.9913680031896 1123.5723519995809 1125.0689349994063 1132.853656001389 1137.0521159991622 1142.093901000917 1143.2717429995537 1143.3575770035386 1143.981471002102 1145.4254600033164 1147.9565590023994 1148.109275996685 1148.327675998211 1154.6889780014753 1155.9737090021372 1159.609769999981 1161.3849039971828 1162.7033730000257 1162.836332000792 1164.2036070004106 1164.9181030020118 1165.523482002318 1169.1036719977856 1172.2927260026336 1180.7292559966445 1182.0534069985151 1183.0910229980946 1183.1197329983115 1183.2731959968805 1183.61391299963 1185.4278549998999 1188.8292019963264 1189.8202150017023 1192.3084399998188 1192.9932980015874 1196.9344210028648 1198.6785179972649 1199.5865250006318 1203.7078879997134 1205.5247350037098 1205.5636079981923 1206.7596089988947 1211.1129010021687 1211.3093580007553 1221.0415939986706 1222.5327859967947 1223.819495998323 1237.6817189976573 1239.966920003295 1255.9147410020232 1262.3926310017705

Current
Mean: 1226.548 ms
Stdev: 36.359 ms (3.0%)
Runs: 1149.3052489981055 1151.8385389968753 1160.3101549968123 1173.929921001196 1174.134020999074 1177.122096002102 1183.8138990029693 1185.1807250007987 1185.8441530019045 1186.3301320001483 1186.4075620025396 1191.8957139998674 1191.9882699996233 1199.366765998304 1206.7115089967847 1208.4356599971652 1209.8642069995403 1210.3051690012217 1214.6488960012794 1215.984587997198 1217.9347909986973 1219.0639469996095 1219.0716969966888 1219.3669210001826 1219.6229619979858 1219.9979560002685 1222.7102859988809 1222.9589269980788 1223.1401289999485 1223.5446019992232 1227.7965980023146 1229.5903799980879 1231.2183500006795 1231.6094970032573 1234.9289679974318 1235.2210209965706 1235.330417998135 1236.7398549988866 1237.9638739973307 1238.4703169986606 1238.68100900203 1240.2959669977427 1243.646899998188 1248.5901399999857 1253.1666830033064 1257.07035099715 1258.1517570018768 1260.2271860018373 1260.4761900007725 1266.5155899971724 1270.6479939967394 1276.3644429966807 1282.499224998057 1284.3081090003252 1289.6524669975042 1297.9829870015383 1299.7259059995413 1302.076456002891
App start time regularAppStart Baseline
Mean: 0.019 ms
Stdev: 0.001 ms (4.9%)
Runs: 0.016561001539230347 0.017090000212192535 0.017538003623485565 0.017577998340129852 0.017618998885154724 0.017822004854679108 0.017862997949123383 0.017903000116348267 0.01794400066137314 0.01798500120639801 0.01798500120639801 0.018026001751422882 0.01810699701309204 0.01810699701309204 0.01818900555372238 0.01827000081539154 0.01827000081539154 0.018352001905441284 0.01839199662208557 0.018432997167110443 0.01843300461769104 0.0185139998793602 0.018594995141029358 0.01863599568605423 0.0186769962310791 0.018717005848884583 0.018717005848884583 0.018758997321128845 0.01879899948835373 0.0188400000333786 0.018919996917247772 0.01892099529504776 0.01896100491285324 0.01896200329065323 0.019002005457878113 0.01912499964237213 0.019165001809597015 0.019204996526241302 0.01920599490404129 0.019245997071266174 0.01924700289964676 0.019327998161315918 0.019368000328540802 0.01940999925136566 0.01940999925136566 0.019450001418590546 0.019491001963615417 0.019530996680259705 0.01973499357700348 0.019937999546527863 0.02001899480819702 0.020100995898246765 0.02034500241279602 0.020427003502845764 0.02050800621509552 0.02063000202178955 0.020792998373508453 0.02087400108575821

Current
Mean: 0.019 ms
Stdev: 0.001 ms (6.2%)
Runs: 0.01672399789094925 0.01700800657272339 0.017129994928836823 0.017292998731136322 0.017374999821186066 0.01741500198841095 0.017455995082855225 0.017618998885154724 0.017700999975204468 0.017741002142429352 0.017782002687454224 0.01782199740409851 0.017822004854679108 0.017862997949123383 0.018026001751422882 0.018107004463672638 0.018187999725341797 0.01822900027036667 0.018269002437591553 0.0185139998793602 0.01855500042438507 0.018595002591609955 0.018636003136634827 0.018717996776103973 0.018758006393909454 0.01879899948835373 0.018960997462272644 0.019002005457878113 0.019043006002902985 0.01908300071954727 0.01908399909734726 0.019124001264572144 0.019286997616291046 0.019286997616291046 0.019328005611896515 0.019612997770309448 0.019652999937534332 0.019652999937534332 0.019652999937534332 0.019694000482559204 0.019694000482559204 0.01973499357700348 0.01977500319480896 0.019816003739833832 0.019856996834278107 0.019898004829883575 0.019979000091552734 0.020100995898246765 0.020142003893852234 0.02022300660610199 0.020263999700546265 0.020426996052265167 0.02058900147676468 0.020671002566814423 0.020791999995708466 0.02087400108575821 0.020997002720832825 0.021036997437477112 0.02107800543308258 0.021646998822689056
App start time (CPU) Baseline
Mean: 148.175 %
Stdev: 6.098 % (4.1%)
Runs: 134.23686207550756 134.83092985626385 136.38888888888889 136.66564508777722 137.70119521912355 138.84383414956778 140.39903378611538 141.39117391459632 141.6296032734389 141.64806547619048 142 142.97285949679957 143.31048489464337 143.77955690845417 144.42231075697217 144.57154709538054 144.64299018512207 144.71057884231547 145.64645163342558 146.6281363204175 146.659437031449 146.7065868263474 146.73705179282868 146.91515429208926 147.00907055234634 147.32539682539684 147.42632612966602 147.7408906882591 147.76073571327342 147.91097541378758 148.28310276679846 148.54553840526128 148.74586473255337 149.1718943066249 149.34742840363018 149.70059880239526 150.23012077427038 150.69860279441124 150.87225548902202 150.88223552894218 151.5256339909823 151.53475751301843 151.68829722937937 152.52363798299825 152.69461077844323 152.7490039840638 152.75298804780883 154.077387393887 154.12556124707524 154.4186557185487 154.6906187624752 154.94661978647918 155.17793138760882 155.68862275449112 155.9510723390323 156.7370517928287 157.02506273832418 158.1843599756046 158.38955823293176 160.54146686706275

Current
Mean: 150.700 %
Stdev: 5.737 % (3.8%)
Runs: 137.17271339673596 140.6112078631582 140.6171720304412 140.76095617529887 141.88622754491024 141.8982035928144 141.93869043801706 142.13462123161122 144.18187434654507 144.40662546663745 144.58818627353722 144.71057884231547 145.47650417215638 146.1719418306245 146.52169764057552 146.70658682634738 147.52367774411348 147.59524775150902 147.73504720663865 148.44877344877347 149.15472119139446 149.42002442002442 149.44663357182267 149.575351289453 149.6743486973948 149.93532882498064 150.45103585352803 151.56884778286815 151.6198372485798 151.62151394422315 151.65526934297094 151.82035928143716 152.26521416891183 152.47229326513215 152.49610594948305 152.5560640104149 152.58306915580602 152.60686782964018 152.94403703631662 152.971281207834 154.08339946612807 154.47982009705285 155.08621868103975 155.2592261449597 155.5148020983474 155.68862275449115 155.75697211155384 156.6866267465071 156.6866267465071 156.97428672067628 157.179682465288 157.4390696324016 157.55143100253684 157.5633593371028 157.62549800796822 158.00177429958734 158.6239286133616 159.86826347305401 163.28773863803218
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

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
App start time (RAM) Baseline
Mean: 363.474 MB
Stdev: 3.254 MB (0.9%)
Runs: 356.240234375 356.546875 356.787109375 356.8671875 357.62109375 358.392578125 358.4765625 358.724609375 358.78515625 359.357421875 360.248046875 360.373046875 361.025390625 361.36328125 361.3671875 361.99609375 362.109375 362.185546875 362.365234375 362.58984375 362.64453125 362.69140625 362.853515625 362.892578125 363.376953125 363.501953125 363.716796875 363.87109375 363.93359375 364.05078125 364.109375 364.12890625 364.1953125 364.26953125 364.51171875 364.53515625 364.603515625 364.822265625 364.89453125 365.1015625 365.44921875 365.79296875 365.857421875 365.884765625 365.927734375 365.9921875 366.072265625 366.142578125 366.412109375 366.658203125 366.830078125 366.951171875 367.009765625 367.24609375 367.373046875 367.498046875 367.671875 367.923828125 367.953125 369.650390625

Current
Mean: 360.402 MB
Stdev: 7.640 MB (2.1%)
Runs: 343.3046875 343.99609375 344.4140625 347.39453125 348.435546875 348.58984375 349.75 350.2734375 350.455078125 350.55859375 350.580078125 353.73046875 354.228515625 354.458984375 354.607421875 355.330078125 355.931640625 356.72265625 357.20703125 357.5078125 357.939453125 357.9921875 358.107421875 358.466796875 358.8046875 360.353515625 360.630859375 360.734375 361.40625 361.94921875 362.021484375 362.1640625 362.580078125 362.62890625 362.78125 362.873046875 363.119140625 363.919921875 364.166015625 364.6875 364.998046875 365.857421875 366.232421875 366.35546875 366.478515625 366.728515625 366.763671875 366.982421875 367.943359375 368.48046875 368.673828125 369.158203125 369.3828125 369.404296875 369.462890625 369.869140625 370.248046875 371.919921875 371.978515625 372.37890625
App start time (CPU/JS) Baseline
Mean: 79.027 %
Stdev: 3.067 % (3.9%)
Runs: 71.8 72.8 73.3 73.5 74.8 75.4 75.5 75.7 75.8 75.9 75.9 76.4 76.5 76.8 76.8 76.8 76.9 77.3 77.4 77.7 77.8 78 78.2 78.2 78.4 78.6 78.7 78.8 78.8 78.8 78.8 79 79.2 79.3 79.7 79.8 80 80.2 80.5 80.6 80.8 80.8 81.1 81.2 81.2 81.6 81.7 81.8 81.8 81.8 81.9 81.9 82 82.4 82.7 82.8 83.1 84.2 84.6 87.8

Current
Mean: 80.703 %
Stdev: 2.839 % (3.5%)
Runs: 73.9 74.3 75.2 76 76.7 76.8 76.9 77.1 77.3 78.1 78.2 78.3 78.8 78.9 78.9 78.9 79.1 79.2 79.3 79.4 79.6 79.8 79.8 79.8 79.8 79.8 79.8 80.1 80.4 80.6 80.8 81 81 81.1 81.7 81.8 81.8 81.9 81.9 81.9 82.1 82.4 82.7 82.8 82.8 82.9 83.1 83.1 83.3 83.8 83.8 84 84 84.5 84.7 84.8 85.1 85.3 85.6 85.7
App start time (CPU/UI) Baseline
Mean: 27.342 %
Stdev: 1.894 % (6.9%)
Runs: 22.7 23.9 24.8 24.9 24.9 24.9 25 25.6 25.6 25.6 25.6 25.7 25.8 25.8 25.9 25.9 25.9 26 26 26 26.4 26.7 26.7 26.8 26.8 26.9 26.9 26.9 26.9 27 27 27 27.4 27.6 27.7 27.7 27.8 27.9 28 28.2 28.2 28.5 28.6 28.6 28.8 28.8 28.9 28.9 28.9 29 29 29 29.7 29.8 29.9 29.9 30 31.1 32 32.1

Current
Mean: 27.222 %
Stdev: 1.822 % (6.7%)
Runs: 22.9 22.9 23 24 24.9 24.9 25 25.1 25.7 25.7 25.8 25.9 25.9 25.9 25.9 25.9 25.9 26 26 26.6 26.7 26.7 26.7 26.9 26.9 27 27 27 27 27.3 27.5 27.6 27.6 27.6 27.7 27.8 27.9 27.9 27.9 28 28 28.6 28.7 28.7 28.7 28.8 28.9 28.9 28.9 28.9 29 29.5 29.7 29.8 29.8 29.8 30 30.3 30.5
Open search router TTI Load Search Options Baseline
Mean: 111.172 ms
Stdev: 8.252 ms (7.4%)
Runs: 93.73628800362349 95.02038600295782 97.64689199626446 98.92163100093603 99.62146000564098 99.65283200144768 100.00712100416422 101.37561099976301 103.11503100395203 103.3103030025959 104.0551360026002 104.42236400395632 104.55419899523258 104.74243200570345 104.80717000365257 105.1425369977951 105.70422299951315 105.95475299656391 106.58878599852324 106.6403409987688 106.99373400211334 107.4184569939971 109.70674699544907 109.85351599752903 110.05224700272083 110.16251599788666 110.40413399785757 110.5514329969883 111.07674200087786 111.10148199647665 111.25048799812794 111.54980500042439 111.7987869977951 111.8614500015974 112.55599000304937 112.68656499683857 112.73315500468016 113.45027599483728 114.06420899927616 114.34851100295782 114.50187200307846 114.65450099855661 114.89790900051594 115.1875 115.54642700403929 115.85371900349855 115.99601200222969 116.24450699985027 117.28800400346518 117.39249700307846 117.46333800256252 119.5369869992137 120.77213499695063 122.89896599948406 124.09468600153923 124.63350399583578 126.30314199626446 127.40824300050735 130.42647299915552 130.60563100129366

Current
Mean: 99.725 ms
Stdev: 3.145 ms (3.2%)
Runs: 91.93497700244188 92.02803499996662 93.5815430060029 94.77221699804068 95.1953120008111 95.39794900268316 95.76639799773693 95.90864999592304 95.97314400225878 96.45556699484587 96.83121800422668 97.05883800238371 97.07967200130224 97.35969999432564 97.45572900027037 98.01843199878931 98.26985699683428 98.4223220050335 98.7492670044303 98.87817399948835 99.03157600015402 99.0433349981904 99.1062830016017 99.31213399767876 99.37670899927616 99.93314699828625 99.94376699626446 99.99039699882269 100.04927600175142 100.17565900087357 100.21679699420929 100.2244879975915 100.50744599848986 100.52783200144768 100.52950000017881 100.54219600558281 100.65348299592733 100.72884199768305 100.8512779995799 101.31237799674273 101.43465200066566 101.80257099866867 101.83553100377321 101.8940029963851 101.90918000042439 102.26908399909735 102.45397999882698 102.62467399984598 102.85546900331974 102.96797699481249 102.98917699605227 103.1645100042224 103.56437200307846 103.77831999957561 104.75858599692583 104.99035599827766 105.22151700407267 106.34960999339819
Open search router TTI (CPU) Baseline
Mean: 132.508 %
Stdev: 4.605 % (3.5%)
Runs: 121.91063417719016 124.10225661983011 124.22830302210988 124.82311561899309 126.54717285535807 127.175094090043 127.65969597418491 127.68277269345313 127.89345754459197 127.95484234987232 127.98297343272995 128.30203072390574 128.44115690188252 128.56313315903176 128.91877018628782 129.05710491367864 129.23077692829398 129.3451555142474 129.6537606046887 129.88265998538472 130.47107877830777 130.54150621411728 130.62228955743134 131.16204423623276 131.59641021540114 131.59935109859964 132.3557612530583 132.39878393792557 132.476380572189 132.49242817924608 132.6455796161157 132.84798050289322 132.87370260753653 133.00978350112237 133.03960870714263 133.0940674586159 133.25738813087077 133.5765899651595 133.6183358449381 133.8295679557221 134.32630091742155 134.66589563101957 134.71753454420755 134.98705735384675 135.2637474659425 135.57741415972254 136.2859602016057 136.71286718916556 137.0272844509547 137.0654946352157 137.18562874251495 138.14812785531078 138.651596643368 138.80918870289034 139.29364776423253 139.39696326204233 139.60390607817553 140.4287997709759 141.81204690186732 143.63817097415514

Current
Mean: 135.571 %
Stdev: 4.840 % (3.6%)
Runs: 126.05534202317286 126.31067331722974 126.45634284750423 127.0333862639282 127.88247661398299 129.55180320352918 129.97874131255563 130.394422310757 130.45923807961378 130.76481697958667 130.82435129740523 130.86227544910182 131.07119095143048 131.23752495009987 131.4109692651375 131.78082615469208 131.99968945258587 132.82346166583773 132.95277241091785 132.97742363877813 133.12974051896208 133.41697289525575 133.70792677593028 133.82527424344292 133.97016398229363 134.32435129740523 134.51157727648524 134.86776488352507 134.98752112565333 135.47894914704904 136.16844042665755 136.40563469044824 136.46573519627418 136.50396825396825 137.08100929614866 137.32488433486992 137.57786733690972 137.68510257042357 137.79669833799198 138.28101591543106 138.30168348561847 138.45272232914266 138.49276663429958 138.58030783849685 138.6709662383007 138.73476950481518 138.80888830103243 138.82578668962282 138.97111928611238 141.04342284023255 141.21607212241588 141.55895090875921 142.0522173387199 142.2203253620752 142.28923811012768 142.8091233582204 143.22555808511987 143.58968449632482 144.93387986435576 145.15108313491794
Open search router TTI (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Open search router TTI (RAM) Baseline
Mean: 364.021 MB
Stdev: 4.607 MB (1.3%)
Runs: 352.5651041666667 355.8671875 357.5247395833333 357.921875 358.25390625 359.2265625 359.3619791666667 359.3971354166667 359.5611979166667 359.6458333333333 359.7109375 359.7291666666667 359.7630208333333 360.4557291666667 360.6901041666667 360.7161458333333 360.9778645833333 360.9869791666667 361.0416666666667 361.3489583333333 361.4560546875 361.52734375 361.7473958333333 361.76171875 361.8190104166667 362.2200520833333 362.7473958333333 362.9388020833333 363.0947265625 363.7018229166667 363.90625 363.9931640625 364.30859375 364.4296875 364.5924479166667 364.6471354166667 364.8815104166667 364.900390625 365.2578125 365.9541015625 366.5419921875 367.1103515625 367.25 367.6393229166667 367.68359375 367.8216145833333 367.8893229166667 368.65234375 369.41015625 369.6848958333333 369.83984375 370.59375 370.6614583333333 370.9375 371.3994140625 371.5341796875 372.0013020833333 372.4765625 373.486328125

Current
Mean: 369.399 MB
Stdev: 5.656 MB (1.5%)
Runs: 355.734375 357.7005208333333 357.833984375 358.8984375 359.8619791666667 360.4752604166667 360.9309895833333 361.0911458333333 362.6484375 363.537109375 364.7682291666667 365.8177083333333 366.1328125 366.21875 366.2900390625 366.3017578125 366.3388671875 366.9111328125 366.916015625 367.123046875 367.16796875 367.759765625 367.7861328125 367.83984375 368.2099609375 368.3802083333333 368.49609375 368.8359375 368.8759765625 369.283203125 369.5377604166667 370.5390625 370.591796875 370.71484375 370.91796875 371.189453125 371.4169921875 372.2490234375 372.43359375 372.6181640625 372.810546875 372.8828125 373.26953125 373.4326171875 373.6318359375 373.8798828125 373.91796875 374.1884765625 374.4921875 374.73828125 374.8984375 374.935546875 375.50390625 376.390625 376.6513671875 377.4501953125 377.5732421875 378.14453125 378.19140625 380.595703125
Open search router TTI (CPU/JS) Baseline
Mean: 72.259 %
Stdev: 2.168 % (3.0%)
Runs: 67.8 68.4 68.5 69 69.1 69.5 69.6 69.7 69.8 70.3 70.3 70.5 70.5 70.8 71 71.2 71.2 71.2 71.3 71.4 71.5 71.5 71.5 71.6 71.8 71.8 71.9 71.9 71.9 72 72.1 72.1 72.2 72.2 72.4 72.4 72.4 72.6 72.8 73 73.3 73.3 73.3 73.6 73.7 73.7 73.8 74 74.2 74.5 74.5 74.5 74.6 75.9 76.1 76.2 76.9 77.2 77.3

Current
Mean: 76.246 %
Stdev: 2.240 % (2.9%)
Runs: 70.9 71.4 71.8 72 72.5 72.6 72.8 73.2 73.6 73.8 74 74.1 74.6 74.9 75 75 75.4 75.4 75.6 75.8 75.9 75.9 75.9 75.9 76.1 76.2 76.3 76.4 76.4 76.4 76.5 76.6 76.8 76.9 76.9 77 77 77 77.3 77.4 77.5 77.5 77.6 77.7 77.9 78 78 78.1 78.2 78.6 78.6 78.9 79 79 79 79.1 80 80.2 80.4
Open search router TTI (CPU/UI) Baseline
Mean: 25.505 %
Stdev: 1.332 % (5.2%)
Runs: 22.4 23.2 23.3 23.3 23.7 23.8 23.9 23.9 24 24.3 24.4 24.4 24.5 24.5 24.6 24.6 24.6 25 25 25.1 25.1 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.3 25.4 25.5 25.6 25.8 25.9 25.9 25.9 25.9 25.9 25.9 25.9 26 26 26 26 26 26.4 26.4 26.4 26.5 26.6 26.6 26.8 27.3 27.4 27.5 28.4 28.5 28.5 28.6

Current
Mean: 24.130 %
Stdev: 1.270 % (5.3%)
Runs: 21.3 21.5 21.7 21.8 21.9 22 22.5 22.5 22.8 23 23 23 23.3 23.3 23.4 23.5 23.5 23.6 23.8 23.8 23.9 23.9 23.9 24 24 24 24 24.3 24.4 24.4 24.4 24.5 24.5 24.5 24.6 24.6 24.6 24.8 24.8 24.8 24.9 24.9 24.9 24.9 25 25.1 25.2 25.2 25.3 25.3 25.4 25.4 25.8 25.9 25.9 26.9 27.3
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
Report typing Message sent Baseline
Mean: 391.835 ms
Stdev: 30.794 ms (7.9%)
Runs: 334.78430200368166 348.0500090047717 349.28076200187206 349.7283530011773 350.0448409989476 351.22294099628925 352.06876599788666 352.41308599710464 352.6879470050335 353.9955649971962 354.4828699976206 357.7039790004492 361.50036600232124 362.3667399957776 364.02351900190115 366.297444999218 367.50036600232124 368.354085996747 368.4211430028081 370.253824993968 370.91707299649715 372.75390600413084 373.3319500014186 375.9090169966221 379.1372070014477 385.09305799752474 388.98929799348116 389.4047849997878 390.5972490012646 391.4393719956279 393.59322099387646 394.149779997766 400.6352950036526 403.5421549975872 403.6870530024171 404.0591229945421 405.13228400051594 406.00077299773693 409.10249800235033 410.7956549972296 413.3293460011482 413.5428880006075 413.6559249982238 414.14998400211334 414.76424200087786 415.119954995811 418.209636002779 418.93444799631834 422.26294000446796 422.38020899891853 423.85648600012064 424.6597900018096 425.05082200467587 425.3486329987645 430.682454995811 436.4204099997878 437.1642249971628 440.51997900009155 448.52604199945927 468.0993250012398

Current
Mean: 390.494 ms
Stdev: 34.199 ms (8.8%)
Runs: 342.0854900032282 342.32189899683 344.6683359965682 345.8155519962311 346.01997900009155 346.24711100012064 346.9428310021758 347.4789230003953 347.4952389970422 349.4417729973793 351.32450400292873 351.98384600132704 352.52689699828625 355.6879890039563 356.11625200510025 357.9742430001497 361.50948099792004 362.52677500247955 362.7768150046468 371.2366940006614 371.7066249996424 372.36429899930954 374.50065200030804 375.7007649987936 375.74226900190115 385.6892499998212 387.0682779997587 387.20275899767876 387.4438079968095 388.25785299390554 389.22928899526596 390.82714899629354 391.28177899867296 395.8661299943924 396.97058200091124 399.3014739975333 403.7776699960232 406.2423499971628 407.31225600093603 407.3960779979825 409.4297280013561 409.4432779997587 410.04048699885607 411.5536289960146 414.2290849983692 419.1366369947791 421.28312200307846 424.2872729972005 426.0964360013604 426.2855219990015 426.8023269996047 427.0531000047922 430.26424200087786 434.06905099749565 438.5072429999709 442.4040530025959 443.7466230019927 445.8444820046425 446.8461100012064 486.2703450024128
Report typing (CPU) Baseline
Mean: 99.563 %
Stdev: 3.235 % (3.2%)
Runs: 91.09297882052265 92.80717791639633 93.88612152424271 95.02129590497003 95.12001564505175 95.37677566331152 95.61248963452198 96.22046056161751 96.23356903122414 96.40927263601056 96.48732193164184 97.05626934379633 97.16847292207036 97.31157800037887 97.42750539369749 97.5502985946984 97.6208016191048 97.91008189724703 97.91078613798311 97.9870494774539 98.21186921164012 98.35070476560813 98.37378855153139 98.43465764750769 98.50311233946107 98.58641262420063 98.74829651215539 99.19142076441487 99.4029067611891 99.45663095546466 99.81914051496418 100.05844281764708 100.67800686371645 100.75491717065985 100.7775412595411 100.80418279604748 100.86183113552217 100.91734326583358 101.04319892694734 101.45230675039991 101.56750730112562 101.78108773889453 101.86170894342453 102.02307909006092 102.03592971874514 102.05363219953195 102.13329731058629 102.37751916169118 102.59222597390296 102.61397159867259 102.86976887576633 103.48834286193134 104.10761385425134 104.36204794922907 104.52137342262533 105.20459811165324 106.12700230182615 106.2954117540494

Current
Mean: 100.167 %
Stdev: 2.749 % (2.7%)
Runs: 92.69710424489463 94.87770009434827 95.46385918618029 95.55838621707457 95.73193606969667 96.19045321020273 96.28677189339393 96.29344982948878 96.38580597063724 97.0496433707594 97.50297743256905 98.16320262907558 98.20229206037895 98.31942915379896 98.690921356349 98.94364681162813 99.09261685707729 99.15600044967698 99.55215845996491 99.62533102486277 99.7860895390892 99.79429925815977 99.82254959601285 99.82913388964718 100.00213806635634 100.07278826608939 100.09956883061399 100.1990978221078 100.24657888797483 100.48126498913665 100.5029926244987 100.52373159661178 100.63585245720806 100.67294077540367 100.70417692163441 101.29301093421967 101.32134657460783 101.37437218810159 101.53101411366106 101.59214134586684 101.69282668249096 101.79524934224354 102.37020634474058 102.37470742404331 102.40698884253324 102.50913340359806 102.60586269599563 102.64086907230396 103.02592399442814 103.33177584273152 103.54192501699936 104.0173770027863 104.38446787133375 104.40437542082684 104.5387040718932 104.6389230410669 104.97385697833298
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 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Report typing (RAM) Baseline
Mean: 502.507 MB
Stdev: 8.247 MB (1.6%)
Runs: 486.634765625 487.9888392857143 489.9818638392857 490.7162388392857 491.1138392857143 491.593505859375 492.1484375 492.6821986607143 493.1294642857143 494.07533482142856 494.2837611607143 494.59542410714283 494.69091796875 495.07338169642856 496.08091517857144 496.49637276785717 497.029296875 497.41434151785717 497.71651785714283 497.89146205357144 497.919921875 498.2123325892857 498.36901041666664 498.75083705357144 498.81612723214283 498.97544642857144 499.9388950892857 500.78934151785717 501.0357142857143 501.39174107142856 502.6841517857143 502.720703125 502.98716517857144 503.0044642857143 503.998779296875 504.58020833333336 504.75306919642856 505.00306919642856 506.34654017857144 507.60630580357144 507.6548549107143 507.68526785714283 507.7622767857143 508.173828125 508.44970703125 508.64564732142856 508.65078125 508.92661830357144 510.8217075892857 511.11119791666664 511.208984375 512.03125 513.205322265625 515.2335379464286 515.6498325892857 516.23046875 516.263427734375 516.3736049107143 516.4107142857143 520.692138671875

Current
Mean: 499.460 MB
Stdev: 9.257 MB (1.9%)
Runs: 475.2876674107143 477.811767578125 478.6333705357143 486.4564732142857 486.89285714285717 488.1830357142857 488.6040736607143 489.3736049107143 490.1263950892857 491.1275111607143 491.9068080357143 492.0083705357143 493.0884486607143 494.1724330357143 494.2045200892857 494.33705357142856 494.779296875 495.35267857142856 495.64927455357144 496.0302734375 496.4614955357143 496.71763392857144 496.81863839285717 496.8802083333333 496.90206473214283 496.95033482142856 497.3041294642857 497.64090401785717 497.99916294642856 498.59598214285717 499.26953125 499.28236607142856 499.29192708333335 499.8803013392857 500.19419642857144 500.7924107142857 502.185546875 502.5092075892857 503.21065848214283 504.4888392857143 505.21707589285717 505.587890625 506.42885044642856 506.85714285714283 507.08175223214283 507.08677455357144 507.9349888392857 508.2661830357143 509.57784598214283 509.67578125 510.6869419642857 510.87332589285717 511.6216517857143 512.4347098214286 512.7405133928571 512.8317522321429 514.6964285714286 514.9673549107143 516.1707589285714
Report typing (CPU/JS) Baseline
Mean: 51.067 %
Stdev: 3.274 % (6.4%)
Runs: 42.6 42.9 43.7 45.9 46.8 46.9 47.2 47.4 48 48.2 48.2 48.6 48.7 48.7 48.8 48.9 49 49.2 49.4 49.4 49.4 49.4 49.7 49.9 50.4 50.5 50.6 50.7 51.5 51.5 51.6 51.7 51.8 52 52.1 52.2 52.4 52.4 52.5 52.6 52.6 52.6 52.8 53.3 53.4 53.8 54 54 54.1 54.4 54.7 54.8 54.9 55.1 55.4 55.4 55.6 55.9 56.6 57.2

Current
Mean: 51.113 %
Stdev: 2.843 % (5.6%)
Runs: 44.4 45.9 46 46.1 46.2 46.4 47.6 47.8 48.1 48.2 48.2 48.4 48.5 48.5 48.6 49 49.1 49.1 49.3 49.6 49.6 49.9 50.3 50.6 50.7 50.9 51.2 51.2 51.3 51.3 51.4 51.4 51.5 52 52.1 52.3 52.4 52.6 52.7 52.8 52.9 53 53 53 53.3 53.7 53.8 53.8 54.2 54.2 54.3 54.3 54.4 54.6 54.6 54.8 55.2 55.2 55.3 56
Report typing (CPU/UI) Baseline
Mean: 22.042 %
Stdev: 0.776 % (3.5%)
Runs: 20.2 20.4 20.4 20.9 20.9 20.9 21 21 21.2 21.3 21.4 21.4 21.4 21.4 21.5 21.5 21.5 21.6 21.7 21.7 21.7 21.8 21.8 21.8 21.8 21.9 22.1 22.1 22.1 22.2 22.2 22.2 22.2 22.3 22.3 22.3 22.3 22.3 22.4 22.4 22.5 22.5 22.6 22.6 22.6 22.6 22.7 22.8 22.8 22.9 22.9 22.9 23 23.2 23.2 23.2 23.3 23.3 23.4

Current
Mean: 22.435 %
Stdev: 0.572 % (2.6%)
Runs: 21.1 21.2 21.3 21.6 21.6 21.6 21.8 21.9 21.9 22 22.1 22.1 22.1 22.1 22.1 22.1 22.1 22.1 22.1 22.2 22.2 22.2 22.3 22.3 22.3 22.3 22.4 22.5 22.5 22.5 22.6 22.6 22.6 22.6 22.6 22.7 22.7 22.7 22.7 22.8 22.8 22.9 22.9 22.9 22.9 22.9 22.9 23 23 23.1 23.1 23.2 23.6 23.7 23.8
Chat opening Chat opening Baseline
Mean: 134.015 ms
Stdev: 11.246 ms (8.4%)
Runs: 110.2488199993968 111.76436300575733 112.66585300117731 118.15828499943018 120.96744799613953 120.98877000063658 122.25195299834013 123.12980099767447 123.41491699963808 123.60632299631834 123.74939000606537 124.26635800302029 124.8260499984026 125.32609099894762 125.39379899948835 127.39994300156832 127.74666300415993 128.2719720005989 128.64033999294043 129.14143799990416 129.99352999776602 130.2271320000291 130.52058900147676 130.74422200024128 131.0461419969797 131.23091600090265 131.8856199979782 132.08951900154352 132.30908299982548 132.31978400051594 133.00744700431824 133.88395199924707 134.93257600069046 135.21382699906826 135.3615719974041 137.1145429983735 137.159178994596 137.5371089950204 137.6359049975872 137.790689997375 138.3665769994259 138.73958300054073 138.8329669982195 139.04956099390984 140.08150300383568 143.1267900019884 143.24816899746656 144.25374399870634 144.79813700169325 148.69791600108147 149.1241049990058 150.50504499673843 151.0657550022006 151.86914099752903 152.98225900530815 153.78869600594044 155.9053549990058 164.48372399806976

Current
Mean: 136.910 ms
Stdev: 10.184 ms (7.4%)
Runs: 116.98698000609875 121.42948400229216 121.93713399767876 122.30501300096512 123.18619799613953 123.28857400268316 123.74239100515842 124.4093419983983 126.1561280041933 126.3472900018096 127.03999900072813 129.02319299429655 129.61759400367737 129.9202470034361 130.0941969975829 130.10668999701738 130.57600899785757 131.3372800052166 131.6359049975872 132.1501870006323 133.1717119961977 133.23885099589825 133.9503169953823 134.48384600132704 135.61259000003338 135.9155270010233 136.14192700386047 136.62801099568605 136.75817900151014 136.8158779963851 137.02266500145197 138.40706399828196 138.5418699979782 138.60782900452614 138.802775003016 139.86596699804068 140.01139299571514 140.04044600576162 140.28829000145197 140.9155279994011 141.2856439948082 141.81791099905968 141.92374700307846 142.58585699647665 143.53515599668026 143.94242300093174 144.83642499893904 146.57714900374413 149.72001200169325 151.45699100196362 154.89864100515842 155.23221900314093 155.24051900207996 156.84257000684738 158.87752199918032 161.66963700205088
Chat opening Chat TTI Baseline
Mean: 391.943 ms
Stdev: 25.903 ms (6.6%)
Runs: 337.24593099951744 346.599935002625 347.48091699928045 350.45996099710464 359.55460600554943 360.8595380038023 363.3898930028081 363.9722900018096 365.36193899810314 366.05387400090694 366.2203779965639 368.09501199424267 369.06286599487066 370.78499399870634 373.19698099792004 373.26155599951744 374.12137899547815 377.9195559993386 380.2707919999957 381.36136899888515 381.7321380004287 385.72574900090694 386.9853920042515 387.77628599852324 387.82718900591135 388.4128419980407 389.42236299812794 392.2670899927616 392.4617110043764 392.6540120020509 392.97827100008726 393.35136000066996 394.82332400232553 396.7378740012646 398.6469729989767 399.93208799511194 401.2644450068474 402.1693930029869 403.33280500024557 403.4001879990101 404.15173299610615 404.31274499744177 405.25655099749565 406.35131900012493 409.6324869990349 412.37105299532413 412.9417729973793 414.4075520038605 417.3376879990101 417.49918700009584 417.59073999524117 422.7860110029578 432.96000199764967 444.39953699707985 447.14176500588655 449.7635909989476 454.66605699807405

Current
Mean: 395.621 ms
Stdev: 23.825 ms (6.0%)
Runs: 346.83426900207996 355.36564199626446 356.33646700531244 360.423014998436 361.6733810007572 369.7863769978285 371.41235399991274 371.637737005949 373.23547399789095 373.6793619990349 377.0098470002413 377.511474005878 378.1528730019927 381.1238199993968 382.62491799890995 384.2918699979782 384.38985200226307 384.6205239966512 384.81172700226307 385.91019700467587 386.0650229975581 386.2222900018096 387.54960100352764 391.98368299752474 392.21822099387646 392.2367760017514 393.4002280011773 394.1382649987936 395.08158399909735 395.9899910017848 396.4993080049753 396.7178549990058 397.0238859951496 400.79101599752903 400.82832799851894 400.98221799731255 402.1000970005989 402.4044599980116 402.4524340033531 404.69018499553204 405.541300997138 407.55326399952173 409.3848880007863 409.5513919964433 412.44909700006247 414.380656003952 417.91145899891853 419.87329100072384 421.25272600352764 421.72932900488377 433.2416179999709 436.072468996048 453.3182779997587 457.00496499985456 459.68965700268745
Chat opening (CPU) Baseline
Mean: 136.839 %
Stdev: 6.884 % (5.0%)
Runs: 120.29354147900354 124.45804804733163 124.87005638052361 125.04486249520698 127.92134414669596 128.1207426417007 128.23243193884605 128.31416583882296 128.51361353006948 129.65200820079298 129.71211718379016 130.14965406123852 131.03635097348257 131.66347216286297 131.8465608465609 132.24760287245266 132.27251478638848 132.4966799468791 132.6343297341061 132.80728212791536 133.30586136715462 133.86161011310713 133.9535047512118 134.66545621514095 134.99154261693258 135.337638448593 135.49005181509364 135.9281437125749 136.56574652391245 137.13905522288758 137.44021376085493 137.546450381377 137.71556488616392 137.87233914620006 138.45003750798531 139.03755874674385 139.57070796904304 139.62784034465798 139.84077947575707 140.2298120789568 140.2402241633011 140.89779354478588 141.14437791084498 141.56975002722444 141.8984503782972 142.4711331714777 143.09196413412477 143.37500670154367 143.7210650104943 143.95809421143366 144.02138928687728 144.67898404926945 144.79163522157373 144.79540708714006 145.46062339058693 145.9063033356528 147.25879930278487 148.44710578842316 149.01311321579945 152.73522741373807

Current
Mean: 136.849 %
Stdev: 7.212 % (5.3%)
Runs: 123.81010137602081 125.2499862722933 126.01321509536511 127.17706088179274 127.8120552902511 127.85644336327344 128.11016827566644 128.7375349496646 129.07518296739852 129.07518296739852 129.59934558126062 129.74051896207584 129.77353199781373 129.84364780926373 131.50812678651548 131.53056618049715 131.93026153939593 132.10310806233056 132.3100456962088 132.40186294078512 132.54662435941768 133.03572648566717 133.08317108220493 133.12974051896214 133.56498019547678 134.06453357537106 134.1248702024511 134.98912684807365 135.14970059880235 135.21490352628075 135.22854091416366 135.87531537439878 136.54890572666784 136.6924483212075 137.00828693838304 137.18829008649365 137.96548635013437 138.72255489021964 139.1350632069195 139.19307406313283 141.1377245508982 141.27302300782222 142.34629845515704 142.6331072400585 143.83370319167165 144.58831341301453 144.75026967637504 145.03582286021827 145.77758819630304 145.91991011868672 145.96103048528005 146.1270062500027 146.1555471246567 146.17627518129126 147.12175648702592 147.68794639569995 148.13654074007573 149.95914186123986 150.091667985252 150.11584417039018
Chat opening (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 370.798 MB
Stdev: 14.730 MB (4.0%)
Runs: 342.2278645833333 343.5755208333333 350.2721354166667 351.6861979166667 353.34375 353.9322916666667 355.9518229166667 356.2317708333333 359.13671875 360.01953125 360.76953125 360.9557291666667 361.6302083333333 361.95703125 362.4296875 362.765625 363.0598958333333 363.3919270833333 363.671875 363.7356770833333 363.81640625 363.81640625 363.8307291666667 363.8541666666667 363.8723958333333 363.8828125 364.3567708333333 364.3802083333333 364.640625 365.0338541666667 365.20703125 365.2395833333333 365.28125 365.6536458333333 365.6861979166667 366.5690104166667 367.1822916666667 367.21484375 368.1484375 368.4830729166667 375.12109375 375.3255208333333 379.5611979166667 379.6276041666667 381.1770833333333 386.68359375 387.12109375 392.7955729166667 392.9791666666667 393.16796875 393.3268229166667 393.40625 393.7122395833333 393.9270833333333 394.1080729166667 394.6731770833333 395.1106770833333 395.6653645833333 396.671875 396.8229166666667

Current
Mean: 372.502 MB
Stdev: 12.825 MB (3.4%)
Runs: 353.3033854166667 354.078125 354.8450520833333 356.7994791666667 358.0247395833333 358.1158854166667 358.6627604166667 360.4635416666667 360.7369791666667 360.76953125 360.875 361.63671875 362.2942708333333 362.3046875 362.56640625 362.5729166666667 362.65625 362.9557291666667 363.0260416666667 363.0364583333333 363.0690104166667 363.15625 363.30078125 363.7109375 363.7213541666667 363.765625 364.1184895833333 364.421875 364.5625 365.2565104166667 365.3372395833333 369.72265625 369.9583333333333 370.0533854166667 372.693359375 375.1666666666667 377.0403645833333 378.0533854166667 379.9934895833333 380.9856770833333 382.8424479166667 383.46875 383.5638020833333 383.5963541666667 383.7473958333333 383.9309895833333 384.9505208333333 386.1145833333333 387.6510416666667 387.90234375 388.8190104166667 390.72265625 392.1432291666667 392.2057291666667 392.3020833333333 392.3138020833333 393.3216145833333 393.4869791666667 393.9596354166667 395.28125
Chat opening (CPU/JS) Baseline
Mean: 72.176 %
Stdev: 2.801 % (3.9%)
Runs: 65.1 65.8 66.5 67 68.2 68.8 68.9 69 69.2 69.8 69.8 69.9 69.9 70.3 70.4 70.6 70.6 70.7 70.7 70.9 71.2 71.4 71.4 71.5 71.6 71.6 72 72 72.3 72.3 72.4 72.5 72.6 72.6 72.7 72.7 72.8 72.9 73.1 73.1 73.8 74.4 74.4 74.5 74.6 74.7 74.7 74.8 74.8 75.2 75.3 75.4 75.8 75.8 75.9 76 76.5 77.1 77.9

Current
Mean: 72.881 %
Stdev: 2.446 % (3.4%)
Runs: 67.9 68.3 68.8 69.3 69.9 70 70.1 70.1 70.1 70.2 70.3 70.6 70.9 71.2 71.3 71.4 71.5 71.5 71.5 71.5 71.8 71.9 72 72 72.2 72.3 72.5 72.6 72.6 72.8 72.8 73.2 73.2 73.3 73.3 73.3 73.5 73.5 73.7 73.8 73.9 74 74.5 74.6 74.9 75 75.1 75.2 75.2 75.4 76 76 76.6 76.8 77.3 77.3 77.8 78.8
Chat opening (CPU/UI) Baseline
Mean: 25.397 %
Stdev: 1.815 % (7.1%)
Runs: 22.3 22.4 22.6 22.7 23.1 23.2 23.2 23.3 23.3 23.8 23.9 23.9 23.9 23.9 24 24 24 24.5 24.5 24.5 24.5 24.6 24.6 24.6 24.6 24.6 24.6 24.6 24.6 25.1 25.2 25.2 25.2 25.3 25.4 25.8 25.9 26 26 26.4 26.5 26.6 26.6 26.6 26.6 26.7 27 27.2 27.8 27.9 27.9 27.9 27.9 28 28.1 28.1 28.1 29.1 30

Current
Mean: 25.724 %
Stdev: 2.178 % (8.5%)
Runs: 21.9 22.3 22.5 23.2 23.2 23.2 23.2 23.8 23.8 23.8 23.9 24 24 24 24 24 24 24 24.5 24.5 24.5 24.6 24.6 24.7 25 25.2 25.2 25.2 25.3 25.3 25.3 25.8 25.8 25.8 25.9 25.9 26 26 26 26.1 26.4 26.5 26.5 26.6 26.6 27 27 27.3 27.8 28.5 28.6 28.7 28.8 29.3 29.7 30 30.5 30.6 31.3
Linking (CPU) Baseline
Mean: 143.539 %
Stdev: 2.666 % (1.9%)
Runs: 137.10954561465317 139.1723437008353 139.19879525243755 139.30087396953124 140.0188129563447 140.35652768763907 140.42276560254282 140.62827063925678 140.81365875368044 140.94225762281383 140.98667032744555 141.13332805373554 141.22958077410786 141.25996490226268 141.68671336288452 141.75708569244037 141.84670658682643 141.99431517252924 142.0176104922185 142.13353526198873 142.29068938224066 142.35757206324243 142.62411464111455 142.72418600343613 142.80615388945017 142.86863354023524 142.94731493984645 143.04073895099185 143.091415165613 143.37743300092578 143.4798036671211 143.7771248659788 143.9242524287234 144.01639060688595 144.15179779932774 144.2330143031112 144.3173483021348 144.59218519011307 144.6211169944172 145.38205836149172 145.66549800051058 145.92711845501853 146.0177658247781 146.1049740223209 146.56125082176274 146.5846188101884 146.61115707944546 146.7235566599887 146.94929812183457 146.96693819170312 146.9873316180119 147.04977580380708 147.11322707239148 147.26408221932283 147.99073024484937 148.06223090377486 148.50447756660103

Current
Mean: 144.543 %
Stdev: 3.129 % (2.2%)
Runs: 138.35353070612635 139.40028053967305 139.94568871356844 139.98673540851718 140.21207160525853 140.30698836977996 140.35314629753137 141.05470273980262 141.47632166338894 141.6323105896589 141.63323717520467 141.78927853956006 141.95100029498968 142.35477280732658 142.49241359982983 142.4983538933378 142.55608623390674 142.62019705414812 142.6238375079861 142.97302243932185 143.088513931619 143.22799234780118 143.2353529132005 143.47053668175766 143.4925978073537 143.65433950472627 143.87701834374133 143.9150194477393 143.9446758616332 144.09155809768873 144.13156668769818 144.34865009714295 144.78560477256926 145.17575146766342 145.23254429942216 145.44850829870202 145.48213620599506 145.63628442700272 145.63703034484357 145.74778109693526 145.748248635907 145.75325208028835 145.85000591692636 145.8919786388577 146.0644539578352 146.54842664017224 147.46451273225443 147.51413197583634 147.6261716629916 147.72395166788763 147.81768312914383 148.15288518855945 148.58939968668244 149.28994956467923 149.3983235902095 149.53199215331603 150.21711129528987 152.31687587419228 152.70713031010115
Linking (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 60 60 60
Linking (RAM) Baseline
Mean: 416.075 MB
Stdev: 8.338 MB (2.0%)
Runs: 402.17265625 402.634375 403.77734375 404.57109375 404.88125 405.20703125 405.7296875 406.85625 407.48203125 407.87734375 408.21953125 408.4390625 408.47265625 409.35703125 409.36640625 409.403125 409.4828125 410.04609375 411.09921875 411.24296875 411.278125 412.04765625 412.4765625 412.55390625 412.65078125 413.046875 413.5625 414.184375 414.709375 415.07734375 415.10703125 415.7037760416667 416.71953125 417.51015625 417.528125 418.309375 418.39765625 418.43359375 418.61015625 418.64296875 418.66171875 418.95234375 419.203125 420.11484375 420.62578125 420.93046875 421.5828125 423.2953125 424.44765625 425.18828125 425.53125 425.97265625 426.59609375 427.85078125 428.1609375 428.4734375 431.6203125 433.33359375 433.35859375 437.7220052083333

Current
Mean: 417.940 MB
Stdev: 7.872 MB (1.9%)
Runs: 403.83671875 404.32265625 404.6890625 405.5947265625 406.30625 406.57734375 406.94453125 409.3703125 410.3484375 410.51640625 410.58203125 410.69921875 410.7859375 410.978125 411.246875 411.7890625 412.95390625 413.13671875 413.43828125 413.5375 413.63203125 414.053125 414.30859375 414.80234375 415.12734375 415.6 415.65703125 415.8609375 416.7078125 416.940625 417.07109375 417.87421875 417.9515625 418.09921875 419.33125 419.62109375 421.34140625 421.38359375 421.73671875 422.70859375 423.09609375 423.57109375 424.24609375 424.571875 424.609375 424.665625 424.72890625 425.234375 425.43828125 425.89375 426.03828125 426.1796875 427.10703125 427.36484375 427.73828125 427.97578125 428.109375 429.653125 432.0416666666667 440.669921875
Linking (CPU/JS) Baseline
Mean: 80.147 %
Stdev: 1.570 % (2.0%)
Runs: 76.7 77.1 77.2 77.4 78 78.2 78.2 78.2 78.5 78.5 78.5 78.7 78.8 79 79.1 79.2 79.2 79.3 79.5 79.5 79.6 79.7 79.8 79.9 80 80 80.1 80.1 80.2 80.3 80.3 80.3 80.3 80.4 80.4 80.5 80.5 80.6 80.6 80.7 80.8 80.8 81.1 81.1 81.1 81.2 81.3 81.4 81.6 81.6 81.9 81.9 82 82.1 82.2 82.8 82.9 83.6 84.2

Current
Mean: 80.708 %
Stdev: 1.757 % (2.2%)
Runs: 76.8 76.8 77.3 77.5 78.5 78.7 78.7 78.7 78.8 79.2 79.2 79.5 79.5 79.6 79.6 79.6 79.6 79.8 79.9 79.9 79.9 80.1 80.1 80.2 80.2 80.3 80.4 80.5 80.6 80.6 80.7 80.7 80.9 80.9 81 81.1 81.1 81.1 81.1 81.2 81.3 81.3 81.5 81.5 81.8 82 82.2 82.3 82.3 82.4 82.5 82.6 82.7 82.7 83.1 83.2 83.8 83.9 84.4 85.1
Linking (CPU/UI) Baseline
Mean: 25.195 %
Stdev: 1.062 % (4.2%)
Runs: 23.1 23.4 23.5 23.5 23.7 23.9 23.9 24 24.2 24.2 24.3 24.3 24.3 24.3 24.3 24.3 24.4 24.7 24.7 24.7 24.8 24.8 24.8 24.8 25 25 25 25.1 25.1 25.1 25.2 25.2 25.2 25.2 25.2 25.4 25.4 25.5 25.5 25.5 25.6 25.8 25.8 25.8 25.9 25.9 25.9 26 26 26.2 26.3 26.3 26.7 26.7 27.2 27.4 27.5 27.5 27.5

Current
Mean: 25.446 %
Stdev: 0.986 % (3.9%)
Runs: 23.9 23.9 23.9 24 24.2 24.3 24.3 24.3 24.4 24.4 24.4 24.4 24.6 24.7 24.7 24.7 24.8 24.8 25 25 25 25.1 25.1 25.1 25.1 25.2 25.2 25.4 25.4 25.4 25.4 25.5 25.5 25.5 25.5 25.6 25.6 25.6 25.8 25.9 25.9 25.9 26.2 26.2 26.3 26.4 26.6 26.6 26.7 26.7 26.7 26.7 27 27 27.5 27.5 27.9
Linking Baseline
Mean: 211.326 ms
Stdev: 35.639 ms (16.9%)
Runs: 168.55891899764538 170.05330399423838 173.15201800316572 173.21887300163507 177.32800299674273 178.8285319954157 179.28869699686766 180.30582700669765 180.81726100295782 181.23323599994183 182.14286299794912 182.32454400509596 183.92573999613523 185.99739599972963 186.50187199562788 186.5654700025916 186.65075600147247 186.86389199644327 186.94612599909306 187.08585600554943 187.4323320016265 188.04410800337791 188.6043700054288 189.03837099671364 189.31355799734592 189.91353299468756 190.37158200144768 190.77274500578642 191.21366399526596 193.19344100356102 196.34224499762058 197.13374800235033 197.63920100033283 198.15600600093603 206.13879400491714 206.68180399388075 210.35827700048685 211.4167080000043 213.753824993968 213.80151399970055 214.40983099490404 214.96500699967146 235.99035600572824 243.5952150002122 248.3493660017848 252.438069999218 252.90893599390984 253.31010000407696 256.66247600317 257.8637700006366 261.82246900349855 261.96826200187206 265.3495279997587 265.8411049991846 268.73620700091124 273.4394119977951 277.9442950040102 286.3290200009942 309.1768799945712

Current
Mean: 222.864 ms
Stdev: 36.566 ms (16.4%)
Runs: 166.7946780025959 171.98868799954653 172.4696450009942 174.3273930028081 175.32845100015402 176.2985029965639 176.4914549961686 177.9961759969592 178.73413100093603 182.15096099674702 183.13708500564098 183.95890299975872 184.5314130038023 184.6470939964056 184.80415900051594 184.8947750031948 186.87699399888515 186.9140629991889 190.37670899927616 192.33972200006247 192.8813470005989 197.391194999218 199.35005699843168 208.80301899462938 215.61820500344038 215.95739800482988 219.45723400264978 219.68135600537062 219.94637099653482 221.77010100334883 222.29809499531984 223.62129800021648 226.1525469943881 229.19112199544907 234.25903300195932 240.34387200325727 242.05635599792004 246.56469800323248 248.5237220004201 253.84558100253344 255.86254899948835 256.2054850012064 256.8830979987979 256.9651699960232 257.5103360041976 258.1596679985523 259.56787100434303 259.6204419955611 261.25166799873114 265.9013670012355 266.206623993814 268.0024010017514 271.32495100051165 271.5261230021715 274.1593419983983 274.98181200027466 275.7790130004287 277.0903320014477 289.19287100434303

Copy link
Contributor

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

Copy link
Contributor

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

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

@mountiny
Copy link
Contributor

mountiny commented Nov 1, 2024

I dont think this performance regression could be legit on this pr

Copy link
Contributor

github-actions bot commented Nov 4, 2024

🚀 Deployed to production by https://github.com/Julesssss in version: 9.0.56-9 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅
🤖🔄 android HybridApp 🤖🔄 skipped 🚫
🍎🔄 iOS HybridApp 🍎🔄 skipped 🚫

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.

7 participants