-
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] Improved PHP stack trace formatting #80949
Labels
apm:errors-page
apm:test-plan-done
Pull request that was successfully tested during the test plan
good first issue
low hanging fruit
Team:APM
All issues that need APM UI Team support
Comments
Pinging @elastic/apm-ui (Team:apm) |
sorenlouv
added
[zube]: Inbox
good first issue
low hanging fruit
and removed
[zube]: Inbox
labels
Oct 19, 2020
sorenlouv
changed the title
Kibana's APM UI should format stack trace from PHP Agent in the way idiomatic to PHP
[APM] Improved PHP stack trace formatting
Nov 17, 2020
For the next person who picks this up: The various language-specific renderers are defined here: kibana/x-pack/plugins/apm/public/components/shared/stacktrace/frame_heading.tsx Lines 49 to 65 in 88f12fd
|
achyutjhunjhunwala
added a commit
that referenced
this issue
Jan 25, 2023
Closes #80949 ## Summary This PR adds support for displaying Language specific Stacktrace for PHP. ## PHP **Before changes -** <img width="1681" alt="image" src="https://user-images.githubusercontent.com/7416358/213389631-f8dd808d-3a38-4663-b2dc-c777d87795a6.png"> **After changes the Stackttrace will look like this** <img width="1681" alt="image" src="https://user-images.githubusercontent.com/7416358/213192049-e4bc56b0-49ba-40a3-85c1-218be917ba71.png">
achyutjhunjhunwala
added
the
apm:test-plan-done
Pull request that was successfully tested during the test plan
label
Feb 20, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
apm:errors-page
apm:test-plan-done
Pull request that was successfully tested during the test plan
good first issue
low hanging fruit
Team:APM
All issues that need APM UI Team support
The way to format stack trace that is idiomatic to PHP (for example it's the way stack trace is formatted by PHP's
debug_print_backtrace()
):and for exceptions (for example it's the way stack trace is formatted by PHP's
Throwable::getTraceAsString()
):An example of stack trace for a method:
An example of stack trace for an exception:
References
The text was updated successfully, but these errors were encountered: