-
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] Service maps error after clicking on multiple services #119077
[APM] Service maps error after clicking on multiple services #119077
Conversation
Pinging @elastic/apm-ui (Team:apm) |
💚 Build Succeeded
Metrics [docs]Async chunks
To update your PR or re-run it, just comment with: |
const detailsUrl = backendName | ||
? apmRouter.link('/backends/overview', { | ||
query: { | ||
...query, | ||
backendName, | ||
} as TypeOf<ApmRoutes, '/backends/overview'>['query'], | ||
}) | ||
: undefined; |
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.
Why didn't this fail before? Is backendName
optional when it should be required?
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.
backend
is required for the /backends/overview
route, but not all nodes on service maps have it, so the problem was that it was trying to generate the URL with an undefined value.
The following labels were identified as gaps in your version labels and will be added automatically:
If any of these should not be on your pull request, please manually remove them. |
#119169) Co-authored-by: Cauê Marcondes <[email protected]>
#119170) Co-authored-by: Cauê Marcondes <[email protected]>
tests ok |
closes #118884
service.maps.mov