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

[No QA] Remove unused parameter for short lived authToken #52501

Merged
merged 5 commits into from
Nov 18, 2024

Conversation

tgolen
Copy link
Contributor

@tgolen tgolen commented Nov 13, 2024

cc @iwiznia @jasperhuangg

Explanation of Change

This param was removed because we stopped deleting these logins on the server.

Fixed Issues

$ https://github.com/Expensify/Expensify/issues/443960

Tests

None, since this is already being tested with https://github.com/Expensify/Web-Expensify/pull/44408 and removing the param does not change any functionality

Offline tests

None

QA Steps

None, since this is already being tested with https://github.com/Expensify/Web-Expensify/pull/44408 and removing the param does not change any functionality

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 either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.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(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.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

@tgolen tgolen self-assigned this Nov 13, 2024
@tgolen tgolen requested a review from a team as a code owner November 13, 2024 21:29
@melvin-bot melvin-bot bot requested review from DylanDylann and removed request for a team November 13, 2024 21:29
Copy link

melvin-bot bot commented Nov 13, 2024

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

@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
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

@@ -570,12 +570,7 @@ function beginGoogleSignIn(token: string | null) {
*/
function signInWithShortLivedAuthToken(email: string, authToken: string) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
function signInWithShortLivedAuthToken(email: string, authToken: string) {
function signInWithShortLivedAuthToken(authToken: string) {

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks for pointing that out. Removing this param resulted in a little bit more cleanup.

@melvin-bot melvin-bot bot requested a review from rafecolton November 14, 2024 09:02
Copy link

melvin-bot bot commented Nov 14, 2024

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

Copy link

melvin-bot bot commented Nov 14, 2024

🎯 @DylanDylann, thanks for reviewing and testing this PR! 🎉

An E/App issue has been created to issue payment here: #52528.

@tgolen tgolen requested a review from DylanDylann November 14, 2024 16:17
iwiznia
iwiznia previously approved these changes Nov 14, 2024
@melvin-bot melvin-bot bot requested a review from thienlnam November 14, 2024 17:44
Copy link

melvin-bot bot commented Nov 14, 2024

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

rafecolton
rafecolton previously approved these changes Nov 14, 2024
@thienlnam
Copy link
Contributor

We got some eslint failures

@DylanDylann
Copy link
Contributor

ahh, we need to migrate to useOnyx in some changed files

cc @tgolen

@tgolen
Copy link
Contributor Author

tgolen commented Nov 15, 2024

OK, I'm not sure if I will get to this today or not, but I'll get it updated!

@tgolen tgolen dismissed stale reviews from rafecolton and iwiznia via 6611508 November 15, 2024 21:03
@tgolen
Copy link
Contributor Author

tgolen commented Nov 15, 2024

OK, looks like it's all set now!

@tgolen tgolen requested a review from DylanDylann November 15, 2024 21:26
@johnmlee101 johnmlee101 requested a review from Copilot November 15, 2024 22:02

Choose a reason for hiding this comment

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

Copilot reviewed 5 out of 5 changed files in this pull request and generated no suggestions.

const {initialURL} = useContext(InitialURLContext);
const [session] = useOnyx(ONYXKEYS.SESSION);
const [account = {}] = useOnyx(ONYXKEYS.ACCOUNT);
const isAccountLoading = account?.isLoading;
Copy link
Member

Choose a reason for hiding this comment

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

Does isLoading need to be null coalesced or defaulted in line 25?


function SAMLSignInPage({credentials, account}: SAMLSignInPageProps) {
function SAMLSignInPage() {
const [account] = useOnyx(ONYXKEYS.ACCOUNT);
Copy link
Member

Choose a reason for hiding this comment

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

Do we need a default for isLoading or a null coalesce below? Why did you do [account = {}] above and [account] here?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

No, we don't need that (explained in my other comment). The default object was just some copy/paste from other code that I will remove.

Comment on lines 26 to 27
const [account = {}] = useOnyx(ONYXKEYS.ACCOUNT);
const isAccountLoading = account?.isLoading;
Copy link
Contributor

Choose a reason for hiding this comment

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

Yeah, agree we should make it as before. Wdyt about this suggestion?

Suggested change
const [account = {}] = useOnyx(ONYXKEYS.ACCOUNT);
const isAccountLoading = account?.isLoading;
const [account] = useOnyx(ONYXKEYS.ACCOUNT);
const isAccountLoading = account?.isLoading ?? false;

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I can remove the default value for account, but it doesn't need null coalesce because the logic is only doing a falsy check, so undefined would be treated the same as false anyway.

Copy link
Member

Choose a reason for hiding this comment

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

Good point

Copy link
Contributor Author

@tgolen tgolen left a comment

Choose a reason for hiding this comment

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

Updated!

Comment on lines 26 to 27
const [account = {}] = useOnyx(ONYXKEYS.ACCOUNT);
const isAccountLoading = account?.isLoading;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I can remove the default value for account, but it doesn't need null coalesce because the logic is only doing a falsy check, so undefined would be treated the same as false anyway.


function SAMLSignInPage({credentials, account}: SAMLSignInPageProps) {
function SAMLSignInPage() {
const [account] = useOnyx(ONYXKEYS.ACCOUNT);
Copy link
Contributor Author

Choose a reason for hiding this comment

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

No, we don't need that (explained in my other comment). The default object was just some copy/paste from other code that I will remove.

@rafecolton rafecolton merged commit ac6b16e into main Nov 18, 2024
17 checks passed
@rafecolton rafecolton deleted the tgolen-remove-partneridparam branch November 18, 2024 23:36
@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 Nov 19, 2024
Copy link
Contributor

Performance Comparison Report 📊

Significant Changes To Duration

Name Duration
Linking 759.429 ms → 901.054 ms (+141.625 ms, +18.6%) 🔴
Show details
Name Duration
Linking Baseline
Mean: 759.429 ms
Stdev: 21.226 ms (2.8%)
Runs: 683.4439700003713 725.9193120002747 729.1055100001395 729.3241789992899 730.4213059991598 731.1923019997776 732.8187669999897 733.9800629988313 740.7409269995987 743.953694999218 745.8591719996184 746.5065509993583 747.6108400002122 747.6304129995406 748.3644619993865 748.7017829995602 749.4765219986439 749.566407000646 750.9655760005116 752.1975100003183 752.5015059988946 753.4015709999949 753.859985999763 756.887369999662 760.285237999633 760.5485439989716 760.6575520001352 760.769410001114 763.1200360003859 763.2627369984984 763.8039140012115 764.2672530002892 764.4047849997878 766.0061450004578 766.0309660006315 766.578451000154 767.0348309986293 768.1268310006708 768.2936610002071 768.8444819990546 770.250243999064 770.8391519989818 773.1501880008727 773.9075930006802 774.71883200109 775.6509199999273 776.2731129992753 780.5607099998742 782.5334469992667 783.9898680001497 791.2856040000916 795.3359379991889 796.6604820005596 798.9253339990973 808.0741789992899

Current
Mean: 901.054 ms
Stdev: 243.546 ms (27.0%)
Runs: 650.8459480013698 655.0998950004578 659.1305340006948 673.0410970002413 676.7070310004056 720.6349289994687 720.7080080006272 722.1829830016941 723.0678710006177 730.9336350001395 731.2062180005014 732.2716879993677 733.5409750007093 733.9089359994978 734.9759929999709 735.5642090011388 736.5593260005116 739.5708830002695 739.8308920003474 739.9812010005116 740.8254400007427 741.5587569996715 742.163412000984 742.675904000178 743.1419679988176 744.7868659999222 745.2646080013365 745.8039959985763 747.7627360001206 748.3754070010036 750.0854090005159 750.6514079999179 751.2217210009694 753.6774089988321 754.0203859992325 757.043619999662 757.4193929992616 757.8933509998024 758.4645600002259 764.074543999508 765.6792399995029 766.8299969993532 768.9566249996424 769.7824710011482 772.2231040000916 773.0571299996227 774.3117679990828 775.2242029998451 777.0697429999709 784.2551269996911 787.020508999005 787.0858159996569 789.0848399996758 793.5666910000145 945.894612999633 957.9381920006126 965.2870690003037 981.0722660012543 992.6208910010755 996.7838540002704 1240.0115970000625 1241.335409000516 1243.0913910008967 1244.8517659995705 1250.5107029993087 1255.2646490000188 1262.7856860011816 1266.1037599984556 1288.0788580011576 1294.7078860010952 1297.809449000284 1298.691570000723 1299.8522549998015 1305.1326509993523 1317.8269870001823 1328.172079000622 1342.683310000226 1383.6865649987012 1424.859985999763 1488.4709079992026

Meaningless Changes To Duration

Show entries
Name Duration
App start time nativeLaunch 27.250 ms → 33.683 ms (+6.433 ms, +23.6%) 🟡
App start time nativeLaunchEnd_To_appCreationStart 85.450 ms → 66.167 ms (-19.283 ms, -22.6%) 🟢
App start time contentAppeared_To_screenTTI 615.718 ms → 619.654 ms (+3.936 ms, +0.6%)
App start time appCreationEnd_To_contentAppeared 666.780 ms → 620.625 ms (-46.155 ms, -6.9%)
App start time appCreation 82.383 ms → 75.746 ms (-6.638 ms, -8.1%)
App start time runJsBundle 472.033 ms → 446.103 ms (-25.930 ms, -5.5%)
App start time TTI 1490.952 ms → 1424.795 ms (-66.157 ms, -4.4%)
App start time regularAppStart 0.022 ms → 0.023 ms (+0.001 ms, +2.9%)
App start time (CPU) 134.057 % → 132.242 % (-1.815 %, -1.4%)
App start time (FPS) 59.991 FPS → 60.000 FPS (+0.009 FPS, ±0.0%)
App start time (RAM) 357.236 MB → 353.301 MB (-3.935 MB, -1.1%)
App start time (CPU/JS) 69.068 % → 71.265 % (+2.197 %, +3.2%)
App start time (CPU/UI) 29.063 % → 26.976 % (-2.087 %, -7.2%)
Open search router TTI Load Search Options 116.060 ms → 115.484 ms (-0.576 ms, ±0.0%)
Open search router TTI Open Search Router TTI 540.136 ms → 526.796 ms (-13.340 ms, -2.5%)
Open search router TTI (CPU) 137.459 % → 137.441 % (-0.018 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 358.785 MB → 360.606 MB (+1.821 MB, +0.5%)
Open search router TTI (CPU/JS) 69.732 % → 70.502 % (+0.770 %, +1.1%)
Open search router TTI (CPU/UI) 27.500 % → 26.878 % (-0.622 %, -2.3%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 417.579 ms → 419.248 ms (+1.669 ms, ±0.0%)
Report typing (CPU) 98.776 % → 98.609 % (-0.167 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 489.198 MB → 489.917 MB (+0.719 MB, ±0.0%)
Report typing (CPU/JS) 45.853 % → 46.008 % (+0.155 %, ±0.0%)
Report typing (CPU/UI) 25.049 % → 25.007 % (-0.042 %, ±0.0%)
Chat opening Chat TTI 506.798 ms → 495.488 ms (-11.311 ms, -2.2%)
Chat opening (CPU) 141.635 % → 142.024 % (+0.389 %, ±0.0%)
Chat opening (FPS) 59.891 FPS → 60.000 FPS (+0.109 FPS, ±0.0%)
Chat opening (RAM) 371.519 MB → 376.772 MB (+5.253 MB, +1.4%)
Chat opening (CPU/JS) 69.146 % → 71.212 % (+2.066 %, +3.0%)
Chat opening (CPU/UI) 29.621 % → 29.317 % (-0.304 %, -1.0%)
Linking (CPU) 148.604 % → 148.458 % (-0.146 %, ±0.0%)
Linking (FPS) 60.000 FPS → 60.000 FPS
Linking (RAM) 410.166 MB → 410.632 MB (+0.466 MB, ±0.0%)
Linking (CPU/JS) 79.776 % → 79.950 % (+0.174 %, ±0.0%)
Linking (CPU/UI) 28.608 % → 28.410 % (-0.198 %, -0.7%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 27.250 ms
Stdev: 4.728 ms (17.4%)
Runs: 21 21 21 21 22 22 22 22 22 22 23 23 23 23 23 23 24 24 24 24 24 24 25 25 25 25 25 25 25 26 27 27 27 28 28 28 28 29 29 29 29 30 30 30 30 31 31 31 31 31 32 33 33 33 34 35 36 38 39 39

Current
Mean: 33.683 ms
Stdev: 4.717 ms (14.0%)
Runs: 27 28 28 28 28 28 28 29 29 29 29 29 29 29 29 30 30 30 30 30 31 31 31 31 31 31 32 32 32 32 33 33 34 34 34 34 35 35 36 36 36 36 36 36 37 38 38 38 39 39 39 39 39 40 40 41 42 43 43 47
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 85.450 ms
Stdev: 11.660 ms (13.6%)
Runs: 63 66 69 69 70 71 73 73 74 74 74 74 75 76 76 76 76 76 79 79 80 80 80 80 81 81 82 82 82 82 83 85 85 86 87 87 89 90 90 90 91 91 92 93 93 96 97 97 98 98 98 98 99 100 101 104 104 105 111 116

Current
Mean: 66.167 ms
Stdev: 12.186 ms (18.4%)
Runs: 45 45 48 49 49 50 51 51 53 53 54 54 55 57 57 57 58 59 59 59 59 59 60 60 62 64 64 64 65 65 66 66 67 67 68 69 70 70 70 70 71 72 72 74 74 74 77 77 78 79 79 79 79 81 82 88 88 91 92 95
App start time contentAppeared_To_screenTTI Baseline
Mean: 615.718 ms
Stdev: 38.475 ms (6.2%)
Runs: 528.756176000461 532.9872070001438 537.5044649997726 543.240128999576 560.1480249995366 561.6086349999532 564.7152979997918 578.4328290000558 581.3132429998368 582.0017539998516 586.5726190004498 587.2896290002391 591.7495320001617 595.3746870001778 598.2572130002081 598.9666929999366 600.4805490002036 600.6989160003141 601.026939000003 601.0708849998191 602.4600959997624 604.309076000005 605.554983000271 605.76986400038 607.5866970000789 608.7634119996801 613.7443770002574 617.257282000035 620.2851290004328 620.8079019999132 624.0215750001371 626.6342270001769 631.0252510001883 637.0144189996645 638.0897279996425 639.6085209995508 641.2232470000163 641.3795739999041 642.7622440000996 643.4787619998679 644.3762520002201 644.9769980004057 646.3441409999505 646.9067299999297 646.9607629999518 649.3630759995431 653.0680080000311 655.5771220000461 658.2915230002254 663.2357769999653 665.7017500000075 672.8294209996238 694.317347000353 702.8459649998695

Current
Mean: 619.654 ms
Stdev: 47.777 ms (7.7%)
Runs: 497.78733600024134 533.6603849995881 534.4299349999055 546.3227920001373 550.4604820003733 551.8398320004344 565.4453590000048 568.5603369995952 569.5864209998399 570.7574599999934 579.545106000267 580.6843830002472 582.7896849997342 583.3066710000858 595.9230580003932 597.8713779998943 598.0605809995905 602.9450589995831 603.1568130003288 604.9545550001785 606.5787249999121 608.8443780001253 609.4135010000318 610.2702409997582 613.9594390001148 617.5799939995632 619.2096490003169 619.8661489998922 622.0955910002813 624.5552580002695 627.8091519996524 629.6393710002303 631.1706090001389 633.8728259997442 635.9866770002991 639.4612750001252 641.5771519998088 645.0109959999099 647.6863069999963 650.1987300002947 650.840723999776 650.9959460003302 651.6642709998414 652.4101149998605 653.4187529999763 657.8017960004508 661.0490189995617 667.2553160004318 674.8384699998423 675.5529600000009 677.3038529995829 679.8562169997022 701.4778429996222 724.4005270004272 749.2109150001779
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 666.780 ms
Stdev: 37.287 ms (5.6%)
Runs: 569 577 602 605 620 623 626 629 629 631 634 635 636 636 638 639 643 646 648 651 652 654 655 657 658 661 664 665 665 669 669 672 673 676 680 681 685 686 686 687 688 688 690 691 694 695 695 696 697 700 704 706 710 711 713 720 739 745 746

Current
Mean: 620.625 ms
Stdev: 34.348 ms (5.5%)
Runs: 527 561 562 566 571 577 578 579 581 584 587 590 592 595 595 597 600 603 606 610 613 615 615 618 618 621 622 623 626 628 628 630 632 633 636 637 639 639 641 642 644 644 645 648 649 651 651 652 652 655 656 664 669 670 671 717
App start time appCreation Baseline
Mean: 82.383 ms
Stdev: 10.789 ms (13.1%)
Runs: 66 67 67 67 69 70 70 71 71 72 72 73 73 73 74 74 75 75 75 75 76 76 77 78 78 78 79 79 80 81 81 82 82 82 82 83 85 85 86 86 87 87 87 87 88 88 89 90 91 92 92 96 98 98 102 103 104 106 106 107

Current
Mean: 75.746 ms
Stdev: 9.002 ms (11.9%)
Runs: 58 62 62 63 64 64 64 65 67 68 69 70 70 70 70 70 70 71 71 71 71 71 72 72 72 72 73 73 73 74 74 74 76 76 76 76 76 78 78 78 79 79 80 81 82 82 84 85 85 86 86 88 88 89 91 92 95 96 97
App start time runJsBundle Baseline
Mean: 472.033 ms
Stdev: 27.239 ms (5.8%)
Runs: 399 402 417 424 436 437 439 441 442 442 447 450 451 454 456 456 457 458 459 459 460 464 465 467 468 469 471 471 471 473 474 475 475 477 479 480 482 484 484 486 488 489 491 493 494 496 496 497 498 501 501 501 503 504 507 507 509 509 512 525

Current
Mean: 446.103 ms
Stdev: 23.539 ms (5.3%)
Runs: 380 402 403 409 415 416 418 419 421 421 422 425 426 427 428 434 435 435 436 438 439 440 440 441 441 443 444 445 446 446 448 449 450 451 451 452 454 456 458 460 460 461 461 463 465 465 467 467 469 471 478 479 481 481 481 483 489 489
App start time TTI Baseline
Mean: 1490.952 ms
Stdev: 80.353 ms (5.4%)
Runs: 1274.6265679998323 1354.240128999576 1354.5044649997726 1375.756176000461 1388.7152979997918 1392.4328290000558 1394.289629000239 1394.5726190004498 1403.309076000005 1404.9666929999366 1407.6086349999532 1413.76341199968 1415.4805490002036 1434.070884999819 1440.7495320001617 1442.3132429998368 1442.4600959997624 1445.9769980004057 1451.5866970000789 1455.026939000003 1456.0017539998516 1457.257282000035 1460.698916000314 1470.363075999543 1478.3746870001778 1485.0252510001883 1489.2572130002081 1489.634227000177 1494.0144189996645 1509.76986400038 1510.554983000271 1513.1480249995366 1513.4787619998679 1514.3762520002201 1515.021575000137 1515.0897279996425 1515.9067299999297 1517.577122000046 1518.7443770002574 1524.8079019999132 1530.2357769999653 1532.7622440000996 1535.6085209995508 1536.2232470000163 1555.9607629999518 1557.7017500000075 1558.8294209996238 1560.9849089998752 1565.379573999904 1571.068008000031 1574.3441409999505 1578.2851290004328 1582.2915230002254 1585.317347000353 1606.8459649998695 1651.820013999939 1671.130408000201 1684.8994960002601

Current
Mean: 1424.795 ms
Stdev: 65.666 ms (4.6%)
Runs: 1277.4453590000048 1294.8398320004344 1309.4604820003733 1314.4299349999055 1319.3066710000858 1326.6843830002472 1338.58642099984 1343.7896849997342 1356.4135010000318 1358.3227920001373 1367.8713779998943 1367.9230580003932 1373.545106000267 1384.0605809995905 1384.5603369995952 1384.7574599999934 1399.9545550001785 1401.1568130003288 1404.9594390001148 1411.0490189995617 1412.170609000139 1413.2702409997582 1413.5771519998088 1413.8661489998922 1417.2096490003169 1421.6642709998414 1424.0955910002813 1424.8728259997442 1425.986677000299 1426.840723999776 1427.2553160004318 1429.4101149998605 1430.9450589995831 1439.8443780001253 1442.1904960004613 1444.6393710002303 1448.4187529999763 1453.5552580002695 1453.8091519996524 1456.4612750001252 1456.578724999912 1457.01099599991 1458.9959460003302 1459.5799939995632 1462.1459569996223 1462.8967300001532 1475.5948850000277 1482.8017960004508 1491.4778429996222 1493.6863069999963 1513.8562169997022 1514.8384699998423 1521.1987300002947 1538.4005270004272 1545.303852999583 1567.210915000178 1572.552960000001
App start time regularAppStart Baseline
Mean: 0.022 ms
Stdev: 0.002 ms (6.8%)
Runs: 0.018962000496685505 0.019245999865233898 0.019287999719381332 0.019612999632954597 0.0197350000962615 0.020182999782264233 0.020263999700546265 0.020344999618828297 0.020426000468432903 0.0206709997728467 0.020832999609410763 0.020833000540733337 0.02103699930012226 0.021158999763429165 0.021240999922156334 0.0213620001450181 0.021362999454140663 0.021402999758720398 0.021564999595284462 0.021606000140309334 0.02164699975401163 0.0217289999127388 0.021809999831020832 0.021850000135600567 0.021851000376045704 0.021890999749302864 0.022013000212609768 0.022297999821603298 0.02233900036662817 0.02237899973988533 0.02237899973988533 0.022379999980330467 0.0224609998986125 0.022501999512314796 0.022583000361919403 0.022622999735176563 0.0226239999756217 0.022665000520646572 0.022907999344170094 0.02290899958461523 0.022909000515937805 0.022948999889194965 0.023029999807476997 0.023031000047922134 0.02307100035250187 0.0231520002707839 0.023152999579906464 0.023275000043213367 0.023357000201940536 0.023722000420093536 0.023802999407052994 0.02380399964749813 0.024577000178396702 0.024739999324083328 0.025268000550568104 0.025553999468684196 0.025674999691545963

Current
Mean: 0.023 ms
Stdev: 0.002 ms (7.6%)
Runs: 0.0194089999422431 0.019816000014543533 0.020222999155521393 0.020263999700546265 0.020344999618828297 0.020426999777555466 0.020791999995708466 0.020792999304831028 0.020874000154435635 0.020874000154435635 0.020955000072717667 0.020955000072717667 0.021239999681711197 0.021321999840438366 0.021403000690042973 0.021525000222027302 0.021606000140309334 0.02164699975401163 0.021810000762343407 0.021850000135600567 0.021890999749302864 0.02197200059890747 0.022053999826312065 0.022053999826312065 0.022054999135434628 0.02233799919486046 0.022420000284910202 0.022460000589489937 0.022501000203192234 0.022583000361919403 0.022622999735176563 0.0226239999756217 0.022786999121308327 0.02282699942588806 0.02307100035250187 0.023275000043213367 0.023315000347793102 0.023315000347793102 0.0233559999614954 0.02347799949347973 0.023641000501811504 0.023721999488770962 0.023804000578820705 0.02408899925649166 0.024128999561071396 0.024130000732839108 0.024170000106096268 0.024210999719798565 0.024291999638080597 0.024373000487685204 0.02453599963337183 0.024658000096678734 0.02494300063699484 0.024984000250697136 0.025431000627577305 0.025431999936699867 0.02555400040000677 0.026083000004291534 0.026326999999582767 0.026774000376462936
App start time (CPU) Baseline
Mean: 134.057 %
Stdev: 3.259 % (2.4%)
Runs: 125.91954891403759 127.08015752032519 128.782605029617 129.70700796787753 130.11593836295037 130.18808504909933 131.10868833382375 131.3597883597884 131.64674634794156 131.80408453906853 132.07322609816774 132.14298548436278 132.1754459182722 132.25424782027076 132.45285540132463 132.46815527577274 132.49020505784887 132.51281942814464 132.9774688596581 133.20081913348812 133.20948780457132 133.28078923726602 133.52171509064118 133.56927392169192 133.64207875147065 133.71714597969503 133.72314339867717 133.7673815715183 133.89807673404678 134.0088884681331 134.16511168219435 134.23510321470388 134.70400176110877 135.07351673050576 135.0736000553563 135.2787651238833 135.48854318177038 135.89834117105386 136.0507627927189 136.1335935461006 136.26549454537093 136.89952156701264 136.99164035220272 137.07811468696067 138.1537307524472 138.63183600025704 138.9507401277526 139.2872968945907 140.55867600011155 141.10394438202297 142.09608693829637

Current
Mean: 132.242 %
Stdev: 4.584 % (3.5%)
Runs: 120.61988267402828 122.78156420811119 123.8500858575999 124.53729646964115 124.71371314056685 125.19802851610632 125.99598156677226 126.25262526252625 126.84943925108146 126.8913233309518 127.27265541010561 127.95983823734484 128.47694029122718 128.55375712787742 128.5958610395078 128.86920132287247 129.39290905315613 130.05574225024185 130.69277456951423 131.04148072181107 131.64087598021385 131.7988996276728 131.89663415567034 131.94908379461734 131.9567935267944 131.9908951960183 132.14100297790603 132.44555423380046 132.55393158363458 132.57016539691315 132.9614628333677 133.0114707582252 133.34253889349174 133.4882836454569 133.65685534136855 133.9458038428359 134.18815920837866 134.23273364853395 134.33005530994464 134.53175247179385 134.5461527384437 135.05504328765784 135.17365269461078 135.2138114209827 135.34046065262916 136.19058028984134 136.4011170330396 136.52123268444632 136.73087329770848 136.8803297626507 137.10302687466557 137.16480982672687 137.22461313077355 137.62281246451778 138.93061338326996 139.13279497888053 139.2020112829259 139.4708667921491 141.13387300747524
App start time (FPS) Baseline
Mean: 59.991 FPS
Stdev: 0.026 FPS (0.0%)
Runs: 59.877722137269664 59.91984257284627 59.92458458452762 59.93098891011332 59.96731592698094 59.97076596583759 59.98241586085618 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 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
App start time (RAM) Baseline
Mean: 357.236 MB
Stdev: 2.334 MB (0.7%)
Runs: 352.2057291666667 353.3502604166667 354.05078125 354.05078125 354.0859375 354.3984375 354.9869791666667 355.0533854166667 355.1549479166667 355.3658854166667 355.7734375 355.796875 355.796875 355.8229166666667 355.9427083333333 356.130859375 356.1861979166667 356.2135416666667 356.451171875 356.484375 356.5598958333333 356.5729166666667 356.7604166666667 356.7760416666667 356.8359375 356.9817708333333 357.0013020833333 357.1627604166667 357.21875 357.2747395833333 357.3971354166667 357.4270833333333 357.4713541666667 357.55078125 357.62109375 357.6510416666667 357.7786458333333 357.8893229166667 358.0859375 358.3528645833333 358.94140625 359.1119791666667 359.92578125 360.0013020833333 360.0338541666667 360.7122395833333 361.5143229166667 361.8411458333333 362.0377604166667 362.45703125 362.8033854166667

Current
Mean: 353.301 MB
Stdev: 6.229 MB (1.8%)
Runs: 341.044921875 341.173828125 341.744140625 342.279296875 342.533203125 342.755859375 343.265625 343.962890625 344.638671875 344.724609375 345.140625 346.201171875 346.24609375 346.6796875 347.64453125 348.19140625 348.744140625 352.0338541666667 352.3072916666667 352.4427083333333 352.5143229166667 352.5963541666667 352.6666666666667 352.6731770833333 353.2513020833333 353.9270833333333 354.0325520833333 354.1666666666667 354.451171875 354.6223958333333 354.8645833333333 355.2135416666667 355.53515625 355.6002604166667 355.6796875 355.7877604166667 355.8268229166667 356.0208333333333 356.2864583333333 356.7369791666667 356.8697916666667 357.5299479166667 357.5638020833333 357.8971354166667 358.0260416666667 358.1380208333333 358.2591145833333 358.2708333333333 358.8893229166667 359.2682291666667 359.4596354166667 360.16015625 360.4596354166667 361.046875 361.2669270833333 361.3515625 361.3528645833333 361.4166666666667 361.6653645833333 362.951171875
App start time (CPU/JS) Baseline
Mean: 69.068 %
Stdev: 3.732 % (5.4%)
Runs: 61.9 61.9 63.3 63.9 64.4 65.1 65.2 65.2 65.7 65.8 66.5 66.6 66.6 66.6 66.6 66.6 66.7 67.1 67.1 67.7 67.7 67.8 67.8 67.8 67.9 68.1 68.3 68.3 68.4 68.4 68.5 68.6 68.6 69.1 69.6 69.8 69.9 69.9 69.9 70.2 70.3 70.5 70.6 70.6 71.2 71.3 71.5 72.6 74 74.1 75 75.7 75.9 76 77 77.5 78

Current
Mean: 71.265 %
Stdev: 5.992 % (8.4%)
Runs: 60.5 63.8 63.8 64.6 64.6 65.2 65.2 65.4 65.7 65.8 65.9 65.9 66.1 67 67.1 67.1 67.1 67.1 67.2 67.5 67.7 67.8 68.6 68.6 68.6 68.6 68.6 69.1 69.1 69.1 69.1 69.2 69.5 69.8 69.8 70 70.1 70.7 71 73.2 73.9 73.9 74.2 74.9 75.8 75.9 76.1 76.6 76.9 78.1 78.8 79.8 79.9 81.7 81.8 81.8 82.8 83.6 83.8 84.8
App start time (CPU/UI) Baseline
Mean: 29.063 %
Stdev: 1.460 % (5.0%)
Runs: 25.7 26.5 26.9 27 27.2 27.2 27.2 27.2 27.2 27.6 27.6 27.8 27.8 27.9 28 28.5 28.5 28.5 28.5 28.5 28.5 28.6 28.6 28.9 29.1 29.1 29.1 29.2 29.2 29.2 29.2 29.3 29.3 29.6 29.8 29.8 29.8 29.9 29.9 29.9 29.9 30.1 30.2 30.5 30.6 30.6 30.6 30.6 30.6 31.1 31.1 31.2 31.8 33.2

Current
Mean: 26.976 %
Stdev: 3.808 % (14.1%)
Runs: 18 18 18 19.8 20.1 20.9 21 21.1 21.1 21.6 22.1 23 24 24.1 24.8 25 25.7 26.5 26.8 27.2 27.4 27.5 27.8 27.8 27.8 27.9 27.9 28 28.2 28.3 28.4 28.4 28.4 28.6 28.6 28.8 29.1 29.1 29.2 29.2 29.2 29.3 29.3 29.3 29.5 29.5 29.7 29.8 29.9 29.9 30.4 30.5 30.6 30.6 31 31.1 31.8 31.8 33.2
Open search router TTI Load Search Options Baseline
Mean: 116.060 ms
Stdev: 7.754 ms (6.7%)
Runs: 99.08113600034267 101.01851399987936 101.44840500038117 102.44978799950331 102.937947999686 104.48258499987423 107.07198099978268 107.88692199997604 108.19926000013947 108.47290000040084 110.14445000048727 110.52099600061774 110.5304359998554 110.60892800055444 111.62760500051081 111.63907899986953 111.72819000016898 111.82421899959445 112.20337000023574 112.39176400005817 112.45369399990886 112.85152100026608 113.27339700050652 113.32348699960858 113.5414230003953 113.81245999969542 114.51538100000471 114.64554900024086 114.69287099968642 115.23128200042993 115.70943200029433 115.77189199998975 116.1876220004633 116.73453800007701 116.83764600008726 117.48649100027978 118.07006800081581 119.19221999961883 119.55879699997604 119.6035979995504 119.98156700003892 120.14087000023574 120.42492699995637 120.83662899956107 121.37284300010651 121.47493499983102 121.51074200030416 122.12109400052577 124.67639099992812 124.70365399960428 124.71850500069559 125.37398200016469 126.000732999295 126.06424999982119 126.20634000003338 126.29703800007701 127.03824799973518 128.73706000018865 130.25744700059295 135.91743999999017

Current
Mean: 115.484 ms
Stdev: 6.155 ms (5.3%)
Runs: 103.66027799993753 104.38102200068533 104.52750599943101 105.14005499985069 105.26200299989432 106.68977899942547 106.92606600001454 108.28125 109.24125200044364 109.34155299980193 109.59944699984044 109.73502600006759 110.1633299998939 110.28519700001925 110.44824200030416 110.98278800025582 111.29496300034225 111.99605299998075 112.7518720002845 113.05110600031912 113.12809200026095 113.54882800020278 113.92862999998033 114.24784300010651 114.33146100025624 114.34342399984598 114.41748099960387 114.46651200018823 115.11051400005817 115.81241900008172 116.51013199985027 117.32519499957561 117.41271999944001 117.99735599942505 118.0636800006032 118.07051599957049 118.40877299942076 118.83125799987465 118.86043300013989 118.97277799993753 118.984822999686 119.15832499973476 119.17350299935788 119.62357600033283 119.78735399991274 120.00736500043422 120.05200199969113 120.08211200032383 120.13867199979722 120.36617099959403 120.46801800001413 120.52006000000983 120.61226399987936 120.80249099992216 121.11409500055015 124.84720900002867 128.56591799948364 128.6708579994738 133.03450500033796
Open search router TTI Open Search Router TTI Baseline
Mean: 540.136 ms
Stdev: 59.203 ms (11.0%)
Runs: 431.881021999754 434.2452809996903 436.3767499998212 436.4906000001356 442.70711200032383 443.5006919996813 455.15441999956965 462.8046880001202 463.8856210000813 464.2422289997339 468.0847169999033 468.468791000545 469.16097000055015 483.3352859998122 483.7497560000047 490.3511150004342 491.7100419998169 496.8762210002169 497.85367800015956 503.6653649993241 522.7239180002362 529.7991539994255 531.131226000376 540.3023269996047 540.808796999976 548.7647709995508 552.0882980003953 554.857382000424 556.3321529999375 561.4103190004826 562.16772400029 564.2896730005741 565.0061039999127 565.3492430001497 565.3940019998699 570.3612470002845 570.4392090002075 572.8192950002849 575.3362229997292 575.3723149998114 575.837849999778 577.7342940000817 582.7862559994683 584.3420000001788 586.3388269999996 586.4420579997823 586.8316250005737 586.9753420008346 588.1425380008295 592.340779999271 593.3919270001352 594.4383960003033 594.4674890004098 595.6399340005592 599.1419269992039 599.3501380002126 600.3292650002986 610.9482829999179 619.5613199993968 703.8155930005014

Current
Mean: 526.796 ms
Stdev: 58.753 ms (11.2%)
Runs: 426.62841799948364 430.5539149995893 430.6003009993583 433.0305989999324 435.91036000009626 437.7729089995846 442.2949629994109 446.25358099956065 451.93436700012535 454.3548590000719 456.44177300017327 456.7907720003277 460.0551759991795 467.19982999935746 468.5121260005981 470.03649900015444 478.8162040002644 484.65258800052106 489.02958200033754 495.4054359998554 501.9207359999418 505.0229900004342 507.24637899920344 508.60571299958974 515.1604410000145 519.1472169999033 519.7885340005159 519.8102629994974 525.347289999947 529.7912999996915 534.8510750001296 540.5993649996817 545.6276859994978 548.9292810000479 552.781128000468 554.181762999855 561.2329509994015 561.4230549996719 561.4725339999422 566.5494379997253 566.7289629997686 567.144449999556 571.2176930001006 576.0726730003953 577.4956049993634 577.578857999295 578.5217289999127 579.5448810001835 582.9827479999512 583.1534019997343 586.0868330001831 586.8045649994165 588.874673999846 591.9348149998114 599.6016440000385 611.9959719991311 617.2081709997728 618.7400310002267 621.8680020002648 628.4642340000719
Open search router TTI (CPU) Baseline
Mean: 137.459 %
Stdev: 3.644 % (2.7%)
Runs: 130.47066946812063 130.70717015273627 131.20981646961917 131.30318721103598 132.34514689549812 132.67351990390702 132.8239191528195 132.85686381253316 133.41943118614654 133.69486124257097 134.1634423032059 134.2429518782761 134.8113013700081 134.82804481737148 134.8661135081687 134.9134626906187 134.95919853997987 135.1490618940724 135.15396522623487 135.6784864732661 135.82670634105375 136.27023692856676 136.38163354600127 136.68621202598447 136.71100517735414 136.8642714570859 136.9879564048429 137.1437256190505 137.16520345762666 137.30248551235155 137.33189561471116 137.47524461853203 137.61576685049585 137.7044024411858 137.81644542574318 138.11041548093345 138.29176199047603 138.3752197792972 138.54505540364562 138.72382366215166 138.7377396601221 139.17654991892334 139.28533505218837 139.37989023426002 139.38967791774562 139.72592937021642 139.8770808944622 140.1607655397939 140.25670615604938 140.57645725640185 141.15505525565146 141.46347070609312 142.17251883657278 142.40936394607408 142.51196459032505 143.08102970330359 144.2783388239093 144.86582543896247 145.6602846364168 145.78220451527218

Current
Mean: 137.441 %
Stdev: 3.490 % (2.5%)
Runs: 128.9465250076166 129.3237803948602 130.23610447864004 131.92010815537716 132.18572982882014 132.61113843972666 132.63593166039294 132.87501340960392 133.23017935578272 133.9182204754586 134.35850138798736 134.5005462530156 134.73925608849854 135.0226933842612 135.08378440662324 135.5129164249407 135.6062013707361 135.83011829978545 135.96905753208654 136.04412558852113 136.3768124671332 136.3864252717071 136.8649118540492 137.1797169437208 137.18317701834187 137.22274742726444 137.24697960227587 137.42800113148763 137.61232303965363 137.67254141718388 138.22624106672535 138.28775891844893 138.30245396077302 138.34071455367607 138.34778472817095 138.8341921236658 138.8778749849346 138.8875714259745 138.90531904075928 139.04918209372852 139.0555496109771 139.18147009092817 139.36635442842433 139.44951634410452 139.90761849077535 139.98460087586662 140.26210618559404 140.78897076622104 140.7978686208721 140.88339434693756 140.9602435259431 141.01169603973662 141.70288887914987 142.27784588303712 142.28428969492785 142.3418848104338 142.36450251321688 142.9014815128355 145.7268536264628
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

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
Open search router TTI (RAM) Baseline
Mean: 358.785 MB
Stdev: 2.631 MB (0.7%)
Runs: 354.2978515625 354.9833984375 355.029296875 355.1943359375 355.669921875 355.7373046875 355.9169921875 356.05859375 356.1611328125 356.244140625 356.3759765625 356.52734375 356.5712890625 356.771484375 356.8837890625 356.9140625 356.9150390625 356.9453125 356.96875 357.236328125 357.322265625 357.3466796875 357.3916015625 357.4267578125 357.4873046875 357.5537109375 357.576171875 357.798828125 357.873046875 358.2021484375 358.203125 358.4853515625 358.86328125 359.2724609375 359.341796875 359.5537109375 359.6640625 359.791015625 359.859375 359.9921875 360.13671875 360.1708984375 360.181640625 360.2314453125 360.2880859375 360.314453125 360.369140625 360.8388671875 360.935546875 361.470703125 361.5126953125 361.93359375 362.28125 363.1484375 363.79921875 364.2744140625 364.6064453125 364.615234375 364.7734375

Current
Mean: 360.606 MB
Stdev: 2.642 MB (0.7%)
Runs: 354.3994140625 356.365234375 356.736328125 356.7841796875 357.083984375 357.5537109375 357.7255859375 357.943359375 357.978515625 357.982421875 358.345703125 358.3759765625 358.4638671875 358.5126953125 358.517578125 358.615234375 358.80078125 358.83984375 358.978515625 359.09375 359.1884765625 359.3486328125 359.443359375 359.5126953125 359.90625 360.0556640625 360.123046875 360.1748046875 360.521484375 360.697265625 360.72265625 360.83203125 360.8603515625 360.931640625 361.15234375 361.2255859375 361.3193359375 361.412109375 361.5078125 361.509765625 361.70703125 361.7236328125 361.8662109375 361.9248046875 361.96484375 361.99609375 362.09375 362.3115234375 362.5283203125 363.0712890625 363.8271484375 364.373046875 364.404296875 364.6015625 364.7138671875 365.9794921875 366.0791015625 366.5 366.5419921875
Open search router TTI (CPU/JS) Baseline
Mean: 69.732 %
Stdev: 2.746 % (3.9%)
Runs: 64.8 65.4 65.8 65.9 66 66.2 66.3 66.4 66.6 66.8 66.9 66.9 66.9 67.4 67.4 67.7 68.2 68.3 68.4 68.5 68.5 68.7 68.7 68.9 69 69 69.4 69.4 69.4 69.5 69.7 69.8 69.9 69.9 69.9 70.1 70.3 70.3 70.4 70.4 70.5 70.6 70.7 70.9 71.1 71.4 71.5 71.6 71.9 72.4 72.5 72.9 73.3 73.4 73.5 73.9 75.7 75.9 75.9 76.3

Current
Mean: 70.502 %
Stdev: 2.516 % (3.6%)
Runs: 66.4 66.5 66.9 67 67.1 67.5 67.7 68.1 68.1 68.4 68.4 68.5 68.5 68.5 68.7 68.8 68.8 68.9 68.9 69 69.2 69.3 69.4 69.5 69.5 69.7 69.9 69.9 70 70 70 70.1 70.4 70.4 70.4 70.4 70.5 71 71.1 71.1 71.2 71.4 72 72.4 72.4 72.5 72.5 72.5 73 73.4 73.5 73.6 73.7 73.8 74.3 74.5 75.6 77.4 77.4
Open search router TTI (CPU/UI) Baseline
Mean: 27.500 %
Stdev: 1.503 % (5.5%)
Runs: 24.3 24.8 24.8 24.9 24.9 25 25.7 25.9 25.9 25.9 26.1 26.1 26.3 26.4 26.4 26.4 26.4 26.6 26.9 26.9 27 27 27 27.3 27.4 27.4 27.4 27.4 27.5 27.5 27.6 27.8 27.8 27.9 27.9 27.9 27.9 27.9 28 28 28.3 28.3 28.4 28.4 28.4 28.4 28.6 28.8 28.9 29.2 29.3 29.4 29.4 29.4 29.9 29.9 30.3 30.4 30.6

Current
Mean: 26.878 %
Stdev: 1.565 % (5.8%)
Runs: 23.9 23.9 24.3 24.5 24.8 24.9 24.9 25.3 25.3 25.3 25.4 25.4 25.5 25.7 25.8 25.9 25.9 25.9 25.9 26 26.1 26.2 26.2 26.2 26.2 26.4 26.4 26.4 26.7 26.9 26.9 26.9 26.9 26.9 26.9 27 27.1 27.4 27.4 27.4 27.4 27.8 27.8 27.9 27.9 27.9 28.1 28.3 28.3 28.4 28.5 28.7 28.9 29.2 29.3 29.3 29.4 29.8 30.4 30.4
Report typing Composer typing rerender count Baseline
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Current
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Report typing Message sent Baseline
Mean: 417.579 ms
Stdev: 30.840 ms (7.4%)
Runs: 363.53125 367.0695390002802 371.80883799958974 371.83341499976814 375.2179359998554 375.934203999117 377.2204999998212 381.29052700009197 381.90913899987936 382.7014159997925 383.62141900043935 383.8304440006614 386.1348480004817 387.11466500069946 391.556599999778 391.8200689991936 392.7167560001835 393.60026099998504 396.97981799952686 399.0620120000094 399.57458500005305 401.8549810005352 403.09879600070417 403.11694400012493 403.63623099960387 408.4433189993724 410.05155500024557 412.1400549998507 413.95939199998975 416.4088139999658 417.0447999993339 419.9478360004723 422.43387900013477 422.6323240008205 424.0789390001446 427.7289230003953 430.12243700027466 433.1023360006511 434.8440350005403 439.2661539996043 440.7280679997057 442.62483800016344 443.15921999979764 444.25793500058353 444.52075199969113 444.8741049999371 445.193237000145 446.1697180001065 446.9367680000141 448.01822900027037 448.8330889996141 449.93469300027937 450.8614100003615 455.28381300065666 456.9669189993292 457.3992929998785 462.1757399998605 462.9736730000004 465.2194830002263 500.1560469996184

Current
Mean: 419.248 ms
Stdev: 30.895 ms (7.4%)
Runs: 370.15852899942547 371.9055989999324 372.0960699999705 375.64900800026953 376.003133000806 376.3964029997587 377.7714439993724 377.98604299966246 380.0392660005018 380.4734699996188 382.6489260001108 385.37251800019294 386.15450099948794 388.1163329994306 389.1190600004047 390.29414900019765 391.2933760005981 393.04870599973947 395.4077559998259 396.2604580000043 398.58125799987465 405.85611999966204 405.93575100041926 408.2671719994396 411.38537599984556 412.10844000056386 413.09851100016385 415.07177700009197 416.7978520002216 417.0240070000291 419.3980299998075 420.44209800008684 421.76143399998546 429.7261560000479 429.9617510000244 430.47973599936813 431.4184170002118 436.57340499944985 439.83325199969113 441.29077100008726 443.5875660004094 446.1363939996809 446.3090420002118 446.4516599997878 446.6856279997155 447.6831470001489 448.20898499991745 448.52319400012493 449.900512999855 453.59147199988365 455.2024739999324 456.0159919997677 456.0168050006032 456.02644899953157 456.4892180003226 460.35079000052065 460.9167889999226 467.7480469997972 471.62792999949306 476.17826400045305
Report typing (CPU) Baseline
Mean: 98.776 %
Stdev: 3.625 % (3.7%)
Runs: 90.34828193250755 90.64962366837965 93.47433486937354 93.49556389335669 94.51454359559288 94.64074362301878 94.7640688139393 95.17458004491944 95.4205054578536 95.65779782221402 95.9085752456383 95.92792843625334 96.10964282874035 96.14439291070266 96.16071325195125 96.37912766676509 96.43066827480722 96.69612123242577 96.77763915935894 96.82773421522737 96.8840356158068 96.99547998969152 97.0019114690653 97.26014424847759 97.37654502849043 97.47731684489125 97.48803397013621 97.6426588456408 98.2306227107169 98.32908439404437 98.52535757776892 98.56969919193352 98.62511694568589 98.70125075471918 98.78153732380052 98.85678803750874 98.97687186931573 99.07798881128268 99.61179088373035 99.67513438558667 100.01784729055473 101.02806903984722 101.21742616509333 101.68929131732733 101.71489381054205 101.73836662169693 101.76019253464877 102.01652435032415 102.25171492336244 102.45024629521697 102.86462816021786 103.17672247391701 103.42274348180095 103.49472915160918 104.12239076551089 104.59755331188683 104.86494141913077 105.43828388289602 106.3427440857529 106.76302027605234

Current
Mean: 98.609 %
Stdev: 4.296 % (4.4%)
Runs: 88.0561176682508 88.1240720013657 91.73050249859968 92.28125757902208 92.33779128200678 93.8152668358911 93.8263872233921 94.22198236221027 94.24504556836303 94.51792084921415 94.77437351537714 95.42644818442177 95.65755729879675 95.79664413198205 95.82993027559948 95.8383106108184 96.10001138491432 96.32823533606414 96.33135093491941 96.46473851175712 96.53389504320408 96.58808081388469 97.06979535642638 97.38202960647843 97.42030473241095 97.49843231456909 97.49957410723972 97.67324530609878 97.82282997053767 97.98562273338167 98.15322610482126 98.23122775489585 98.65760618847774 98.75254695433433 99.49230331618493 99.5125339572627 99.81083731706191 99.98537596256575 100.57526019840297 100.64363338750091 100.66732548689023 100.78574805975713 100.98270990589236 101.13468079114074 101.5711649385249 101.69827579310432 101.99086958158412 102.17566555136243 102.35515515688813 102.79488382702252 102.9016807862692 103.50192688944699 103.9348825953233 103.93881300552002 104.20647468417407 105.21222094069421 105.89196796535526 106.32112789567034 107.30835781909626 108.18190030273767
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

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: 489.198 MB
Stdev: 4.901 MB (1.0%)
Runs: 480.36089409722223 481.0505642361111 481.3372395833333 482.3025173611111 482.376953125 482.6341145833333 482.7994791666667 483.28199404761904 483.5629111842105 483.6611842105263 483.97894965277777 484.36436631944446 484.83832465277777 484.9296875 484.96875 485.24327256944446 485.5123697916667 486.41102430555554 486.4157986111111 487.3125 487.5353732638889 487.66449652777777 487.96961805555554 487.9818359375 488.1451822916667 488.17816840277777 489.10546875 489.4318576388889 489.59613715277777 489.7013888888889 489.90907118055554 489.95703125 490.03363715277777 490.20594618055554 490.5358072916667 490.708984375 490.73719618055554 490.85894097222223 491.095703125 491.18277138157896 491.62870065789474 491.6969572368421 491.9019325657895 492.0026041666667 492.31011284722223 492.53597861842104 492.82924107142856 493.3131167763158 493.66282894736844 493.72569444444446 494.28824013157896 494.90439967105266 495.1354166666667 497.3122829861111 497.72635690789474 498.5396792763158 499.154296875 502.9661458333333

Current
Mean: 489.917 MB
Stdev: 4.562 MB (0.9%)
Runs: 480.91254340277777 481.9396701388889 482.95659722222223 483.43446180555554 483.47699652777777 483.54014756944446 483.81011284722223 484.0705295138889 484.7150607638889 485.0358072916667 485.4019325657895 485.59266493055554 485.8020833333333 485.92274305555554 485.93706597222223 486.64409722222223 487.13823784722223 487.24652777777777 487.419921875 487.5891927083333 488.0974392361111 488.17686631944446 488.26063368055554 488.33897569444446 488.36436631944446 488.51215277777777 488.6576891447368 489.36842105263156 489.75151909722223 489.86957465277777 490.2582236842105 490.6334292763158 490.63795230263156 490.8408203125 490.8732638888889 491.1799045138889 491.24262152777777 491.25855654761904 491.64041940789474 492.166796875 492.19032118055554 492.2997532894737 492.3650173611111 492.580078125 492.7897135416667 493.81332236842104 494.4449013157895 494.48745888157896 494.64370888157896 494.8075657894737 495.03515625 495.0805921052632 495.6979166666667 495.9584703947368 497.0451388888889 497.5865542763158 497.67886513157896 499.36241319444446 500.5256990131579
Report typing (CPU/JS) Baseline
Mean: 45.853 %
Stdev: 3.123 % (6.8%)
Runs: 39.4 39.9 41.2 41.2 41.5 41.8 41.9 42.3 42.3 42.5 42.7 42.8 42.9 43.1 43.3 43.3 43.6 44.3 44.3 44.3 44.5 44.5 44.7 44.8 44.8 44.9 45 45 45.4 45.4 45.5 45.7 45.9 45.9 46.1 46.2 46.2 47.2 47.2 47.4 47.5 47.8 48.1 48.1 48.2 48.7 48.8 48.9 49 49.2 49.4 49.9 50.1 50.2 50.2 50.7 50.8 51.4 51.5 51.8

Current
Mean: 46.008 %
Stdev: 3.325 % (7.2%)
Runs: 37.9 39.2 41.4 41.8 41.9 41.9 41.9 42.4 42.4 42.7 42.8 43.1 43.2 43.2 43.4 43.4 43.7 44 44.1 44.2 44.4 44.4 44.6 44.7 44.9 44.9 45.1 45.1 45.3 45.5 45.5 45.6 45.6 46.1 46.6 46.9 47.1 47.3 47.5 47.6 47.7 47.8 48.3 48.8 48.9 48.9 48.9 49.2 49.2 49.3 49.5 49.5 50.1 50.7 51.1 51.2 51.3 52 52.1 52.7
Report typing (CPU/UI) Baseline
Mean: 25.049 %
Stdev: 0.729 % (2.9%)
Runs: 23.1 23.7 23.7 23.8 24 24 24 24.3 24.4 24.5 24.5 24.5 24.5 24.5 24.6 24.6 24.6 24.7 24.7 24.8 24.8 24.8 24.8 24.8 24.9 24.9 24.9 25 25 25.1 25.1 25.1 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.3 25.3 25.4 25.5 25.5 25.6 25.6 25.7 25.7 25.7 25.8 25.8 26 26.1 26.1 26.2 26.3 26.3 26.4 26.5

Current
Mean: 25.007 %
Stdev: 0.876 % (3.5%)
Runs: 23.1 23.4 23.5 23.5 23.6 23.7 23.8 23.8 23.9 24 24.1 24.3 24.3 24.4 24.5 24.6 24.6 24.6 24.6 24.7 24.7 24.7 24.7 24.8 24.8 24.8 24.8 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.2 25.2 25.3 25.3 25.3 25.4 25.4 25.4 25.4 25.6 25.6 25.7 25.8 25.9 25.9 25.9 25.9 25.9 26.2 26.4 26.4 26.4 26.6 26.6 26.7
Chat opening Chat TTI Baseline
Mean: 506.798 ms
Stdev: 34.626 ms (6.8%)
Runs: 425.8739829994738 443.87105299998075 445.3430180000141 446.2716469988227 450.5407720003277 453.1083579994738 456.57332399953157 457.410157000646 458.12031999975443 458.4610190000385 464.2663979995996 467.9356279997155 471.3795979991555 473.10314899962395 475.52897199988365 477.45886299945414 482.90307699982077 490.0312090003863 502.12845900002867 503.6011150004342 506.01932800002396 506.8086350001395 506.8924159994349 508.3038739999756 509.0824379995465 509.14107199944556 510.1496999999508 511.9785979995504 512.2887779995799 514.0066729998216 514.8034669999033 515.0576990004629 515.9340420002118 516.613078000024 516.759561999701 517.9454349996522 518.2992759998888 519.1552329994738 520.1239010002464 520.4914560001343 522.0268959999084 522.2821450000629 522.8787839999422 524.1485190000385 530.1619460005313 530.2260339995846 533.7392990002409 535.599813000299 536.546468000859 538.1850180001929 539.7108570002019 547.6307369992137 548.7917080000043 549.3407800002024 549.7244060002267 553.9019369995221 554.9412430003285 559.041422999464 559.2475180001929 575.9991049999371

Current
Mean: 495.488 ms
Stdev: 31.257 ms (6.3%)
Runs: 434.28658100031316 436.10420700069517 448.80562299955636 453.14807200059295 455.6626789998263 456.27010099962354 459.3215339994058 461.23335800040513 462.39021900016814 464.62276200018823 465.8824469996616 466.11364800017327 467.0401619998738 470.0491939987987 471.4123940002173 472.4627689998597 473.8582349997014 473.9564620004967 477.743815000169 478.74829200003296 479.4924729997292 480.15999399963766 481.85876500047743 481.9222410004586 482.946940000169 485.1318359998986 485.40486699994653 487.4213049998507 487.57446299958974 488.0958260009065 491.1232909997925 491.593465000391 496.81302999984473 497.6340330000967 497.87223399989307 502.02945999987423 503.4533689999953 505.1582030002028 506.5950119998306 506.78735399991274 508.65315799973905 511.9549569999799 514.1595860002562 518.1656090002507 520.7124429997057 522.51794399973 523.449706999585 523.9812429994345 524.23205600027 529.6621100008488 530.4011639999226 532.191366000101 534.4775800006464 536.3834640001878 538.4816079996526 540.6725259991363 547.6024179998785 551.4728189995512 553.8764650002122 578.0238439999521
Chat opening (CPU) Baseline
Mean: 141.635 %
Stdev: 4.841 % (3.4%)
Runs: 131.80961747656517 131.932571568908 132.5684264713417 132.81134136046197 133.11991244218243 133.77144946098585 134.29247743763005 135.40605563978124 136.30289059380257 137.2919528735769 137.56250265942944 137.64791229608758 138.12299317581156 138.15238751560793 138.34717170303375 138.72217829681853 138.74363458466934 138.7508421839358 139.22811633194843 139.83715325283416 139.87061179820654 140.53028159201025 140.68655926614068 140.7185716666102 140.8080319142224 140.95712151951116 141.1989933674021 141.2079417064484 141.3565040785084 141.38977084959689 141.65412188250102 141.7198431821617 141.88055744055333 142.6960584096973 142.98772738209547 143.0735205260794 143.30206250972452 143.3286395096774 143.4240856162457 143.6094014753793 143.77406245259363 143.85475516708075 143.9457048262655 144.0943014762047 144.3232264715439 144.70767136234582 145.05140961858015 145.25890441241165 146.33218077516858 146.86144543394755 147.149711293989 147.22042881555154 147.82744217187317 148.55102071522117 149.1135748265248 149.426363164562 149.4264562207526 149.76453244285128 149.8215821838754 150.77705088549885

Current
Mean: 142.024 %
Stdev: 4.915 % (3.5%)
Runs: 129.80879226528006 132.35177474780377 132.89152908992588 134.68890947164948 134.77382885769174 135.41873866064446 135.8624380740721 136.1079575638542 136.81455415861507 136.8628230616302 136.90141010359977 137.73970043554385 138.4679972657881 138.62315859073024 138.67320285980887 139.22332767096205 139.29506165630545 139.45346884632738 139.4602400299831 139.7266892507904 140.1716226294597 140.1762472147296 140.20112302099386 140.30475802855597 140.91230171094134 141.1235147192905 141.19912137744942 141.27790288827154 141.4003035240493 141.66165025505276 141.7014375110043 141.79723176323424 141.97777497790852 142.76365256155268 142.94692711930367 143.5443821955977 143.8258726191979 144.2254831957863 144.2572603594121 144.3601870254825 144.40194098766355 144.5983684310378 144.65587166059385 144.7620960861577 144.9641975870125 145.66198824488552 145.79273991680472 145.80658603112502 146.024329150252 146.4224463204803 146.60883957464588 148.3128337649951 148.557059036707 149.72205690091258 149.8095902939619 149.83047515679786 150.29879255477846 150.37459753178817 150.5529401839277 151.30460990369863
Chat opening (FPS) Baseline
Mean: 59.891 FPS
Stdev: 0.182 FPS (0.3%)
Runs: 59.38296253606414 59.43151346134659 59.45555402236009 59.45814536609179 59.491461030782645 59.517500440234116 59.60475637719429 59.67898328205132 59.73401700739603 59.73786572623106 59.75699839503927 59.758370713871955 59.82717222384939 59.853580765620876 59.87862507638765 59.90485869246477 59.91769675965536 59.93252221735783 59.947935514873265 59.95070300062608 59.990722312906804 59.99747835126605 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 371.519 MB
Stdev: 10.267 MB (2.8%)
Runs: 353.5107421875 353.841796875 353.876953125 353.8896484375 354.8447265625 355.712890625 356.1376953125 356.4775390625 356.85546875 356.974609375 357.1025390625 357.4169921875 358.1513671875 358.287109375 359.544921875 359.60546875 360.1943359375 362.9384765625 364.21484375 368.1806640625 370.2421875 372.0712890625 372.2666015625 372.8037109375 372.99609375 373.44921875 375.0068359375 375.2314453125 375.265625 375.544921875 375.8154296875 376.623046875 376.86328125 377.0478515625 377.0908203125 377.826171875 377.92578125 378.5927734375 378.6728515625 378.9638671875 379.439453125 379.5166015625 379.5244140625 379.697265625 379.6982421875 379.759765625 380.0185546875 380.216796875 380.3984375 380.462890625 381.109375 381.3662109375 381.7822265625 381.953125 382.2705078125 382.423828125 383.048828125 383.1240234375 383.5458984375 383.703125

Current
Mean: 376.772 MB
Stdev: 3.042 MB (0.8%)
Runs: 370.1650390625 370.423828125 371.1455078125 371.7060546875 371.7470703125 372.271484375 372.5576171875 373.4814453125 373.9375 374.5625 374.65234375 374.6630859375 375.1982421875 375.26171875 375.30078125 375.37109375 375.7783203125 375.8681640625 375.935546875 375.9365234375 376.01171875 376.0927734375 376.35546875 376.443359375 376.546875 376.625 376.888671875 377.0595703125 377.3388671875 377.3701171875 377.5224609375 377.6064453125 377.83203125 377.8544921875 378.0859375 378.287109375 378.849609375 378.94140625 379.1513671875 379.1767578125 379.6943359375 380.08203125 380.0869140625 380.220703125 380.53125 380.5341796875 380.6875 380.7294921875 381.9326171875 382.4326171875 382.4423828125
Chat opening (CPU/JS) Baseline
Mean: 69.146 %
Stdev: 1.863 % (2.7%)
Runs: 64.8 65.6 65.8 65.9 66.4 66.7 66.7 66.7 66.9 67 67.4 67.5 67.5 67.7 68.1 68.1 68.1 68.2 68.3 68.4 68.4 68.5 68.8 68.8 68.9 68.9 68.9 69 69 69.1 69.2 69.2 69.5 69.5 69.6 69.8 69.8 69.9 69.9 70.1 70.2 70.3 70.3 70.3 70.4 70.5 70.5 70.5 70.7 71.3 71.4 71.4 71.4 71.7 71.9 72 72.4 72.8 73

Current
Mean: 71.212 %
Stdev: 1.820 % (2.6%)
Runs: 66.9 68.1 68.4 68.4 68.8 68.8 68.8 68.9 68.9 69 69.1 69.4 69.4 69.8 70.1 70.2 70.4 70.4 70.4 70.4 70.5 70.5 70.7 70.8 70.9 70.9 70.9 71 71 71.1 71.4 71.4 71.4 71.5 71.9 71.9 71.9 72 72.3 72.4 72.4 72.4 72.4 72.4 72.6 72.7 72.9 72.9 73 73.2 73.4 73.5 73.7 73.8 73.9 74.2 74.3 75.6
Chat opening (CPU/UI) Baseline
Mean: 29.621 %
Stdev: 1.289 % (4.4%)
Runs: 26.9 26.9 27.2 27.5 27.6 27.7 28 28.1 28.2 28.3 28.4 28.4 28.4 28.5 28.6 28.7 28.8 28.8 28.9 29 29.1 29.3 29.4 29.4 29.5 29.6 29.7 29.8 29.9 29.9 29.9 29.9 29.9 29.9 30 30 30.2 30.2 30.3 30.4 30.4 30.4 30.4 30.4 30.5 30.6 30.8 30.9 31 31.1 31.2 31.3 31.3 31.3 31.4 31.7 31.7 32.4

Current
Mean: 29.317 %
Stdev: 1.564 % (5.3%)
Runs: 26 26.4 26.8 26.8 26.9 27.1 27.3 27.5 27.5 27.7 27.8 27.8 27.9 27.9 28 28.1 28.2 28.4 28.4 28.4 28.5 28.6 28.7 28.9 29 29.1 29.2 29.2 29.4 29.4 29.4 29.7 29.8 29.8 29.9 29.9 29.9 30 30 30 30.1 30.2 30.3 30.4 30.4 30.5 30.7 30.9 30.9 31.1 31.1 31.3 31.4 31.4 31.4 31.7 31.9 31.9 32.8
Linking (CPU) Baseline
Mean: 148.604 %
Stdev: 3.252 % (2.2%)
Runs: 141.52661688484127 142.51809713054647 142.6628406420556 143.22575312000387 143.3858072888955 143.3973772257603 143.46709034623586 144.4280405158888 145.2093657686185 145.25861980008813 145.3306897066335 145.86514028555536 145.88415946078564 146.19339877622983 146.22533822150936 146.4693133917964 146.48945083137474 146.7880588612533 146.78986780754568 146.9138089872977 146.97285781622284 147.33636337416334 147.4757784574112 147.605458339163 147.6317285125963 147.76422031852792 148.36112155539172 148.6003621398013 148.83951293348804 148.98244739285042 149.16114384776267 149.3294415092342 149.41610855552346 149.48104313710206 149.5025929731104 149.54055871469168 149.98843216394863 150.00725575635943 150.32188968147904 150.34008385808275 150.5774333035422 150.97330639924974 151.04747045717963 151.11347097840212 151.41635934750082 151.42166279156493 151.57812354950826 152.09587511241 152.15450723216992 152.19350615124972 152.41502431730055 152.53349462736534 152.56649456557483 152.7620083231971 153.24677173874386 153.25085843761343 153.29527225570916 153.967446442114 154.35090880023304

Current
Mean: 148.458 %
Stdev: 3.286 % (2.2%)
Runs: 140.5508537660412 141.41739328945465 143.09608249956847 143.29061805717387 143.68487059405035 143.9299307047192 144.39491338491018 144.4087520638675 145.04239400431598 145.08672824708512 145.3338004078093 145.66664165515832 145.70635417019744 145.80539893243318 145.8251465197096 145.92109408947928 145.94337739461315 146.39934616520762 146.42613872805157 146.76530700293236 146.8006472504599 146.9405241813332 146.98776465673205 147.57433092742744 147.72527877347693 148.02889488196678 148.1495910290944 148.31249537749045 148.50489529647982 148.5079460671225 148.55470219133568 148.5941531404323 149.01228924304948 149.0630045975933 149.114684309999 149.2302102985992 149.57203456946013 149.83676092915744 149.99133579207313 150.35168571483504 150.72517402058017 150.85092111838108 151.11223888777658 151.35157378748391 151.36287623046678 151.4406685844561 151.45158861490924 151.4682403276 151.4812211043058 151.50866606747155 151.5468449455342 151.61888178439057 151.73652837468498 151.7369187664978 152.2755828119771 153.10440281761134 153.39653357441816 153.50962830167188 154.18460621139138 156.0902663270249
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

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
Linking (RAM) Baseline
Mean: 410.166 MB
Stdev: 4.229 MB (1.0%)
Runs: 400.0768229166667 402.248046875 403.1731770833333 403.9270833333333 404.005859375 404.5553385416667 404.6399739583333 404.8997395833333 405.38671875 405.4889322916667 405.5201822916667 405.7571614583333 406.0234375 406.7044270833333 406.791015625 406.8483072916667 407.3697916666667 407.8658854166667 408.1087239583333 408.1106770833333 408.2180989583333 408.9537760416667 409.1236979166667 409.310546875 409.5716145833333 409.6490885416667 409.650390625 409.7096354166667 409.8274739583333 410.0891927083333 410.2858072916667 410.4440104166667 410.6061197916667 410.6985677083333 410.8111979166667 410.908203125 411.1263020833333 411.1647135416667 411.7259114583333 411.8463541666667 412.0208333333333 412.6243489583333 412.8046875 412.955078125 413.2434895833333 413.2890625 413.9212239583333 414.603515625 414.6536458333333 414.669921875 414.9563802083333 415.0774739583333 415.4752604166667 415.6204427083333 415.76171875 416.783203125 416.9153645833333 417.7259114583333 417.8001302083333 417.806640625

Current
Mean: 410.632 MB
Stdev: 5.221 MB (1.3%)
Runs: 398.318359375 399.884765625 400.0859375 401.583984375 403.87109375 404.1555989583333 404.1959635416667 404.3463541666667 405.0358072916667 405.0768229166667 405.3684895833333 405.3873697916667 405.6907552083333 406.19140625 406.4674479166667 406.5149739583333 407.1692708333333 407.87109375 408.0442708333333 408.8235677083333 408.8639322916667 408.908203125 409.1334635416667 409.3802083333333 409.9596354166667 410.0592447916667 410.259765625 410.6712239583333 411.212890625 411.380859375 411.5416666666667 411.6282552083333 411.7838541666667 412.802734375 413.3489583333333 413.3860677083333 413.4856770833333 413.5234375 413.576171875 413.5846354166667 413.63671875 414.162109375 414.4368489583333 414.5768229166667 414.9908854166667 415.001953125 415.224609375 415.3463541666667 415.7063802083333 416.64453125 416.7239583333333 416.7877604166667 416.8040364583333 417.5403645833333 417.6477864583333 418.12109375 418.3235677083333 422.390625
Linking (CPU/JS) Baseline
Mean: 79.776 %
Stdev: 1.468 % (1.8%)
Runs: 76.5 76.5 76.9 77.3 77.5 77.6 77.8 77.9 78.3 78.4 78.5 78.6 78.6 78.6 78.7 78.8 78.9 78.9 79.1 79.2 79.2 79.3 79.3 79.3 79.4 79.5 79.7 79.7 79.8 80.1 80.1 80.2 80.2 80.2 80.3 80.3 80.4 80.5 80.6 80.6 80.6 80.6 80.6 80.6 80.7 80.7 80.8 80.9 81 81.4 81.5 81.7 81.8 81.8 81.9 81.9 81.9 82.2 82.9

Current
Mean: 79.950 %
Stdev: 1.916 % (2.4%)
Runs: 75 76.4 76.6 76.7 77.2 77.6 77.7 77.9 77.9 77.9 78 78.1 78.2 78.3 78.4 78.7 78.8 78.8 79.1 79.2 79.2 79.3 79.5 79.6 79.6 79.7 79.7 79.8 79.9 79.9 79.9 79.9 80 80.2 80.2 80.3 80.5 80.7 80.9 80.9 81.1 81.2 81.3 81.3 81.3 81.3 81.3 81.5 81.5 81.8 81.8 82 82 82.1 82.2 82.6 83 83 83.6 84.9
Linking (CPU/UI) Baseline
Mean: 28.608 %
Stdev: 1.624 % (5.7%)
Runs: 25.2 25.2 25.6 26.5 26.5 26.5 26.8 27.1 27.2 27.3 27.4 27.5 27.5 27.6 27.6 27.6 27.6 27.6 27.6 27.7 27.9 28 28.1 28.1 28.1 28.2 28.3 28.3 28.3 28.5 28.5 28.5 28.5 28.5 28.5 28.6 28.6 28.8 28.8 28.9 29 29.1 29.2 29.3 29.6 29.6 29.6 29.8 29.8 30.1 30.2 30.6 31 31.3 31.4 31.5 31.5 31.6 32.1 32.6

Current
Mean: 28.410 %
Stdev: 1.584 % (5.6%)
Runs: 24.6 24.9 25.2 25.7 26.1 26.2 26.8 26.9 27.1 27.2 27.2 27.5 27.5 27.6 27.6 27.6 27.6 27.7 27.7 27.8 27.9 27.9 27.9 27.9 28 28.1 28.2 28.2 28.2 28.3 28.3 28.4 28.5 28.5 28.6 28.6 28.9 28.9 28.9 28.9 28.9 28.9 29 29.1 29.6 29.6 29.6 29.7 29.7 29.8 29.9 30.2 30.2 30.8 30.8 30.9 31.5 31.8 32.6

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/rafecolton in version: 9.0.64-0 🚀

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

Copy link
Contributor

🚀 Deployed to production by https://github.com/chiragsalian in version: 9.0.64-4 🚀

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

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

Successfully merging this pull request may close these issues.

6 participants