-
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
[Logs UI] Support error.stack_trace #46211
Labels
Feature:Logs UI
Logs UI feature
Team:Infra Monitoring UI - DEPRECATED
DEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_services
Comments
felixbarny
added
Feature:Logs UI
Logs UI feature
Team:Infra Monitoring UI - DEPRECATED
DEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_services
:Logs UI
labels
Sep 20, 2019
Pinging @elastic/infra-logs-ui |
We're planning to GA ECS loggers in 7.11. |
Thanks for the bump, I'll bring it up during the 7.12 planning. |
9 tasks
Hi, any updates? |
The PR @felixbarny has put together (#94906) looks like a big step into this direction. I hope to get around to reviewing and merging it soon ™️. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Feature:Logs UI
Logs UI feature
Team:Infra Monitoring UI - DEPRECATED
DEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_services
The field
error.stack_trace
has recently been added to ECS: elastic/ecs#562This issue is about supporting that field with the default log layout.
If
error.stack_trace
is available, it should be rendered after themessage
in a new line.If it's possible, it would be great if the Logs app could also handle the case whereerror.stack_trace
is an array, containing each line of the stack trace in a new array element. In that case, it should just join all lines like thisevent.get("error.stack_trace").join("\n")
. For more background on that use case, see the ECS PR (elastic/ecs#562).The text was updated successfully, but these errors were encountered: