Skip to content

Empty report chat view #59804

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

Conversation

sumo-slonik
Copy link
Contributor

@sumo-slonik sumo-slonik commented Apr 8, 2025

Explanation of Change

Fixed Issues

$ #59502
PROPOSAL:

Tests

  1. Go to any workspace and check if the empty report is displayed correctly.
  2. Go to the "Search" tab → "Expense Reports".
  3. There should be new report headers.
  4. Check if the empty state is displayed correctly in the Search view as well.
  • Verify that no errors appear in the JS console

Offline tests

Unnesesary

QA Steps

Same as test

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I used JaimeGPT to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Screen.Recording.2025-04-08.at.16.14.54.mov
Android: mWeb Chrome
mobile.android.mov
iOS: Native
Screen.Recording.2025-04-08.at.15.29.23.mov
iOS: mWeb Safari
ios.mobile.mov
MacOS: Chrome / Safari
web.mov
MacOS: Desktop

Uploading desktop.mov…

# Conflicts:
#	src/components/ReportActionItem/MoneyRequestReportPreview/MoneyRequestReportPreviewContent.tsx
#	src/components/Search/index.tsx
#	src/components/SelectionList/Search/ReportListItem.tsx
@shawnborton
Copy link
Contributor

Based on your video, it looks like the header area has too much padding:
CleanShot 2025-04-08 at 15 04 20@2x

From Figma, the outer wrapper of the entire card should have 8px vertical padding. Then just the top header portion should have 6px vertical padding:
CleanShot 2025-04-08 at 15 07 53@2x

This way that header area gets a height of 52px, which is a standard height we use for UI components. Same with the expense rows, this way they each are 52px tall and the 6px vertical padding gives us 12px between rows:
CleanShot 2025-04-08 at 15 09 39@2x

@sumo-slonik
Copy link
Contributor Author

sumo-slonik commented Apr 8, 2025

I set the right and left padding to be the same as in the child (12 instead of 16 as in Figma). This is because we’re not using the new row component here yet — that will be done in a separate PR — and I wanted things to be aligned with the children.

I explained more about it here. As for the top and bottom padding, I'm already working on the fixes.

@shawnborton
Copy link
Contributor

Sounds good, keep me posted!

Copy link
Member

@Kicu Kicu left a comment

Choose a reason for hiding this comment

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

Good job 👍 I only left minor comments and nitpicks

</View>
<Button
success
text="PLACEHOLDER BUTTON"
Copy link
Member

Choose a reason for hiding this comment

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

probably we need to update this text?

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 don't think so — after merging the header buttons, there will be a primary button here, and this is just a placeholder that I'll remove later.

import useTheme from '@hooks/useTheme';
import useThemeStyles from '@hooks/useThemeStyles';

function EmptyRequestReport() {
Copy link
Member

Choose a reason for hiding this comment

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

NAB but I wanted to propose a different name, reasons:

  1. Report has some special meaning and just plain word report means usually a full-screen report view, or report-data.
  2. we shouldn't use the name RequestReport because there is no such thing. There is MoneyRequestReport, but if we cut out the "money" part then it gets confusing

My suggestions:

  • EmptyMoneyRequestReportPreview
  • MoneyRequestReportPreviewSkeleton
  • EmptyReportPreview

or anything similar

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'm already taking care of the changes

<DelegateNoAccessModal
isNoDelegateAccessMenuVisible={isNoDelegateAccessMenuVisible}
onClose={() => setIsNoDelegateAccessMenuVisible(false)}
{transactions.length === 0 && <EmptyRequestReport />}
Copy link
Member

Choose a reason for hiding this comment

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

tiny nitpick, but since empty report preview is an important case, I suggest we extract the check to a const:
const shouldShowEmptyPlaceholder = transactions.length === 0

import type * as OnyxTypes from '@src/types/onyx';
import ActionCell from './ActionCell';

type MoneyReportHeaderProps<TItem extends ListItem> = {
Copy link
Member

Choose a reason for hiding this comment

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

I think this name is a mistake?

Suggested change
type MoneyReportHeaderProps<TItem extends ListItem> = {
type ReportListItemHeaderProps<TItem extends ListItem> = {

@@ -51,7 +51,7 @@ function canUseCustomRules(betas: OnyxEntry<Beta[]>): boolean {
}

function canUseTableReportView(betas: OnyxEntry<Beta[]>): boolean {
return !!betas?.includes(CONST.BETAS.TABLE_REPORT_VIEW) || canUseAllBetas(betas);
return true;
Copy link
Member

Choose a reason for hiding this comment

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

Remove me! :D

Copy link
Contributor Author

Choose a reason for hiding this comment

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

good catch 🦉

@@ -11,6 +11,10 @@ export default {
margin: 0,
},

m1: {
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 have to add this value for literally only a single new case of margins? I think we can come up with something better :)

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 think this might be useful in the future as well. We don’t have m1:4 defined anywhere, but this kind of spacing scale does appear sometimes in mockups. If we never add it to our spacing system, we’ll always end up hardcoding it directly in styled components. It seems quite reasonable to include it in the spacing scale. We also discussed this with @SzymczakJ during his review.

@@ -518,8 +518,7 @@ function getReportSections(data: OnyxTypes.SearchResults['data'], metadata: Onyx
}
}

// Filter out reports with no transactions to prevent the wrong number of the selected options
return Object.values(reportIDToTransactions).filter((report) => report.transactions.length);
return Object.values(reportIDToTransactions);
Copy link
Member

Choose a reason for hiding this comment

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

Ahhh so many fond memories of many many hours spent catching these pesky reports without any transactions.
Remember @luacmartins? :D

I'm quite happy we're now making "empty" reports a first class citizen 👍

Copy link
Contributor

Choose a reason for hiding this comment

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

About time 😄


type CellProps = {
showTooltip: boolean;

Copy link
Member

Choose a reason for hiding this comment

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

Suggested change


type ReportCellProps = {
reportItem: ReportListItemType;
} & CellProps;
Copy link
Member

Choose a reason for hiding this comment

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

I don't think you need both CellProps and ReportCellProps - this is a leftover, can be simplified

@Kicu
Copy link
Member

Kicu commented Apr 16, 2025

@sumo-slonik don't forget to clean up changes to src/components/MoneyReportHeader 😉

@trjExpensify
Copy link
Contributor

I guess I'm a bit confused, but what's driving this detail in the header? It seems incorrect to me.

Screenie above:
image

Expected:
image

@sumo-slonik
Copy link
Contributor Author

I reused the component responsible for the header that appears in the report preview header. I'll fix it so that it looks like in the mockups.

@shawnborton
Copy link
Contributor

Let us know when we're ready for a test build, eager to start testing this one out!

@mountiny mountiny changed the title [DRAFT] Empty report chat view [Hold https://github.com/Expensify/Auth/pull/14938] [DRAFT] Empty report chat view Apr 16, 2025
@trjExpensify trjExpensify changed the title [Hold https://github.com/Expensify/Auth/pull/14938] [DRAFT] Empty report chat view [DRAFT] Empty report chat view Apr 24, 2025
# Conflicts:
#	src/components/ReportActionItem/MoneyRequestReportPreview/MoneyRequestReportPreviewContent.tsx
#	src/components/SelectionList/Search/ReportListItem.tsx
@sumo-slonik
Copy link
Contributor Author

sumo-slonik commented Apr 24, 2025

I guess I'm a bit confused, but what's driving this detail in the header? It seems incorrect to me.

Screenie above:

It seems to be working well with the new backend:
image

I'm checking if nothing's broken and if everything's really working correctly, but at first glance it seems fine .
I still need to fix the header so it doesn't show the total twice, but we're getting closer!

@trjExpensify
Copy link
Contributor

I still need to fix the header so it doesn't show the total twice, but we're getting closer!

As in, using the workspace's default report title for a newly created expense report? Looks like the avatar is correct now though, which was wrong in an earlier screenshot.

image image

@shawnborton
Copy link
Contributor

Ready for a test build yet?

@sumo-slonik
Copy link
Contributor Author

Ready for a test build yet?

I'm still working on the fixes for the report title — I should open the PR today and it should be ready for the test build.

As in, using the workspace's default report title for a newly created expense report? Looks like the avatar is correct now though, which was wrong in an earlier screenshot.

Currently, I'm using the same logic for displaying avatars as in the report preview itself. I'm also adding some small changes to how the title is displayed.

@DylanDylann
Copy link
Contributor

@sumo-slonik failed test

@Kicu
Copy link
Member

Kicu commented May 8, 2025

Test failed after 360min, seems like a random CI bug or timeout and unrelated to code changes.

@trjExpensify trjExpensify merged commit 99a6374 into Expensify:main May 8, 2025
18 checks passed
@trjExpensify
Copy link
Contributor

For the breadcrumbs, I merged it coz' of trouble Carlos was having here: https://expensify.slack.com/archives/C07NMDKEFMH/p1746717739207839?thread_ts=1745948047.201979&cid=C07NMDKEFMH

@OSBotify
Copy link
Contributor

OSBotify commented May 8, 2025

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@shawnborton
Copy link
Contributor

Dang Tommy's commit stats gonna go thru the roof now

@github-actions github-actions bot added the DeployBlockerCash This issue or pull request should block deployment label May 8, 2025
Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (1/12)

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

Significant Changes To Duration

Name Duration
App start time contentAppeared_To_screenTTI 943.998 ms → 1050.622 ms (+106.624 ms, +11.3%) 🔴
App start time TTI 1671.181 ms → 1779.238 ms (+108.057 ms, +6.5%) 🔴
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 943.998 ms
Stdev: 277.889 ms (29.4%)
Runs: 623.1416090000421 626.8966029998846 648.9891869998537 657.0688379998319 673.8503820002079 675.5362680000253 678.9592439997941 679.2494069999084 682.8188330000266 682.9630959997885 683.6740290001035 684.4058559997939 684.7972929999232 689.7088139997795 689.9165500001982 690.3052480001934 691.2986639998853 693.5123789999634 694.7838889998384 699.488983000163 705.6302749998868 708.332704000175 713.5547050000168 716.5992859997787 717.0066229999065 717.4539589998312 718.6340669998899 718.8041249997914 727.0794819998555 727.6172239999287 733.625858000014 757.7180820000358 778.1908260001801 1058.8412720002234 1117.125334000215 1160.8903060001321 1200.105074999854 1209.493631000165 1215.0187749997713 1227.6134449997917 1228.138964000158 1233.0359700000845 1243.2937650000677 1250.9017690001056 1253.8458070000634 1256.2091470002197 1257.8429560000077 1260.857024999801 1264.3041520002298 1267.2323679998517 1270.4382199998945 1282.1421150001697 1282.8646399998106 1282.9758350001648 1289.6569059998728 1299.218412999995 1305.1594219999388 1306.297848999966 1306.948998999782 1337.799074999988

Current
Mean: 1050.622 ms
Stdev: 268.787 ms (25.6%)
Runs: 614.6731529999524 632.9596199998632 639.0445630000904 641.19319000002 662.949177000206 669.3452619998716 684.2583240000531 688.5789959998801 690.7094800001942 692.9404620002024 695.170245999936 700.4914959999733 702.2929139998741 703.2658919999376 707.5417889999226 711.3814599998295 713.4661380001344 720.8343560001813 724.8750459998846 728.6558799999766 763.946440000087 1164.5410679997876 1166.4993179999292 1167.4519790001214 1176.367852000054 1180.9791939998977 1182.8789909998886 1184.328309000004 1187.1254619997926 1199.7650850000791 1206.2399679999799 1210.5626469999552 1213.7378090000711 1213.8363899998367 1217.1883629998192 1219.9830120000988 1220.2936309999786 1227.1032179999165 1235.9851629999466 1236.4353049998172 1241.1032090000808 1241.1515660001896 1246.947377000004 1251.457438999787 1252.9482439998537 1255.1141320001334 1260.4696430000477 1266.021856999956 1269.809297000058 1276.2762799998745 1291.3699540002272 1295.5391629999503 1296.8007089998573 1310.4585199998692 1319.1165060000494 1326.9122850000858 1329.0696829999797 1332.0188029999845 1334.7372269998305 1340.0996829997748
App start time TTI Baseline
Mean: 1671.181 ms
Stdev: 275.061 ms (16.5%)
Runs: 1314.6740290001035 1365.7088139997795 1368.850382000208 1371.5362680000253 1385.332704000175 1387.9630959997885 1388.141609000042 1393.0794819998555 1397.9165500001982 1402.9592439997941 1404.8966029998846 1405.2986639998853 1409.3052480001934 1421.625858000014 1422.9891869998537 1429.7972929999232 1433.8188330000266 1435.5992859997787 1444.0688379998319 1445.4058559997939 1445.6172239999287 1448.2494069999084 1454.5123789999634 1457.0066229999065 1461.7180820000358 1462.63406699989 1463.7838889998384 1465.4539589998312 1467.6302749998868 1480.488983000163 1494.19082600018 1498.5547050000168 1503.8041249997914 1719.8412720002234 1817.125334000215 1876.105074999854 1887.8903060001321 1907.493631000165 1934.0187749997713 1942.6134449997917 1949.4382199998945 1955.8458070000634 1961.9017690001056 1963.138964000158 1976.857024999801 1980.0359700000845 1982.2091470002197 1985.8429560000077 1992.1594219999388 1995.8646399998106 1998.218412999995 2010.6569059998728 2014.3041520002298 2016.9758350001648 2020.2937650000677 2032.2323679998517 2033.297848999966 2052.948998999782 2057.1421150001697 2073.799074999988

Current
Mean: 1779.238 ms
Stdev: 266.270 ms (15.0%)
Runs: 1300.0445630000904 1347.6731529999524 1373.5417889999226 1383.2658919999376 1397.3814599998295 1406.4914959999733 1407.8343560001813 1409.170245999936 1425.8750459998846 1431.7094800001942 1432.9404620002024 1435.4661380001344 1440.258324000053 1442.3452619998716 1449.5789959998801 1459.19319000002 1460.2929139998741 1464.949177000206 1471.9596199998632 1487.6558799999766 1528.946440000087 1813.5410679997876 1852.7650850000791 1856.1254619997926 1871.8789909998886 1879.4993179999292 1887.9791939998977 1888.5626469999552 1891.4519790001214 1923.367852000054 1925.2399679999799 1929.4353049998172 1933.7378090000711 1937.1515660001896 1938.328309000004 1938.8363899998367 1943.947377000004 1957.457438999787 1957.9830120000988 1959.4696430000477 1973.1032179999165 1976.9482439998537 1993.2936309999786 2001.1883629998192 2004.1141320001334 2004.3699540002272 2008.9851629999466 2009.021856999956 2011.1032090000808 2019.0696829999797 2023.809297000058 2024.5391629999503 2029.0188029999845 2029.1165060000494 2036.4585199998692 2051.8007089998573 2057.2762799998745 2066.912285000086 2072.7372269998305 2118.099682999775

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (10/12)

Meaningless Changes To Duration (9/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
Report typing (CPU/UI) Baseline
Mean: 21.268 %
Stdev: 1.211 % (5.7%)
Runs: 18.7 18.8 19.8 19.9 19.9 19.9 20 20 20.1 20.2 20.2 20.3 20.3 20.3 20.4 20.4 20.4 20.4 20.4 20.5 20.6 20.6 20.7 20.7 20.8 20.8 20.8 21 21 21.1 21.1 21.1 21.1 21.2 21.2 21.3 21.3 21.6 21.8 21.9 21.9 22 22 22.1 22.3 22.3 22.5 22.7 22.7 22.7 22.9 22.9 22.9 22.9 22.9 23 23.2 23.9 24.4

Current
Mean: 21.312 %
Stdev: 1.097 % (5.1%)
Runs: 18.9 19.4 19.5 19.6 19.6 19.8 19.8 19.9 20 20.1 20.1 20.2 20.3 20.3 20.3 20.4 20.5 20.5 20.7 20.8 20.8 20.9 21.1 21.1 21.2 21.3 21.4 21.4 21.5 21.5 21.5 21.5 21.6 21.7 21.7 21.8 21.8 21.8 21.8 21.9 22 22 22.1 22.2 22.2 22.3 22.3 22.3 22.7 22.8 22.8 22.8 22.8 22.9 22.9 22.9 23 23.1
Chat opening Chat TTI Baseline
Mean: 787.700 ms
Stdev: 56.315 ms (7.1%)
Runs: 641.3101399997249 651.8385420003906 666.1348480004817 690.5892739994451 701.5181480003521 707.3781740004197 728.110027000308 743.1169029995799 748.9744069995359 752.8884280007333 753.1769620003179 754.3084720000625 755.6732180006802 757.5301520004869 761.7084150006995 762.6745199998841 763.4686690000817 765.609375 765.7840170003474 768.7198890000582 768.7339279996231 770.3540449999273 773.052896999754 777.7540690004826 783.2487800000235 783.2683509998024 797.9705819999799 802.1982019999996 807.221516999416 808.6264659995213 810.9591479999945 815.5679940003902 817.406576000154 820.5700280005112 827.5675860000774 828.7851980002597 830.9798590000719 833.3615319998935 836.5322270002216 837.6477460004389 840.9088139999658 843.6866060001776 844.613688999787 844.9247650001198 850.4841719996184 854.3903810000047 855.7589520001784 856.9446620000526 860.8523360006511 872.7257489999756 875.0738530000672

Current
Mean: 802.508 ms
Stdev: 40.533 ms (5.1%)
Runs: 688.534789999947 739.7793370001018 740.338012999855 743.2401939993724 745.2059329999611 750.4984539998695 751.2826740005985 753.1764329997823 759.0802819998935 761.5677899997681 762.4001460000873 762.8057450000197 766.9926360007375 772.0001640003175 775.2741299998015 776.3459890000522 778.3512779995799 781.9049890004098 781.9524339996278 783.2801930001006 785.3288580002263 786.853516000323 797.944458999671 798.488362999633 803.3614909993485 804.3805749993771 804.5356040000916 805.6935229999945 807.4779049996287 807.7659100005403 809.9593509994447 818.2714439993724 819.5059419991449 823.2021079994738 824.0069989999756 825.4893800001591 826.1846119994298 826.3965259995311 830.4403079999611 831.440755000338 832.4521890003234 840.6100669996813 843.4678959995508 843.8389079999179 845.1496589994058 845.3432620000094 847.2599289994687 849.5832120003179 852.3299970002845 857.5340990005061 861.490885999985 863.2422690000385 865.1118989996612 877.2850350001827
Chat opening (CPU) Baseline
Mean: 164.243 %
Stdev: 4.051 % (2.5%)
Runs: 155.08395285772897 155.3831133178593 155.76983214025176 157.1273230431568 157.98044520961426 158.8090654211173 159.18553811955513 159.40484873235062 159.4127543541062 159.65982954093602 160.0830620006949 160.51532225225358 160.67150771818936 160.71991834396079 161.78097564641237 161.8058055024119 162.01968768271115 162.50336116174756 162.7724550898204 162.9201955054832 162.92132306539793 163.1507973463067 163.15964266616294 163.1932829433173 163.65718942528792 163.7165443994574 163.79356204032743 163.8509696208601 163.9344548557573 164.37093247750485 164.5897294525535 164.8761977469776 165.30841188840498 165.61658656753193 165.7503682337478 165.86116770108512 166.02279095189752 166.03062511850268 166.39403245509143 166.51868889973272 166.6598386056169 166.6658927306398 166.8682506423657 167.09860945190056 167.17074554646567 167.63279078879683 167.63953284320328 167.7457072086465 168.10470500007554 168.1776672331381 168.33682247608618 168.92308919237155 169.45870450424724 169.7935639014242 170.17655935918052 170.29846957013876 170.66990708399572 171.02622613365108 171.53574702818304

Current
Mean: 163.220 %
Stdev: 3.846 % (2.4%)
Runs: 154.623467785746 155.75831756593567 155.83995927910257 156.2664670658683 156.31587931859644 157.5105695428475 157.63912460812497 157.92112402653282 158.05195711186965 159.5234197209567 160.07458912143107 160.13404497349273 160.32301192852754 160.7228558192397 160.86869637172273 161.25631129070527 161.4221658466191 161.56078113732016 161.7780475105965 161.97770341189525 162.0717776004671 162.15373375562473 162.1767088637665 162.44328217869537 162.52890887428572 162.5560921034282 162.86410457244534 163.05788423153703 163.11513421985046 163.26057800816892 163.4009195188559 164.39310994804623 164.68615469639818 164.75046006722212 164.79422664223415 165.09753001466723 165.22098415574902 165.30807141317237 165.32324912529313 165.47685192359933 165.56700353939362 165.80705028285493 165.8945560271223 166.12239256784977 166.12503378464044 166.21836517853353 166.89116800689357 166.8927882170628 166.8951520142453 166.99048389632566 167.0016718539587 167.2028122254027 167.3455161390368 167.40439121756492 168.6637144311809 168.8145467684489 171.03707648081092 171.6502788661222

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (11/12)

Meaningless Changes To Duration (10/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
Chat opening (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 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
Chat opening (RAM) Baseline
Mean: 385.412 MB
Stdev: 5.450 MB (1.4%)
Runs: 373.44921875 374.1044921875 374.689453125 377.384375 377.39453125 377.56328125 377.60546875 377.65 378.236328125 378.3544921875 378.625 380.77734375 381.1515625 381.2646484375 381.5302734375 381.65390625 382.053125 382.7900390625 382.8955078125 383.41953125 383.53515625 383.78984375 384.2353515625 384.46484375 384.4984375 384.54296875 384.759375 385.34453125 385.540625 386.0046875 386.040625 386.36640625 386.5328125 386.58046875 386.82421875 387.0380859375 387.09453125 387.36796875 387.590625 387.75078125 388.70390625 389.0052083333333 389.056640625 389.05703125 389.2604166666667 389.32265625 389.3515625 390.18359375 390.6984375 390.7046875 390.75390625 391.0921875 392.123046875 392.765625 392.92734375 392.95625 393.7953125 393.825 394.63671875 396.02109375

Current
Mean: 386.442 MB
Stdev: 4.661 MB (1.2%)
Runs: 377.841796875 378.2412109375 378.6689453125 378.6865234375 379.626953125 380.0498046875 380.5703125 380.609375 380.84140625 381.9234375 382.0375 382.0478515625 382.1265625 382.58984375 382.7294921875 384.14765625 384.33984375 384.57265625 384.72109375 384.8212890625 384.90703125 385.037109375 385.1265625 385.39921875 385.4563802083333 385.841796875 385.91484375 386.103125 386.29296875 386.35390625 386.50078125 386.62890625 386.7109375 386.74453125 387.11640625 387.123046875 387.8171875 387.85234375 387.86171875 387.90234375 388.25625 388.521875 388.63828125 388.696875 389.578125 389.9798177083333 390.12578125 390.2765625 390.2984375 391.05625 393.65859375 394.046875 394.1828125 394.48671875 394.5625 394.984375 396.1647135416667 396.2109375
Chat opening (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (12/12)

Meaningless Changes To Duration (11/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
Chat opening (CPU/UI) Baseline
Mean: 33.444 %
Stdev: 2.129 % (6.4%)
Runs: 28.9 29.4 29.7 29.7 29.9 30 30 30.7 30.9 31 31.4 31.8 32.4 32.4 32.4 32.5 32.8 32.8 33 33.1 33.1 33.2 33.2 33.2 33.3 33.3 33.3 33.4 33.5 33.5 33.5 33.5 33.6 33.6 33.7 33.8 34 34 34.2 34.4 34.6 34.7 34.8 35 35 35.1 35.4 35.7 35.8 35.8 35.8 35.9 36 37.1 37.5 37.6 38.4

Current
Mean: 32.793 %
Stdev: 2.152 % (6.6%)
Runs: 28 28.3 28.4 28.4 29.3 29.4 29.7 29.9 30.5 30.6 30.9 30.9 30.9 30.9 30.9 31.5 31.8 31.9 31.9 32.2 32.2 32.3 32.3 32.5 32.7 32.8 32.8 33.2 33.2 33.3 33.4 33.5 33.5 33.6 33.9 33.9 33.9 34 34.2 34.2 34.3 34.4 34.4 34.4 34.4 34.4 34.5 34.5 34.7 34.7 35.1 35.2 35.2 35.4 35.5 35.5 36.4 37.3
Money request - Open Manual Tracking Baseline
Mean: 146.703 ms
Stdev: 10.258 ms (7.0%)
Runs: 120.83463599998504 130.84786000009626 131.63444000016898 131.70662400033325 133.15181399974972 135.8520100004971 135.9983719997108 136.12788899987936 136.2058110004291 136.4045810000971 137.08125799987465 137.12235500011593 137.2167149996385 138.72021499928087 138.7513840002939 139.45023600012064 139.90104100015014 140.69531199987978 141.8282060008496 142.6233310000971 142.85563199967146 143.86922200024128 143.8994549997151 145.1791580002755 145.2562250001356 145.681925999932 145.69653300009668 145.9212239999324 146.42016599979252 146.62036100029945 147.0397950001061 147.53076200000942 147.57735200040042 148.09916200023144 148.54573599994183 148.91068500000983 149.59407499991357 149.63545699976385 149.82364900037646 149.84033199958503 150.61629200074822 151.2749840002507 151.44043000042439 151.54284700006247 155.11287400033325 155.71907600015402 156.3037109998986 157.09627300035208 157.30505400057882 157.51912499964237 158.97212699986994 159.96337899938226 166.99340800009668 167.47005200013518 167.77295000012964 168.09810400009155 168.70581000018865

Current
Mean: 143.176 ms
Stdev: 12.237 ms (8.5%)
Runs: 122.0450029997155 123.24584899935871 125.62878399994224 127.92826299928129 128.8385830000043 129.6736249998212 130.2400709996 130.3542080000043 131.67594400048256 132.19938199967146 132.2674970002845 132.43880200013518 132.50512700062245 133.03605199977756 133.73836299963295 133.74060100037605 134.44352200068533 134.8441570000723 134.90995300002396 135.06376100052148 136.45088700018823 136.52718099951744 138.15820300020278 138.32438200060278 138.3902179999277 138.5546059999615 138.91735900007188 139.11812300048769 140.09810400009155 142.88635300006717 143.05733200069517 143.30179800000042 143.7121990006417 144.71468100044876 144.73551400005817 144.77172899991274 145.3348389994353 145.64965900033712 145.83528599981219 146.48990899976343 147.13321899995208 148.45861800014973 148.5860190000385 148.7432049997151 151.63863100018352 152.63374900072813 152.9229739997536 153.52429199963808 155.69572000019252 155.79968200065196 155.95483399927616 156.19405100028962 157.53385400027037 160.59342399984598 163.12825499940664 165.54284700006247 168.42232300061733 170.37711600027978 180.65755300037563
Money request - Open Contacts Baseline
Mean: 224.371 ms
Stdev: 12.749 ms (5.7%)
Runs: 200.81156400032341 204.94502800051123 207.44628899917006 208.01232900004834 208.50610400084406 209.44372599944472 209.77771000005305 211.53641800023615 211.74365200009197 212.0949710002169 212.44177199993283 212.9608969995752 213.23978699930012 214.47371499985456 214.58524600043893 214.79439300019294 216.44978800043464 216.7281909994781 217.02176900021732 217.3842369997874 217.41007500048727 218.84912199992687 219.04988600034267 219.21057099942118 219.8623869996518 221.8809810001403 222.31433099973947 222.73388700000942 223.12060500029474 223.13977100048214 224.52941900026053 224.59769700001925 226.02742599975318 226.78247099928558 226.89453100040555 227.2013750001788 227.24788399972022 227.29150399938226 228.28409799933434 228.5703120008111 229.09912099968642 229.8596189999953 230.6798499999568 230.70121300034225 232.78894100058824 233.12943600025028 233.47729499917477 238.04227699991316 238.08825699985027 239.33268199954182 242.92639200016856 243.51062000077218 245.8916830001399 249.21480299998075 251.37060499936342 254.24503600038588 257.4197999993339

Current
Mean: 227.861 ms
Stdev: 17.814 ms (7.8%)
Runs: 199.64111400023103 199.74511699937284 202.1901049995795 206.40116399992257 206.71293100062758 207.24576800037175 208.67903700005263 208.98836300056428 210.4695640001446 211.0891919992864 211.5829259995371 212.3430580003187 213.43884299974889 214.07653800025582 215.5799160003662 216.43103000055999 216.65824399981648 217.19995100051165 218.08353700023144 218.63948600087315 219.87019899953157 220.0803630007431 220.77803499996662 220.896483999677 220.97139499988407 221.9468590002507 222.90153000038117 223.13740999996662 223.36027000006288 224.85538699943572 225.00199399981648 225.19108000025153 226.69010400027037 226.7124840002507 228.66516099963337 229.00443500000983 229.34000699967146 230.1111249998212 230.27299000043422 230.77885000035167 231.2107340004295 233.6260989997536 233.78536000009626 234.18896499928087 238.45959499944001 240.74633800052106 241.4785569999367 241.79138199985027 242.29675300046802 243.2514249999076 246.83862299937755 247.54772899951786 256.18644200079143 256.19950400013477 258.28625500015914 268.1507980003953 268.5372310001403 271.9772950001061 273.5021160002798
Money request - Open Create Baseline
Mean: 144.363 ms
Stdev: 12.823 ms (8.9%)
Runs: 121.47631900012493 122.92024799995124 123.75459800008684 124.29073099978268 125.70662499964237 128.33386200014502 128.33878600038588 129.44763100054115 131.83557199966162 131.95198499970138 132.51220699958503 134.1396479997784 135.03800499998033 135.0383299998939 135.0555830001831 135.09261099994183 135.53906300012022 135.55806499999017 136.77559399977326 137.34314000047743 138.89188599959016 139.02730299998075 139.28478999994695 139.88069699984044 139.9169930005446 141.01879899948835 141.4767659995705 141.72391800023615 142.09822600055486 142.35668900050223 142.46403000038117 144.76025400031358 144.92777500022203 145.0877689998597 145.10583500005305 145.62320999987423 146.41406199987978 147.88802099972963 148.12646499928087 148.2886960003525 148.62813299987465 148.9152020001784 149.8057049997151 151.63822499942034 151.99011200014502 154.3551440006122 154.46134500019252 155.1729330001399 155.6788329994306 156.27307099942118 156.98791499994695 157.48767099995166 159.7771819997579 160.81758700031787 161.65030900016427 162.787108999677 166.84305799938738 169.87467399984598 172.00236000027508 182.13110399991274

Current
Mean: 145.164 ms
Stdev: 12.481 ms (8.6%)
Runs: 118.5695799998939 125.44572000019252 128.905965000391 130.1260179998353 130.76066100038588 131.31437199935317 131.45060200057924 131.93591300025582 132.4689939999953 132.70784499961883 132.7596439998597 133.33308899961412 133.624552000314 133.98689799942076 134.13728899974376 134.22961399983615 134.37040199991316 135.07580600026995 135.24585000053048 137.2025549998507 138.74686700012535 138.78039599955082 140.6306149996817 140.92154899984598 141.0177819998935 141.9760739998892 142.21427399944514 142.22127200011164 142.7193200001493 142.98921700008214 143.38647499959916 143.8825679998845 143.9609780004248 144.39558900054544 146.02010099962354 146.18302399944514 146.66984000056982 147.94775400031358 148.48470100015402 149.04178800061345 149.5254319999367 149.84993499983102 149.95633899979293 154.02762799989432 154.99405899923295 156.21415199991316 156.35062700044364 157.64375799987465 159.36694400012493 160.07161400001496 160.11466500069946 160.5860190000385 163.17569999955595 163.48726399987936 164.48258499987423 164.60632300004363 164.82893799990416 166.2339679999277 167.24731499981135 177.25943999923766
Money request (CPU) Baseline
Mean: 178.672 %
Stdev: 4.286 % (2.4%)
Runs: 169.0479484073464 170.81723739505017 172.0163217282304 172.06692797752973 172.20729863265876 172.59088934610122 174.1210165373429 174.35949850928583 174.6702331186112 174.83204078540902 174.88038453875828 174.90244619078672 175.0753340596629 175.31419206530057 175.4294768441592 176.14165116793743 176.19393751605693 176.26932288622228 176.76571906948558 176.7807031265354 176.86072363692207 176.9889527084404 177.04567987849464 177.11580625191309 177.5620154616236 177.64069050346944 178.00826395443946 178.14788775660247 178.4087054738353 178.69873516286611 178.72197361488037 179.15262888869935 179.28356971507446 179.30897560834595 179.33788193217876 179.50010747104662 179.82092624880693 179.90672717286222 180.03869754957685 180.5005995484817 181.14376576836872 181.2648426685992 181.28776796005224 181.46560182672505 181.54505896423967 181.56248041913034 181.77138795595894 182.05255739921682 182.3360110381755 182.78030058761775 184.35921249684876 185.0764598602979 185.34109283438522 185.65639496321012 185.91693308851288 186.09142047957684 187.40807912477925 189.40793737616673

Current
Mean: 179.280 %
Stdev: 4.252 % (2.4%)
Runs: 170.48671453560317 170.88537977887842 171.58846349437627 172.77426568431656 173.3168449968477 173.95661460074365 174.25499554831785 174.33751375819674 175.18593040073688 175.18695245689284 175.23264399720225 175.33640380668788 175.46175684267214 175.62331831414892 176.0188694404901 176.5022547542924 176.5598344289602 176.74994775293501 177.28153316443485 177.3743510230406 177.4081106406768 177.5426831833431 177.74504813420177 177.84678451507696 178.46619880950516 178.56440492091863 178.6697551284325 178.74519574990822 179.14737714715338 179.17470252393986 179.34202934009338 179.69503958720733 179.7669172998145 179.76771484891648 179.78736820629047 179.79612959433354 180.05796103485426 180.19560028216094 180.23099075747183 180.55613750248145 180.83415213505762 180.88180120989355 181.598815335143 181.69231889038983 181.82903581620005 182.05361576069157 182.1436110131141 182.79606774605193 182.8067982937989 182.83996558750474 183.8819035163702 183.96045065634505 184.05821281314496 184.7809149053447 185.29887807797698 186.72350761395248 187.18633293300098 187.4923677830121 187.96046737347626 189.37042959281052
Money request (FPS) Baseline
Mean: 58.935 FPS
Stdev: 0.980 FPS (1.7%)
Runs: 56.62161587523959 56.81428967684014 57.02628739508765 57.25685034412171 57.25936109185835 57.54637577276178 57.563181435565355 57.62371810045149 57.69096448743455 57.80754948823761 57.82069622665617 57.849752827505164 57.92219104801578 58.05684957457771 58.122341786872674 58.27520921444938 58.5304495777972 58.532014398231375 58.67154860587869 58.73378035225806 58.747917966763566 58.780799586963575 58.81406309311975 58.83428822664297 58.85543572952336 58.886843521538495 58.8924291522575 58.96009241298433 58.99401478193234 59.041131487322616 59.149755806113944 59.20156595194237 59.26689752872398 59.27283089508361 59.287085378640754 59.39271292115242 59.46638155207746 59.54092663561886 59.67494144212878 59.759653624838506 59.80475013403083 59.884429426005944 59.987640112281106 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 59.077 FPS
Stdev: 0.839 FPS (1.4%)
Runs: 57.32739557035033 57.47890280009122 57.49915676816511 57.64806538915291 57.70943611797976 57.77214446384719 57.85202967074792 58.020439804689126 58.03035213470511 58.05753683683408 58.084977971423626 58.096409387599394 58.25349032381001 58.26541902979308 58.278557295534256 58.35581581376206 58.544612528564166 58.59155170224368 58.66242069997468 58.67297187283857 58.75514268776453 58.89754147632094 58.91806094409573 58.9407285734973 58.99120436701597 59.003004611683345 59.04187072758395 59.07149447236458 59.2009738213604 59.20341467664504 59.312450218278265 59.45227257448314 59.472643646829404 59.663957299855205 59.67928803882285 59.695903674922164 59.71840675371919 59.7466462551214 59.749461138667776 59.75607723888409 59.794395254841184 59.79774562165285 59.804285613525 59.81394860837692 59.84467251825128 59.95989417921445 59.96479274766899 60 60 60 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 449.138 MB
Stdev: 6.804 MB (1.5%)
Runs: 437.369140625 437.73939732142856 437.89013671875 438.0927734375 438.265625 440.76025390625 441.3404017857143 441.8236607142857 442.58370535714283 443.2232142857143 443.423828125 443.80322265625 443.9458705357143 444.33154296875 444.33935546875 444.6181640625 444.82254464285717 445.1685267857143 445.44140625 445.77622767857144 445.82310267857144 446.31752232142856 446.44189453125 446.57254464285717 446.8833705357143 447.14453125 447.1595982142857 447.4291294642857 448.04541015625 448.1630859375 448.33056640625 448.89453125 449.109375 449.49832589285717 449.62388392857144 449.96651785714283 449.978515625 450.10770089285717 450.4107142857143 450.6328125 450.92138671875 451.21875 453.15066964285717 453.2216796875 453.5224609375 454.29966517857144 454.54185267857144 454.90401785714283 454.9213169642857 455.0598958333333 455.11865234375 455.24365234375 455.58154296875 456.884765625 460.32958984375 460.7978515625 461.1635044642857 461.6556919642857 466.98716517857144 467.44252232142856

Current
Mean: 448.329 MB
Stdev: 9.574 MB (2.1%)
Runs: 428.416015625 431.51171875 432.8486328125 435.05301339285717 435.5419921875 436.3427734375 436.64285714285717 438.05078125 438.23681640625 438.56808035714283 439.90122767857144 440.1533203125 440.58984375 440.93582589285717 441.15234375 441.88671875 442.26025390625 443.4720982142857 443.68505859375 443.83482142857144 444.44384765625 444.67689732142856 445.56689453125 446.056640625 446.4380580357143 446.50279017857144 446.73095703125 446.9603794642857 447.11631944444446 447.2466517857143 447.5380859375 447.72823660714283 447.75223214285717 448.6953125 449.53627232142856 449.91015625 450.4302455357143 450.7662760416667 450.8989955357143 451.07924107142856 451.61279296875 451.74776785714283 451.90401785714283 452.43408203125 452.5380859375 453.72098214285717 454.94921875 455.97607421875 456.7395833333333 459.59654017857144 459.98604910714283 460.63525390625 461.9873046875 463.09151785714283 464.00439453125 467.1724330357143 467.27455357142856 468.69698660714283 472.16573660714283
Money request (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Money request (CPU/UI) Baseline
Mean: 43.628 %
Stdev: 1.921 % (4.4%)
Runs: 39.2 40.2 40.3 40.9 41.2 41.4 41.4 41.8 41.8 41.8 41.9 42 42.1 42.2 42.3 42.3 42.5 42.5 42.6 42.6 42.6 42.7 42.7 42.8 43 43 43 43.1 43.2 43.3 43.3 43.5 43.6 43.6 43.6 44 44.1 44.1 44.2 44.3 44.3 44.4 44.7 44.8 45 45 45 45.4 45.5 45.6 45.7 45.7 46.3 46.5 46.5 46.8 47.1 47.4 47.6 47.7

Current
Mean: 43.920 %
Stdev: 1.993 % (4.5%)
Runs: 40.6 40.6 40.8 40.9 41.2 41.3 41.4 41.5 41.6 41.9 41.9 41.9 42 42.1 42.1 42.3 42.4 42.7 42.8 43.1 43.1 43.1 43.1 43.1 43.2 43.3 43.3 43.5 43.5 43.6 43.6 43.7 44.2 44.3 44.3 44.5 44.5 44.5 44.8 44.8 45.1 45.1 45.1 45.2 45.3 45.5 45.6 45.7 45.7 45.9 46 46.1 46.2 46.3 46.7 46.8 47.2 47.4 47.8 49.4

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (2/12)

Meaningless Changes To Duration (1/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 83.407 ms
Stdev: 10.679 ms (12.8%)
Runs: 60 64 66 66 70 71 71 73 73 73 73 73 73 75 75 77 78 78 78 79 79 79 80 80 81 81 81 81 82 82 83 84 84 84 84 84 86 87 87 88 89 89 90 90 90 90 90 90 93 93 95 97 98 99 102 105 106 106 106

Current
Mean: 80.317 ms
Stdev: 10.623 ms (13.2%)
Runs: 63 63 66 66 67 68 68 69 69 69 69 71 71 72 72 73 73 74 74 74 74 75 75 75 76 77 77 78 78 78 78 79 79 79 80 80 80 81 83 83 86 87 87 88 88 88 88 89 91 92 93 94 94 94 95 98 99 100 102 110
App start time nativeLaunch Baseline
Mean: 24.877 ms
Stdev: 2.562 ms (10.3%)
Runs: 21 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 25 26 26 26 26 26 26 26 27 27 28 29 29 29 30 30 31 31 31

Current
Mean: 25.259 ms
Stdev: 3.570 ms (14.1%)
Runs: 21 21 21 21 21 21 21 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 24 24 24 24 25 25 25 25 25 25 26 26 26 26 26 26 26 27 27 27 27 27 28 28 28 31 31 32 32 32 32 33 33 33
App start time runJsBundle Baseline
Mean: 341.483 ms
Stdev: 21.484 ms (6.3%)
Runs: 292 292 305 305 307 307 310 310 311 311 312 312 314 314 314 314 318 318 318 318 318 318 320 320 320 320 323 323 324 324 325 325 325 325 326 326 326 326 327 327 327 327 336 336 338 338 339 339 340 340 340 340 341 341 342 342 343 343 343 343 343 343 344 344 344 344 344 344 344 344 345 345 349 349 351 351 352 352 352 352 353 353 353 353 354 354 355 355 355 355 356 356 357 357 357 357 357 357 359 359 366 366 366 366 367 367 369 369 370 370 371 371 379 379 380 380 383 383 390 390

Current
Mean: 341.633 ms
Stdev: 22.279 ms (6.5%)
Runs: 287 287 297 297 302 302 303 303 307 307 308 308 310 310 310 310 316 316 316 316 320 320 321 321 322 322 323 323 323 323 324 324 326 326 327 327 330 330 332 332 332 332 334 334 336 336 339 339 341 341 344 344 344 344 344 344 347 347 347 347 348 348 348 348 349 349 350 350 350 350 350 350 351 351 352 352 352 352 353 353 353 353 353 353 354 354 354 354 355 355 356 356 358 358 359 359 360 360 361 361 362 362 362 362 368 368 369 369 371 371 372 372 373 373 374 374 378 378 391 391

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (3/12)

Meaningless Changes To Duration (2/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 542.450 ms
Stdev: 27.656 ms (5.1%)
Runs: 460 490 496 509 509 511 512 512 514 516 518 520 520 520 521 522 522 523 528 530 531 531 531 531 532 535 537 538 538 539 539 543 543 543 546 546 548 548 557 560 560 560 561 561 562 563 564 567 574 576 577 577 579 579 580 580 588 588 588 594

Current
Mean: 545.250 ms
Stdev: 38.317 ms (7.0%)
Runs: 468 472 482 488 494 494 498 501 505 506 509 510 511 512 513 514 514 517 520 521 525 525 532 533 534 536 539 539 542 542 542 555 555 556 557 560 561 561 562 566 567 567 568 568 570 571 574 579 579 579 580 586 588 593 594 596 604 605 634 642
App start time appCreation Baseline
Mean: 75.567 ms
Stdev: 10.200 ms (13.5%)
Runs: 59 60 60 61 61 61 61 62 64 64 65 65 68 69 69 69 69 70 70 70 71 71 72 72 72 73 73 74 74 75 75 75 76 77 77 77 77 78 78 79 79 79 80 81 82 82 84 84 84 85 86 87 87 89 89 90 93 97 101 102

Current
Mean: 76.797 ms
Stdev: 9.801 ms (12.8%)
Runs: 60 63 64 64 64 64 64 65 65 66 67 67 68 69 69 69 70 70 70 70 70 71 71 71 71 73 73 75 75 76 77 78 78 79 80 80 80 81 81 82 82 83 83 84 84 85 85 86 87 88 89 89 90 90 92 93 95 98 98
App start time regularAppStart Baseline
Mean: 0.022 ms
Stdev: 0.003 ms (11.8%)
Runs: 0.017008000053465366 0.017659999895840883 0.0181470001116395 0.018269999884068966 0.01875900011509657 0.019084000028669834 0.01920600002631545 0.0194089999422431 0.019611999858170748 0.019652999937534332 0.019694000016897917 0.019694000016897917 0.020141999702900648 0.020182000007480383 0.020182999782264233 0.020223000086843967 0.020344999618828297 0.020426999777555466 0.020711000077426434 0.02083300007507205 0.020873999688774347 0.021240999922156334 0.021321999840438366 0.021322000306099653 0.021402999758720398 0.021403000224381685 0.02156500006094575 0.02189100021496415 0.02209499990567565 0.022216999903321266 0.02254200028255582 0.022704999893903732 0.022745999973267317 0.02282699989154935 0.02315300004556775 0.023397000040858984 0.023641000036150217 0.0236820001155138 0.023763000033795834 0.02404800010845065 0.0242510000243783 0.0244140001013875 0.024495000019669533 0.024576999712735415 0.024577000178396702 0.024740000255405903 0.0247809998691082 0.02539100032299757 0.02583800023421645 0.026000999845564365 0.02669199975207448 0.0301919998601079

Current
Mean: 0.028 ms
Stdev: 0.004 ms (13.7%)
Runs: 0.021240000147372484 0.02189100021496415 0.022134999744594097 0.02217599982395768 0.023600999731570482 0.024008000269532204 0.02404800010845065 0.02408899972215295 0.024373999796807766 0.024577000178396702 0.024618000257760286 0.02494300017133355 0.025065000168979168 0.025106000248342752 0.025187000166624784 0.025349999777972698 0.02567500015720725 0.0256759999319911 0.02575700031593442 0.025837999768555164 0.0260410001501441 0.026081999763846397 0.026122999843209982 0.026448999997228384 0.026529999915510416 0.026692999992519617 0.027017999906092882 0.02701900014653802 0.0271399999037385 0.027222000062465668 0.027383999899029732 0.027709999587386847 0.028076000045984983 0.028158000204712152 0.028278999961912632 0.028321000281721354 0.028687000274658203 0.028808000031858683 0.02917500026524067 0.029744999948889017 0.02982599986717105 0.030028999783098698 0.030111000407487154 0.030274000018835068 0.03043600032106042 0.030842999927699566 0.032878000289201736 0.03352800011634827 0.03442399995401502 0.0346280001103878 0.0350339999422431 0.03527899971231818 0.03544199978932738 0.03845199989154935

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (4/12)

Meaningless Changes To Duration (3/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
App start time (CPU) Baseline
Mean: 150.588 %
Stdev: 11.279 % (7.5%)
Runs: 126.28603504270075 128.76892430278886 129.39315445000298 129.4138585666825 129.65970254685615 130.76604950054084 130.7848973836754 130.95917929277587 132.14047085642417 132.4492194057412 133.51178735794122 137.53261049261505 137.86836935166997 138.19783977247303 140.518596123625 142.97934482827037 143.872255489022 150.93047837971764 151.42503003857587 151.7231412282915 151.94730118173106 152.37423691793043 152.69621174757512 153.01622811085008 153.12366378332015 153.60779105799026 153.91526718064154 154.11476238956485 154.78605724362816 155.1900273196933 155.25262101048415 155.49013226281212 155.9696541735754 156.251371565728 156.4523764077114 156.59673135415323 156.72486392405457 156.7933980748199 156.87883202531987 157.2195983619616 157.287833970613 157.52658603466097 158.46172540710296 158.652002561201 159.07600888855097 159.13036479466408 159.48620446632384 159.63465881537468 159.67965794837949 160.3500314317146 160.6454943218507 160.83351451916118 161.1545486318636 161.50702465870168 161.67908562152343 161.7811730211065 162.26450818896154 162.3481541449064 163.0060940389554 163.16443774166703

Current
Mean: 154.775 %
Stdev: 7.243 % (4.7%)
Runs: 137.60785717125935 138.72357691171686 140.71054677793015 141.8163058790849 142.4455428330146 143.29250216409153 143.93636442168435 144.64878471535954 144.73753946066714 144.8440250912813 145.47061099434276 147.8470449454584 147.92897058824576 149.79449028021875 151.3245078853459 151.56897788696335 152.2248995983935 152.49848129531904 152.8581288225152 153.23793870218043 153.54898397724799 153.93121343969432 154.46647146354337 155.5974269963312 155.78024178560713 155.88764537546714 155.99143957768578 156.0433573358055 156.04390445235504 156.13723891800979 156.48329346959486 156.67779602262368 156.72065399364942 156.83597593545315 157.2498134022041 157.38354125850853 158.99671412924425 159.07679561069813 159.2883046925062 159.33798967601024 159.44363681255226 159.48924451487343 160.01174534257714 160.17655745442875 160.256318291067 160.37679260060983 160.55396724736622 160.85016008367472 160.90947656111584 161.73512968025057 161.88223760752663 163.1238052176644 163.54842385441356 164.2313423713789 164.38038436050357 164.42449017118435 165.0540023283697 167.52064065457262
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

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
App start time (RAM) Baseline
Mean: 357.783 MB
Stdev: 8.016 MB (2.2%)
Runs: 337.083984375 337.37109375 340.87109375 343.97265625 347.1484375 348.015625 349.5078125 349.6666666666667 349.8606770833333 349.8984375 351.5625 352.1197916666667 352.259765625 352.8828125 353.15234375 353.4466145833333 353.6744791666667 354.2981770833333 354.306640625 354.73828125 354.7395833333333 354.8893229166667 355.2044270833333 355.2369791666667 356.2747395833333 356.2747395833333 356.4583333333333 358.4036458333333 358.5989583333333 359.3125 359.5833333333333 359.8580729166667 360.462890625 360.6354166666667 360.76953125 361.03515625 361.146484375 361.4609375 361.671875 361.9049479166667 362.8645833333333 362.87109375 363.06640625 364.0927734375 364.1236979166667 364.99609375 365.23828125 365.8111979166667 366.1653645833333 366.21484375 366.4462890625 367.9895833333333 368.3606770833333 369.1901041666667 370.6653645833333 372.607421875 373.1953125

Current
Mean: 360.044 MB
Stdev: 5.808 MB (1.6%)
Runs: 347.109375 348.123046875 350.4231770833333 351.6888020833333 351.9192708333333 352.134765625 352.3606770833333 352.7018229166667 352.75 352.9557291666667 353.296875 354.15625 354.5260416666667 355.1302083333333 355.4440104166667 355.46875 355.5963541666667 355.7486979166667 356.2265625 356.8229166666667 356.8763020833333 358.3294270833333 358.3541666666667 358.4661458333333 358.58203125 359.1783854166667 359.9973958333333 360.8671875 360.9375 361.0221354166667 361.5390625 361.75 362.7861328125 362.9817708333333 362.9908854166667 363.0572916666667 363.1263020833333 363.6705729166667 363.8893229166667 363.9267578125 364.1276041666667 364.2421875 364.609375 364.6614583333333 364.8330078125 365.2682291666667 365.3033854166667 365.5182291666667 365.5677083333333 366.4309895833333 366.9921875 367.3619791666667 367.4830729166667 367.8763020833333 368.1875 368.6119791666667 369.0989583333333 369.4609375

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (5/12)

Meaningless Changes To Duration (4/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
App start time (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
App start time (CPU/UI) Baseline
Mean: 27.481 %
Stdev: 4.663 % (17.0%)
Runs: 16.8 18 18.2 19 19.2 20 20 20.1 20.3 20.9 22 22 22.1 22.3 25 25.3 26.1 26.5 26.8 27.2 27.3 27.4 27.9 28 28.3 28.5 28.7 28.7 28.7 28.9 29 29.1 29.2 29.3 29.3 29.3 29.4 29.8 30 30.1 30.2 30.4 30.5 30.6 30.9 31.2 31.3 31.3 31.3 31.4 31.5 31.9 31.9 32.6 32.6 33.9 34 34.6 34.6

Current
Mean: 29.415 %
Stdev: 2.364 % (8.0%)
Runs: 23.4 24.7 24.7 24.7 25.1 25.8 25.9 26.6 27.1 27.3 27.5 28.5 28.5 28.5 28.6 28.6 28.6 28.6 28.7 28.7 28.8 28.8 29.2 29.3 29.3 29.3 29.3 29.3 29.4 29.6 29.7 29.7 29.8 29.9 30 30.6 30.6 30.7 30.8 31.2 31.2 31.3 31.3 31.4 31.8 31.8 31.9 32 32 32 32.7 33.2 33.2 33.3 33.3
Open search router TTI Load Search Options Baseline
Mean: 137.988 ms
Stdev: 5.566 ms (4.0%)
Runs: 127.98278800025582 128.99100799998268 129.271035999991 129.4328609998338 130.0160320000723 130.4604489998892 130.4948729998432 131.36731000011787 131.79520700033754 131.88444000016898 132.53397599980235 133.0402020001784 133.32751500001177 133.60375999985263 133.62536599999294 133.86804200010374 134.32185899978504 134.60966000007465 134.62911000009626 135.05574599979445 135.16825300035998 135.36417600000277 135.60746300034225 135.83679200010374 136.43709400016814 136.437663000077 136.4379070000723 136.90999399963766 137.016072999686 137.20890299975872 137.23856600001454 137.46048999996856 137.53954999987036 137.70341000007465 138.93298400007188 139.55546100018546 139.63033100031316 140.27392499987036 140.2741700001061 140.275228000246 140.54459699988365 140.63179499981925 140.7690429999493 141.25333700003102 142.42171300016344 142.76407899986953 142.99198399996385 143.12544800015166 143.1284580002539 143.59700599964708 143.81070999987423 144.37223299965262 144.49056000029668 145.30806499999017 146.0271809999831 146.50528999976814 146.68810999998823 147.6877439999953 148.3908689999953 153.1479489998892

Current
Mean: 139.436 ms
Stdev: 5.619 ms (4.0%)
Runs: 128.0522059998475 128.80310099991038 129.56119800033048 129.7358800000511 129.81339500006288 130.694703000132 130.82727100001648 131.384603000246 132.36682200012729 133.0926919998601 133.36677999980748 133.5708010001108 133.8706470001489 134.91304499981925 135.69449800020084 135.76660099998116 136.76529899984598 136.98872900009155 137.2617599996738 137.37337200017646 137.44885300006717 137.559489000123 138.1042479998432 138.67899599997327 138.90913899987936 139.04589900001884 139.19995199982077 139.28458700003102 139.665853000246 140.01806699996814 140.26501500001177 140.3076169998385 140.362385999877 140.604127000086 140.96569800004363 141.0930989999324 141.1564939999953 141.46984900021926 142.1301270001568 142.2494299998507 142.4839679999277 142.68615700025111 142.69917799998075 142.79398600012064 143.03511600010097 143.08089199988171 143.57678200025111 143.83797200024128 143.99055999983102 144.57234699977562 145.0586749999784 145.09387199999765 145.7272950001061 145.83723999978974 146.87911000009626 147.14217199990526 148.20300300000235 149.30277500022203 149.7843419997953 151.92342100013047

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (6/12)

Meaningless Changes To Duration (5/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
Open search router TTI Open Search Router TTI Baseline
Mean: 1267.222 ms
Stdev: 91.608 ms (7.2%)
Runs: 1050.466349999886 1053.627807999961 1057.7460529999807 1058.2375900000334 1059.5346280001104 1060.6025400003418 1062.4698490002193 1067.6129970001057 1067.9051930001006 1070.0260830000043 1071.4700119998306 1072.888714000117 1073.8579100002535 1076.73514899984 1077.1165370000526 1077.5071620000526 1077.5928960000165 1080.6296800002456 1081.9598809997551 1083.045003999956 1084.3088380000554 1085.981324000284 1088.8016359996982 1089.8770349998958 1090.254842999857 1090.5478109996766 1093.134277000092 1094.517985000275 1095.0415050000884 1099.6954350001179 1100.541830000002 1101.5390630001202 1103.235514999833 1103.716228000354 1104.2945570000447 1104.4600430000573 1104.6244310000911 1107.0139979999512 1108.1239430001006 1113.0208340003155 1113.6106770001352 1115.691853999626 1117.4684659997001 1120.8730879998766 1121.7995609999634 1123.9886079998687 1126.4680989999324 1134.4756679995917 1136.055867999792 1136.9128430001438 1139.29866499966 1141.1917730001733 1151.765259000007 1161.2985839997418 1162.2727060001343 1166.109538000077 1170.2522390000522 1173.4543049996719 1173.4735519997776 1175.884195999708 1177.2050379998982 1178.5405689999461 1181.388061999809 1181.4094249997288 1181.9827479999512 1182.5462650000118 1183.3560390002094 1184.363241000101 1185.985067000147 1186.0211190003902 1186.4146730001085 1187.1835539997555 1187.8145759999752 1187.9669610001147 1189.3348799999803 1189.7613119999878 1190.5489110001363 1191.9580899998546 1192.7406009999104 1195.6880299998447 1196.0830089999363 1196.0830089999363 1197.054891999811 1197.15755299991 1198.3066819999367 1198.3066819999367 1199.356201000046 1199.663982000202 1200.2450769999996 1200.6871349997818 1200.7761639999226 1200.815755999647 1201.591715999879 1201.8224289999343 1202.1769209997728 1202.944376999978 1203.7447110000066 1204.5823579998687 1206.1463629999198 1206.20365400007 1206.5377199999057 1206.5377199999057 1206.8621430001222 1207.2845060001127 1207.3975430000573 1209.5633149999194 1210.1307789999992 1210.4728600000963 1210.7033290001564 1210.8252770002 1211.4114989996888 1211.6260989997536 1212.1953130001202 1212.7173669999465 1213.2539880000986 1213.2539880000986 1213.661784000229 1213.7463389998302 1214.1117759998888 1214.7258309996687 1215.6357429996133 1215.9240729999729 1216.0275069996715 1216.0880130003206 1216.6843680003658 1217.190307999961 1218.0638430002145 1218.147625000216 1219.2805589996278 1219.8866790002212 1220.5170490001328 1220.62162300013 1220.7958990000188 1221.6149909999222 1221.9934900002554 1222.3149830000475 1222.5524089997634 1223.4549160003662 1224.13802199997 1224.8555919998325 1224.8555919998325 1225.4873870001175 1226.058430999983 1226.2978929998353 1226.8436280000024 1226.890748000238 1227.2167169996537 1228.3911549998447 1229.439005999826 1229.5556240002625 1229.7594810002483 1230.1222749999724 1230.3215330000967 1230.5487480000593 1231.8580740001053 1231.9851899999194 1232.5668949997053 1233.5052899997681 1233.800741000101 1233.9023849996738 1233.9335130001418 1235.12915099971 1236.0028490000404 1236.0491539998911 1236.5319429999217 1236.7000730000436 1237.1557220001705 1237.4370130002499 1237.539266999811 1238.5202640001662 1239.2275800001808 1239.2672129999846 1239.9294839999638 1239.9294839999638 1240.7708340003155 1241.1105150002986 1241.1124680000357 1241.8399670002982 1242.0196539997123 1242.1458339998499 1242.7029230003245 1242.7029230003245 1243.351237999741 1243.70442799991 1243.8589679999277 1244.436158000026 1244.9075929997489 1245.069010999985 1245.3641360001639 1245.3641360001639 1245.5896009998396 1245.7426760001108 1245.9644380002283 1246.2567549999803 1246.6553960000165 1247.823040000163 1247.823040000163 1248.5996909998357 1249.3397219995968 1249.7504070000723 1250.27787300013 1250.3167729997076 1250.732993000187 1251.072714000009 1251.228271999862 1251.6317150001414 1253.0174159999005 1253.294108999893 1253.3267020001076 1254.4138589999638 1254.8294270001352 1256.9661459997296 1257.0707200001925 1257.4181729997508 1257.4479180001654 1258.0712900003418 1258.3133140001446 1258.356853000354 1258.41980100004 1258.41980100004 1258.5309250000864 1258.592408000026 1258.5967620001175 1258.6249190000817 1258.7229419997893 1258.8367119999602 1258.869752000086 1258.9892989997752 1259.1900639999658 1259.6360689997673 1260.947184999939 1261.3649909999222 1261.408366999589 1261.6950280000456 1262.317058000248 1262.5797940003686 1262.5797940003686 1263.4380700001493 1263.4380700001493 1265.174601000268 1265.366212000139 1265.481282999739 1265.8052579998039 1266.041993000079 1266.2486990001053 1266.6018480001949 1266.6144619998522 1267.369059999939 1267.648886000272 1267.648886000272 1268.0948900002986 1268.0948900002986 1268.648804999888 1269.0620940001681 1269.9116630000062 1270.0097670000978 1270.2081709997728 1270.2774260002188 1270.7117110001855 1272.9883230002597 1273.1702890000306 1274.2284350004047 1274.6788329998963 1274.8309740000404 1275.3421630002558 1275.3852949999273 1275.3852949999273 1275.8426930001006 1276.790405999869 1277.4593919999897 1278.0774340000935 1278.3098559998907 1278.3161220001057 1279.3835459998809 1279.3835459998809 1280.3407800002024 1280.516601999756 1280.54349800013 1280.6518560000695 1280.6518560000695 1280.7611090000719 1281.5343430000357 1282.3049729997292 1282.6836350001395 1283.3350430000573 1283.3350430000573 1283.5028900001198 1284.106974999886 1284.3271490000188 1284.337320999708 1284.337320999708 1284.3837890001014 1284.979166999925 1285.8391530001536 1285.8544519999996 1287.8622649996541 1288.799033000134 1289.1226400001906 1289.132366000209 1289.5185560001992 1289.7100430000573 1290.028849999886 1290.8759779999964 1291.0703529999591 1291.0703529999591 1291.7368169999681 1292.1876229997724 1292.4323330000043 1292.4323330000043 1292.4838060000911 1292.986043999903 1293.300578000024 1294.1943780002184 1294.4524739999324 1296.0378829999827 1299.5306810000911 1300.7303880001418 1300.889038999565 1300.8989260001108 1301.3140879999846 1301.3140879999846 1301.5796719999053 1302.2362879998982 1302.645630999934 1302.6537679997273 1302.928875000216 1303.304728999734 1304.153931999579 1304.9237879998982 1305.5608319998719 1306.0219319998287 1307.0074470001273 1309.5356850000098 1309.7106539998204 1309.7106539998204 1310.430704999715 1310.7650549998507 1311.1628840002231 1313.3427329999395 1313.6233319998719 1314.7071949997917 1316.2124029998668 1316.6020930004306 1316.8464770000428 1317.210367999971 1318.0629489999264 1318.458130999934 1320.7709559998475 1322.406739000231 1322.5246999999508 1323.0628259996884 1323.20780499978 1324.4408780001104 1324.9794120001607 1324.9798999996856 1325.1554370000958 1325.444213999901 1326.832520000171 1327.263427999802 1330.2793790004216 1331.5279959999025 1331.5573330000043 1332.592408000026 1334.0002850000747 1334.6091730003245 1335.7679449999705 1335.829224999994 1336.9108489998616 1337.466065000277 1338.4291989998892 1338.4957690001465 1338.4957690001465 1338.560262999963 1339.0796719999053 1340.0731199998409 1341.12605800014 1341.5819509997964 1341.6406259997748 1342.882569000125 1343.1397310001776 1343.1397310001776 1344.8491630000062 1347.6221110001206 1348.6740319998935 1348.8013920001686 1348.8310150001198 1348.8869640002958 1352.1464849999174 1353.9034429998137 1354.931030999869 1355.0284029999748 1355.1358239999972 1355.6138100000098 1355.6437180000357 1356.9566660001874 1358.2192389997654 1359.5289320000447 1359.7312830002047 1362.5863850000314 1364.2932130000554 1364.9956060000695 1365.2651790003292 1366.7153320000507 1367.641032999847 1368.3380939997733 1368.3380939997733 1368.4673270001076 1369.0114760003053 1372.9637460000813 1373.6717530000024 1374.1730969999917 1375.6279310001992 1375.6279310001992 1375.9135750001296 1376.117799000349 1378.428712000139 1378.902507999912 1379.4896240001544 1380.0699470001273 1381.2239999999292 1381.3914799997583 1382.5335699999705 1386.544840999879 1387.7784429998137 1388.2920329999179 1388.6042479998432 1389.3086760002188 1389.9761149999686 1390.2934989999048 1390.4495860002935 1391.834675999824 1392.365885999985 1394.2198089999147 1395.2895510001108 1395.9114589998499 1397.016195999924 1398.764283000026 1399.551880999934 1399.8565679998137 1400.4479180001654 1403.0540370000526 1406.3604339999147 1406.6529549998231 1406.750936999917 1406.750936999917 1407.2454030001536 1407.5010179998353 1408.8850920000114 1410.132079999894 1411.310589000117 1414.8335779998451 1414.8733729999512 1415.7063810001127 1415.8590910001658 1418.4394129998982 1422.0188000001945 1423.021117999684 1424.3717869999819 1425.5123299998231 1425.947348000016 1427.894857000094 1430.7024739999324 1431.3432629997842 1432.8777669998817 1433.5216890000738 1436.2784019997343 1440.0532639999874 1443.222779000178 1444.140706999693 1444.6582039999776 1450.5287689999677 1453.956462000031 1455.1935629998334 1465.996094999835 1470.3711349996738 1478.762532999739 1482.4867360000499 1492.632813999895

Current
Mean: 1266.850 ms
Stdev: 88.906 ms (7.0%)
Runs: 1059.175944000017 1060.767130999826 1061.1024170001037 1061.8942470001057 1070.546835000161 1074.627481999807 1077.9453940000385 1080.0166020002216 1080.6772880000062 1083.8111570002511 1085.2384029999375 1085.8170170001686 1086.0657560001127 1086.7338870000094 1087.1468509999104 1087.231893000193 1088.435018000193 1089.1051030000672 1089.647828000132 1092.3661299999803 1093.162110000383 1097.9586589997634 1098.847413000185 1099.231690000277 1100.4437669999897 1101.8822029996663 1102.7168380003422 1105.453490999993 1105.6283780001104 1107.275839000009 1107.5659590000287 1110.5078940000385 1112.1995040001348 1112.2244060002267 1113.1594650000334 1115.709799000062 1117.330811000429 1121.1332199997269 1121.433960000053 1124.0393480001949 1126.3744309996255 1128.3461519996636 1128.9516599997878 1129.7210289998911 1132.478637999855 1132.5952150002122 1133.2754720002413 1142.1997070000507 1154.2494310000911 1155.8887129998766 1156.956828000024 1158.0898029999807 1162.4911299999803 1162.782186999917 1167.545817999635 1170.5541989998892 1170.8215749999508 1175.2163090002723 1178.9951989999972 1179.0321859996766 1180.452759000007 1180.7943529998884 1184.9909669999033 1185.7675379998982 1189.3275150000118 1190.8043619999662 1191.2960619996302 1192.594197999686 1192.7595220003277 1193.1166590000503 1197.0995289999992 1197.2145599997602 1197.3731280001812 1197.3731280001812 1199.4492999999784 1200.666503999848 1202.3214940000325 1202.545003999956 1206.1066490001976 1206.4541020002216 1206.8037920002826 1207.1923430003226 1208.3142499998212 1208.3142499998212 1208.6666259998456 1209.0135089997202 1209.271972999908 1211.0316570000723 1211.8953860001639 1213.3338219998404 1214.2759199999273 1214.7546800002456 1215.0088300001808 1216.3703209999949 1217.3955080001615 1218.1235770001076 1218.2423499999568 1218.3333749999292 1218.728311999701 1219.1957609998062 1219.7768959999084 1220.119507000316 1220.119507000316 1220.8651129999198 1221.9940189998597 1222.383382000029 1222.383382000029 1223.1057939999737 1223.6082770000212 1223.6955569996499 1223.7506510000676 1224.0383309996687 1225.3627530001104 1225.5901290001348 1226.4058440001681 1226.8808599999174 1227.5972910001874 1228.416464000009 1230.5638439999893 1230.634277000092 1230.897665000055 1231.7204590002075 1232.4487310000695 1232.888103000354 1233.1193039999343 1233.1193039999343 1233.831909000408 1233.9833990000188 1234.6331790001132 1236.3957110000774 1236.4550779997371 1236.7361250002868 1237.0597330001183 1237.7253419999033 1238.376221000217 1238.528239000123 1238.7624930003658 1239.7019859999418 1239.786621000152 1240.4892989997752 1240.940755000338 1241.3749190000817 1241.7483729999512 1242.272786999587 1242.272786999587 1242.9181729997508 1243.8881029998884 1244.5494389999658 1245.1691490001976 1245.3361820001155 1246.409587000031 1246.7948819999583 1248.2304290002212 1248.2304290002212 1248.2786059998907 1248.6045340001583 1248.6694340002723 1249.8289799997583 1249.9485679999925 1250.010580000002 1250.0299900001846 1251.15234400006 1251.5114750000648 1252.4444180000573 1253.182291999925 1253.360067000147 1253.6594659998082 1253.790079999715 1253.9376629996113 1254.0516359996982 1254.0516359996982 1254.085165000055 1254.7663179999217 1254.9630539999343 1257.2708740001544 1258.0832929997705 1259.1716319997795 1260.7426769998856 1261.421672000084 1261.7231049998663 1261.7544350000098 1261.7590339998715 1261.8401290001348 1261.9419360002503 1262.39139899984 1262.5067960000597 1262.5067960000597 1262.7006029998884 1262.7006029998884 1263.3067630003206 1264.1028649997897 1264.4279789999127 1264.7674159999005 1264.7674159999005 1266.4925140002742 1266.7619630000554 1267.5594489998184 1269.834391000215 1269.9657800002024 1270.7458500000648 1271.7066660001874 1272.6280930000357 1273.411092999857 1274.0359700000845 1274.7676189998165 1274.7676189998165 1276.0375169999897 1276.5575359999202 1276.8915610001422 1278.6156829996035 1278.6156829996035 1279.5884610000066 1279.5884610000066 1279.998373000417 1281.187663000077 1281.319174000062 1281.5917969997972 1282.0650240001269 1282.3771979999729 1282.7948000002652 1282.9490970000625 1282.9583749999292 1283.2400320000015 1283.8858239999972 1283.8858239999972 1284.594076000154 1284.5955810002051 1285.1560069997795 1285.346029999666 1285.5951749999076 1287.5986739997752 1289.0041919997893 1289.1017260001972 1291.6456300001591 1291.7996009998024 1292.0090749999508 1292.54427199997 1292.6299649998546 1292.651652999688 1293.7289230003953 1295.059855000116 1295.9547129999846 1295.9774179998785 1296.0607509999536 1296.0666100000963 1296.1973069999367 1297.0861009997316 1297.4452309999615 1298.1005049999803 1298.3877360001206 1299.1050209999084 1300.3386640003882 1300.6586110000499 1300.9788410002366 1301.0039880000986 1302.8615319998935 1303.0261240000837 1303.2576099997386 1303.3330490002409 1304.2104899999686 1305.0772299999371 1305.1409109998494 1305.2510589999147 1306.720418999903 1306.9637450003065 1307.177409000229 1307.4860840002075 1307.9254970001057 1309.7646899996325 1310.015706999693 1311.511882999912 1311.5655930000357 1312.6555180000141 1312.6555180000141 1312.9515390000306 1314.2987469998188 1314.828125 1314.9718019999564 1316.473103999626 1316.4941420000978 1316.8586030001752 1316.9123540003784 1317.2364509999752 1318.1628419999033 1318.5595300002024 1318.8259280002676 1318.844076000154 1319.4082439998165 1320.1246750000864 1321.1180429998785 1322.5227459999733 1323.1322840000503 1323.7337250001729 1324.6065679998137 1324.6065679998137 1324.7559009999968 1324.8740240000188 1325.2616379996762 1325.763427999802 1326.9378670002334 1326.9378670002334 1327.3341470002197 1327.688192000147 1328.14009599993 1329.0703529999591 1329.5244149998762 1329.5244149998762 1329.7690429999493 1330.5071620000526 1330.6162930000573 1332.6742360000499 1332.8243410000578 1333.0695810001343 1333.5185549999587 1334.0557050001808 1334.4939779997803 1334.976482000202 1336.8325609997846 1336.9578860001639 1337.5342619996518 1337.9449470001273 1339.5131839998066 1341.2129319999367 1341.895183000248 1341.9209389998578 1343.4724940001033 1343.9940189998597 1344.4947509998456 1344.9455980001949 1345.4328620000742 1346.4333510003053 1347.5620120000094 1348.1430669999681 1348.7512619998306 1349.3431809996255 1349.362875000108 1349.8241779999807 1349.8335779998451 1350.8459879998118 1352.5657959999517 1352.6901050000452 1355.0820730002597 1356.8484700000845 1356.8660089997575 1356.9606939996593 1357.1204429999925 1357.3334150002338 1358.2406009999104 1358.4511319999583 1358.8127040001564 1358.938152000308 1359.5443529998884 1363.785116000101 1365.769694000017 1365.991741000209 1366.1763109997846 1367.8310139998794 1370.5093189999461 1370.943481999915 1371.7161880000494 1371.9079999998212 1373.152628999669 1373.3330899998546 1373.3330899998546 1379.012980000116 1381.629029000178 1381.929444000125 1386.781820999924 1392.7160660000518 1394.7182620000094 1395.362548999954 1396.1682130000554 1396.1682130000554 1397.0745040001348 1397.0745040001348 1402.0657560001127 1402.4439300000668 1407.3790699997917 1409.9241949999705 1413.06144199986 1419.685628999956 1419.816489000339 1422.7405609996058 1424.0457770000212 1425.003337000031 1428.426067000255 1432.560262999963 1435.2360839997418 1436.74739699997 1440.193808000069 1443.3254399998114 1446.6837569996715 1450.3984380001202 1452.1129160001874 1460.833780999761 1469.6286220001057 1469.6527509996668 1480.571208999958 1495.0147710000165
Open search router TTI (CPU) Baseline
Mean: 150.717 %
Stdev: 3.280 % (2.2%)
Runs: 142.6005251081896 143.26752697130078 144.21396048716537 145.0394629440922 146.32289732357276 146.84030979237625 147.2100803161184 147.23901918457742 147.41073761611466 147.5874428561245 147.60481263247542 147.79764177725468 147.9745878166907 148.07444370813343 148.24710700544722 148.40652537457387 148.42819868422916 149.27624033546903 149.3293958550625 149.64657323853987 149.67156423806733 149.69758714981876 149.95562094083903 149.98776252097804 150.15747142291337 150.22534174480876 150.32161892003936 150.39382896041445 150.4617945085601 150.53005300530052 150.53006931024785 150.75129506554907 150.95094004147558 151.33163696891972 151.46165249007532 151.58307203089694 151.64268246977554 152.01263817048047 152.02820607683432 152.05480260594106 152.10156994651445 152.31340990906492 152.68570634685642 152.86667770206057 152.93479980597937 153.021880257134 153.1807287295167 153.51390708079444 153.54470691652295 153.5680429424853 153.70845449369577 154.04554260735705 154.1532385712299 154.45986170465736 154.9278219435273 155.42941856572943 155.67199153517635 157.2690469567486 157.55254936283555 157.82338374252416

Current
Mean: 150.185 %
Stdev: 3.538 % (2.4%)
Runs: 143.07484700565877 144.38171439823435 144.4514441370661 144.49684224205873 144.53811807720544 145.04981341803824 145.71311210984038 146.3274810382203 146.3652526797986 146.38186897914665 146.42071643226046 146.75314902482233 146.97916444604363 147.2034334279046 147.66047964617545 147.72281606216757 147.75595652818234 147.8484583827865 148.19208468917958 148.49437734432263 148.50592325779976 148.73989937360784 148.8298484301117 148.99946881619843 149.22752842114483 149.6955775811542 149.70581712531805 150.10054441020023 150.1556326392803 150.16566806865325 150.32521074022088 150.34347492773978 150.67729704992553 150.6954053174487 151.5826665391522 151.6410618020066 151.76204775553097 151.77061704036265 151.836585112291 151.83751750566256 152.05118677509213 152.32392020960077 152.4565055641502 152.48385308566142 152.51698676611366 152.71100092874772 152.84915202095314 152.88088902293157 153.43918456197366 153.51813938339265 153.5229345796808 153.87525885811894 154.0767128989618 154.86515803282853 155.23749899309112 156.65458424235968 156.9953868166015 157.15652123361465 158.89625898083645
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

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (7/12)

Meaningless Changes To Duration (6/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
Open search router TTI (RAM) Baseline
Mean: 393.938 MB
Stdev: 4.983 MB (1.3%)
Runs: 384.5796875 384.840625 385.5953125 386.728125 387.76796875 387.959375 388.53359375 388.64609375 388.81015625 388.94921875 389.47578125 389.484375 390.15078125 390.31640625 390.36328125 390.50078125 390.67890625 390.70234375 390.7671875 390.9546875 391.09296875 391.1692708333333 391.20546875 391.40546875 391.621875 391.6734375 391.83515625 392.578125 392.89921875 393.45625 393.53671875 393.66015625 393.9192708333333 394.19609375 394.30078125 394.83359375 395.23046875 395.28046875 395.6529947916667 395.8131510416667 396.0188802083333 396.434375 396.9908854166667 397.06328125 397.5125 397.6360677083333 397.9484375 398.8216145833333 399.21953125 399.3625 399.4546875 399.80390625 399.95390625 399.990625 400.58046875 401.28515625 402.4654947916667 403.10078125 404.94921875 406.5146484375

Current
Mean: 394.122 MB
Stdev: 3.939 MB (1.0%)
Runs: 385.91796875 385.996875 387.275390625 388.30625 388.48984375 388.76484375 389.45546875 389.6046875 389.7015625 389.88203125 390.025390625 390.1647135416667 390.56484375 391.528125 391.6647135416667 391.6861979166667 392.1673177083333 392.21640625 392.28125 392.4127604166667 392.61953125 392.7109375 393.3765625 393.40703125 393.4596354166667 393.47578125 393.55078125 393.5703125 393.7453125 393.96171875 394.07265625 394.28671875 394.46328125 394.4984375 394.6451822916667 395.1296875 395.1375 395.371875 395.490625 395.58203125 395.7359375 395.74296875 395.9680989583333 396.1165364583333 396.79375 396.9296875 397.1375 397.1438802083333 397.708984375 398.29375 398.6061197916667 398.61484375 399.8625 400.26171875 400.52421875 401.0013020833333 401.02734375 401.11015625 403.94921875
Open search router TTI (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Open search router TTI (CPU/UI) Baseline
Mean: 26.360 %
Stdev: 1.753 % (6.6%)
Runs: 23.3 23.4 23.6 23.8 23.9 24 24.2 24.2 24.4 24.5 24.6 24.6 24.7 24.7 24.9 25 25.1 25.1 25.3 25.5 25.5 25.5 25.5 25.5 25.6 25.6 25.8 25.8 25.9 25.9 26.2 26.3 26.4 26.6 26.6 26.8 27.1 27.2 27.2 27.6 27.6 27.6 27.6 27.7 27.8 28 28 28 28.1 28.1 28.4 28.4 28.7 28.7 28.7 28.8 28.9 29.1 29.6 30.4

Current
Mean: 25.679 %
Stdev: 1.507 % (5.9%)
Runs: 22.5 22.7 22.9 23.4 23.7 23.9 24.2 24.2 24.3 24.3 24.3 24.5 24.6 24.6 24.7 24.7 24.8 24.8 24.8 24.9 24.9 25.1 25.2 25.2 25.2 25.4 25.5 25.5 25.6 25.6 25.6 25.8 25.9 25.9 26 26 26.2 26.3 26.3 26.3 26.3 26.3 26.4 26.5 26.5 26.6 26.7 26.9 27.1 27.2 27.3 27.6 27.6 28 28.9 28.9 29 29.3

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (8/12)

Meaningless Changes To Duration (7/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
Report typing Composer typing rerender count Baseline
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Current
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Report typing Message sent Baseline
Mean: 503.819 ms
Stdev: 36.789 ms (7.3%)
Runs: 423.2449139999226 430.33740299986675 432.5552169997245 437.57202100008726 447.6988119999878 450.29541100002825 453.5472420002334 454.8382569998503 458.6915690000169 459.04158600000665 459.9857999999076 460.22416200023144 466.63110300013795 472.0384929999709 473.796548999846 477.65503000002354 477.70271900016814 477.7557379999198 480.5764160002582 481.4265140001662 481.4593509999104 483.7901619998738 493.5991619997658 496.16573100024834 501.81823800038546 503.31083200033754 507.37117500044405 518.0806479994208 519.7486169999465 520.3856199998409 523.3851330000907 523.7105309995823 523.7889000000432 523.8921309998259 523.9284669999033 524.012085000053 524.3380939997733 524.4557700003497 524.6564540001564 524.8853759998456 525.2824309999123 525.3059080000967 525.4867359995842 525.8158369995654 525.8666179999709 527.2275799997151 529.6330569996499 529.8254810003564 533.9432779997587 534.3337810002267 536.0067139994353 539.29919399973 541.7578940000385 545.309529999271 547.3663739999756 551.9350190004334 554.6829030001536 558.369752000086 562.7120769992471 566.5917970007285

Current
Mean: 500.755 ms
Stdev: 38.249 ms (7.6%)
Runs: 421.28910299995914 424.2018639999442 424.203288000077 431.28893999988213 433.25846399972215 440.01350999996066 441.1643070001155 446.2416580002755 446.61079900013283 453.8276370000094 458.64766399981454 460.91967799980193 470.50354099972174 471.2521159998141 471.7862140000798 472.8345539998263 476.17704300023615 476.7131750001572 481.0464689997025 481.368570999708 488.6958010001108 488.78719099983573 490.8013099995442 495.49837299995124 497.90995300002396 498.1857100003399 500.4563809996471 503.4781499998644 506.6645919997245 506.7888179998845 507.0014650002122 522.1923420000821 522.4052329999395 522.6807859996334 523.6267499998212 524.0383299998939 524.1551100006327 524.4548340002075 525.1608889997005 525.4673670004122 525.5452070003375 525.7077230000868 525.9232579995878 525.9698890000582 526.3852549996227 526.4832359999418 527.2620450002141 528.5205899998546 532.0356849995442 532.6781820002943 535.1561689991504 542.94396999944 543.1299640005454 544.4759930009022 544.775228000246 545.1615399997681 551.8670249991119 558.1215820005164 558.988199999556 562.3901370000094
Report typing (CPU) Baseline
Mean: 97.560 %
Stdev: 4.323 % (4.4%)
Runs: 88.22446983363797 89.29433275892731 89.96847642514949 90.81906239456309 91.475822852864 91.60932240331873 91.93105716916696 92.1424799253577 92.46296949274627 92.8597227608927 93.04616164714933 93.20666768614134 93.63117945432747 93.93057149171712 94.02341379865766 94.51100353885299 94.76482799320154 95.63039034726337 95.67451462559013 95.91836327735199 96.11722375214755 96.35823291904049 96.51649822402042 96.54738329068391 96.61511926322449 96.76840075750039 97.04232832364033 97.05717657872356 97.24350149612377 97.28020761863407 97.66748005132601 97.67496899538217 97.74655962272469 98.51666176078996 98.91196127326296 99.09364944266109 100.8276521445944 100.97792904329883 101.04416569980661 101.07767639194951 101.09657981838973 101.2962491139015 101.46899682916953 101.55032519895198 101.6363381139592 101.98779155454154 102.28944603228774 102.32692027400739 102.3835682222213 102.62407636153307 102.73442625202695 103.14769670433495 103.28099008940649 103.46652773994892 103.67228977574092 104.7762182777877 104.9465247586376

Current
Mean: 97.997 %
Stdev: 5.206 % (5.3%)
Runs: 88.38085324494679 89.87991916593434 90.10366591943014 90.45514762382416 90.62475256179512 90.81367285509633 91.70870215590524 91.80786970863767 92.15127509774698 92.32774145291577 93.31468369741313 93.53431046157765 94.10913528595935 94.23311423546988 94.72448737585786 94.78440937996783 95.08571388255461 95.16241556233172 95.27932529884403 95.51225611773805 95.73363297122921 96.0729936587031 96.47173045528471 96.50106997404032 96.58661451691954 96.63327905456069 97.07408232977485 97.11266711669472 97.30391292234164 97.38912294686419 97.5650297194302 97.58027806563517 97.90939205553961 98.11967771374752 98.24594090805058 98.26345935026187 98.34570045820189 98.67502665499411 98.89544762460041 99.91675334726979 100.50415696418521 100.57545152046704 100.7799877197829 101.97669361281403 102.34720948927213 102.81780673834272 102.97039003658873 102.99927837251896 103.17557110339287 103.58561646374827 103.59585681076625 103.61576057668222 103.74937708587092 103.92890794548218 104.1779558030064 104.68190631272184 105.30090142117032 113.16406282236666 113.4894814254988

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (9/12)

Meaningless Changes To Duration (8/11)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 83.407 ms → 80.317 ms (-3.090 ms, -3.7%)
App start time nativeLaunch 24.877 ms → 25.259 ms (+0.381 ms, +1.5%)
App start time runJsBundle 341.483 ms → 341.633 ms (+0.150 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 542.450 ms → 545.250 ms (+2.800 ms, +0.5%)
App start time appCreation 75.567 ms → 76.797 ms (+1.230 ms, +1.6%)
App start time regularAppStart 0.022 ms → 0.028 ms (+0.006 ms, +26.1%) 🟡
App start time (CPU) 150.588 % → 154.775 % (+4.188 %, +2.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 357.783 MB → 360.044 MB (+2.260 MB, +0.6%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.481 % → 29.415 % (+1.933 %, +7.0%)
Open search router TTI Load Search Options 137.988 ms → 139.436 ms (+1.448 ms, +1.0%)
Open search router TTI Open Search Router TTI 1267.222 ms → 1266.850 ms (-0.372 ms, ±0.0%)
Open search router TTI (CPU) 150.717 % → 150.185 % (-0.532 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 393.938 MB → 394.122 MB (+0.184 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.360 % → 25.679 % (-0.681 %, -2.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.819 ms → 500.755 ms (-3.064 ms, -0.6%)
Report typing (CPU) 97.560 % → 97.997 % (+0.437 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 456.009 MB → 455.983 MB (-0.026 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.268 % → 21.312 % (+0.044 %, ±0.0%)
Chat opening Chat TTI 787.700 ms → 802.508 ms (+14.808 ms, +1.9%)
Chat opening (CPU) 164.243 % → 163.220 % (-1.022 %, -0.6%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 385.412 MB → 386.442 MB (+1.029 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.444 % → 32.793 % (-0.651 %, -1.9%)
Money request - Open Manual Tracking 146.703 ms → 143.176 ms (-3.527 ms, -2.4%)
Money request - Open Contacts 224.371 ms → 227.861 ms (+3.490 ms, +1.6%)
Money request - Open Create 144.363 ms → 145.164 ms (+0.801 ms, +0.6%)
Money request (CPU) 178.672 % → 179.280 % (+0.608 %, ±0.0%)
Money request (FPS) 58.935 FPS → 59.077 FPS (+0.142 FPS, ±0.0%)
Money request (RAM) 449.138 MB → 448.329 MB (-0.809 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.628 % → 43.920 % (+0.292 %, +0.7%)
Show details
Name Duration
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

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: 456.009 MB
Stdev: 6.516 MB (1.4%)
Runs: 442.04296875 443.2874644886364 445.28053977272725 445.5582386363636 445.8314732142857 446.3497869318182 447.39862351190476 447.6517269736842 447.8502604166667 448.82741477272725 449.625390625 450.20188210227275 450.2462713068182 451.3714488636364 451.9237351190476 452.29371279761904 453.22674851190476 453.3578869047619 453.40696022727275 453.50706845238096 453.5335582386364 454.16573660714283 454.1968005952381 454.6798650568182 454.7021949404762 454.75284090909093 455.33482142857144 455.37909226190476 455.4010416666667 455.5824424342105 455.6962425595238 456.27734375 456.6212890625 457.1173650568182 457.3342927631579 457.65122767857144 458.1475074404762 458.21949404761904 458.4453125 458.80057565789474 459.0483141447368 459.2317708333333 459.4938322368421 459.98458059210526 460.14453125 460.94122023809524 461.16426809210526 461.23028273809524 462.2060032894737 463.1006324404762 463.20926339285717 464.3990542763158 464.864453125 465.3277138157895 466.0853515625 466.4759765625 466.51254111842104 469.1480654761905 470.70106907894734

Current
Mean: 455.983 MB
Stdev: 6.647 MB (1.5%)
Runs: 438.9417782738095 443.6401041666667 444.4066051136364 444.62088815789474 446.7061011904762 447.2802220394737 447.9893092105263 448.13174715909093 449.00986842105266 449.3668323863636 449.51899857954544 449.6907894736842 450.29385653409093 450.4353515625 450.5435855263158 451.5880859375 451.6408025568182 451.91331845238096 452.2450657894737 452.50594429347825 452.6131036931818 454.5564630681818 455.44996279761904 455.55735085227275 455.8829900568182 455.91654829545456 456.0044642857143 456.2213541666667 456.35423519736844 456.5758634868421 457.00762648809524 457.0433238636364 457.42113095238096 457.62129934210526 457.6605674342105 458.22544642857144 458.2607886904762 458.45200892857144 458.58388157894734 458.6116832386364 458.68039772727275 458.70682565789474 459.3212425595238 459.4553865131579 459.8665707236842 460.08120888157896 460.4897693452381 460.9318359375 461.4251953125 462.38980263157896 462.6204769736842 464.4368832236842 464.611328125 465.1761532738095 465.56722861842104 466.62911184210526 467.17890625 469.658203125 471.2952302631579
Report typing (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Copy link
Contributor

github-actions bot commented May 8, 2025

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

@shubham1206agra
Copy link
Contributor

Screenshot 2025-05-13 at 5 40 24 PM

@sumo-slonik I am getting policy expense chat in results. Can you please look into this?

@trjExpensify
Copy link
Contributor

@shubham1206agra can you list the steps to reproduce, please? Thanks!

image

@shubham1206agra
Copy link
Contributor

Sure

  1. Open search tab
  2. Click on Expense Reports
  3. Click on Filter
  4. Click on From filter and select the person which you have access of expense chat (do yourself for easy repro)
  5. Click on View Results
  6. Observe the empty expense reports which should not be there.

@mountiny mountiny removed the DeployBlockerCash This issue or pull request should block deployment label May 13, 2025
@trjExpensify
Copy link
Contributor

Repro steps:

  1. Open Reports page
  2. Click on Expense Reports
  3. Click on Filter
  4. Click on From filter and select the person which you have access of expense chat (do yourself for easy repro)
  5. Click on View Results
  6. Observe the empty workspace chat appears in the results.

Main:
image

Staging:
image

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.