-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
chore: rename functions in aggregated_transactions helper #116001
chore: rename functions in aggregated_transactions helper #116001
Conversation
Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually? |
💚 CLA has been signed |
Pinging @elastic/apm-ui (Team:apm) |
I tried adding the |
I have signed the CLA. Not sure why the status is still not reflected here. Am I missing something? @sqren |
@elasticmachine merge upstream |
@deepak-sreekumar looks like your commits come from two separate email addresses. You'll have to sign the CLA with both, or, reset the author for the commits from one of the email addresses. |
00a54ce
to
4f3080b
Compare
@dgieselaar Got it. Fixed the author for the commit. Thanks a lot! |
Status of |
@elasticmachine merge upstream |
Buildkite, test this |
You might need to run |
1ae1a9b
to
9806665
Compare
@sqren Thanks! Fixed it. Please trigger the build again. |
Buildkite, test this |
@dgieselaar I changed the labels so this will not be backported to 7.16 since it's over FF and it's not a bug fix. Sounds ok or are you worried this will cause too many conflicts? |
@elasticmachine run elasticsearch-ci/docs |
return searchAggregatedTransactions | ||
? ProcessorEvent.metric | ||
: ProcessorEvent.transaction; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's better to rename helpers/aggregated_transactions/index.ts
to helpers/transactions/index.ts
instead of splitting it up (moving some functions and not others)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. Will make the change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sqren Pushed the changes. Please trigger the build again
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a single change request
sgtm! |
…reekumar/kibana into refactor/rename-methods
cc53444
to
699cced
Compare
Buildkite, test this |
Buildkite, test this |
💛 Build succeeded, but was flaky
Test Failures
Metrics [docs]
History
To update your PR or re-run it, just comment with: |
@elasticmachine run elasticsearch-ci/docs |
@sqren Hope everything is in order. Please let me know if there is anything else pending before the merge. Thanks a lot for the help! |
💔 Backport failedThe backport operation could not be completed due to the following error: The backport PRs will be merged automatically after passing CI. To backport manually run: |
…-migrate-away-from-injected-css-js * 'master' of github.com:elastic/kibana: (347 commits) [Upgrade Assistant] Disable UI by default in 8.0 (elastic#115782) [Uptime] Added permission for new tls alert (elastic#116107) [APM] Optimize synthtrace (elastic#116091) Fix ux/apm inspector panel (elastic#116188) [RAC]: add experimental badge to alerts (elastic#116090) Unskip jest handled promise rejections (elastic#116021) [Lens] Improve tick placement for binary formatter (elastic#116158) chore: rename getApmHref to getLegacyApmHref (elastic#115689) [Security Solution] Validate ipv4/CIDR with format x.x.x.x/xx (elastic#116127) [Fleet] Use data stream name in query to get data stream info (elastic#115805) [Uptime] TLS and TLS legacy alert translation mismatch (elastic#116113) New field for integrations field (elastic#116175) Set required to false until the input is not visited (elastic#116099) Enable interactive setup by default (elastic#116141) Add not ready response to interactive setup (elastic#116138) Hide or button if needed (elastic#116124) [ML] Adding datafeed api tests (elastic#116133) Add page title to index advanced page (elastic#116134) chore: rename functions in aggregated_transactions helper (elastic#116001) Fix bug where number rendered as date (elastic#116224) ... # Conflicts: # x-pack/plugins/reporting/server/lib/screenshots/observable.ts # x-pack/plugins/reporting/server/lib/screenshots/open_url.ts
Summary
Some functions in the helper include
ForAggregatedTransactions
in the name but they are meant to be used for both single transactions and aggregated transactions. Removed the term aggregated from such methods and moved to another helper.Closes #114458
For maintainers