-
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
[APM] Breakdown Top dependencies API #211441
Open
cauemarcondes
wants to merge
19
commits into
elastic:main
Choose a base branch
from
cauemarcondes:dependencies-api-breakdown
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 10 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
b9d2761
[APM] Breakdown Top dependencies API
cauemarcondes 9c0d1e7
Merge branch 'main' into dependencies-api-breakdown
cauemarcondes db20739
fixing cy
cauemarcondes f03fc54
Merge branch 'dependencies-api-breakdown' of github.com:cauemarcondes…
cauemarcondes 933f461
fixing ci
cauemarcondes 91ea110
fixing CI
cauemarcondes 4b76d9c
ci
cauemarcondes 91e62ef
fixing ci
cauemarcondes eedd8b3
ci
cauemarcondes 342a4d4
Merge branch 'main' into dependencies-api-breakdown
cauemarcondes 2a2e162
Merge branch 'main' into dependencies-api-breakdown
cauemarcondes e610429
Update x-pack/test/api_integration/deployment_agnostic/apis/observabi…
cauemarcondes 2f41593
fixing refresh problem
cauemarcondes 4ae2547
Update x-pack/solutions/observability/plugins/apm/public/components/s…
cauemarcondes c1eac8d
adding compartison back to deps
cauemarcondes b3fbcf1
Merge branch 'main' of github.com:elastic/kibana into dependencies-ap…
cauemarcondes 9fd2492
fixing merge problem
cauemarcondes 175b372
ci
cauemarcondes c7695f6
new ES version
cauemarcondes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 we need to reset
renderedItems
whenever a request is made toGET /internal/apm/dependencies/top_dependencies
. This is because when clicking on refresh, the/statistics
endpoint is called in parallel with/top_dependencies
.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.
This happens on all pages, and that's because the use_fetcher depends on the
timeRangeId
, which is updated every time therefresh
button is clicked, invalidating all functions.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.
Yeah, but looks like, in this case, we are making an unnecessary request to
statistics
aren't we? I.e: it's fetching data for dependencies that will be replaced oncetop_dependencies
responds. And once it responds,statistics
will be called again for the actual dependencies it needs to fetch data for.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.
Not really, the stats API is only called once on every refresh.

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.
🤔 . That's not what I'm seeing
top_dep.mov
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.
😲
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 tested pointing to another cluster, same as yours, and the extra call happened here too. Let me take a look.
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.
Alright, I made some changes, I mainly removed the
renderedItems
, we'll need to close look into it to make sure it works as it should. I also add a new option on the userFetcher to not invalidate the dependencies when the refresh button is clicked.