-
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
Kibana feature : Allow users to display a string with newlines inside the datatable #76242
Comments
Pinging @elastic/kibana-app (Team:KibanaApp) |
I'd also like this feature, as we are currently performing the multiline consolidation process at the rsyslog stage, so incoming messages will contain the '\n' new line character. EDIT: Please disregard my comment below--I realized the issue was due to the escaping of the new line character in the JSON message field. For those who might benefit from this experience, this is what my message field looked like with problematic escaped new line characters (viewing it in JSON view): Confusingly however, the representation of the new line character in the original log message during ingestion was OLD COMMENT - DISREGARD |
@AditiKhalatkar I'm not sure if my experience is the same as yours, but might be worth checking if you haven't already. |
We need this feature too. |
We need this feature as well |
@stratoula Will this be possible once dynamic row height lands? |
I am not 100% sure, I want to test it first. We definitely need to add the dynamic heights to support this. I am not sure if it will be supported without any change from our side. I will check it and update the issue :) |
@flash1293 with the new auto-height we can have this result but with double |
Pinging @elastic/kibana-data-discovery (Team:DataDiscovery) |
whatever we come up with for this in vis editors we should also do for Discover as well. Legacy table has this feature CC @VijayDoshi |
Do we have a path forward on this? Seems like we are all in agreement that we should respect line breaks. |
@kertal @stratoula It seems to me like we can simply add this behavior if the user has set an "auto" or multi line row height by replacing newlines by breaks for both Discover and Lens, what do you think? |
Yes I was thinking the same ++ |
Sure thing |
Do this automatically if row auto height is enabled (not supported for headers, only data rows) |
Where is the config in Kibana or Helm values? |
@flavono123 they are on Lens editor, |
@stratoula So speedy ! Kibana version is |
Oh, newlines work in Discover, never mind. I did not selected, clicking the + button of the field("log"). Thank you for your very very fast response btw! @stratoula |
Describe the feature:
If the value of a field is stored as a string having newlines in Elasticsearch, the feature may enable the user to display the string which parses "\n" as a newline in the string. This feature would be specifically useful for someone who wants newlines in a datatable, however other visualizations may also benefit from this. Kindly consider.
Describe a specific use case for the feature:
For instance, there is a field like address, having value = "X Street \n Y Apt \n Z State", the user may want to represent this value inside the datatable as:
"X Street
Y Apt
Z State"
The text was updated successfully, but these errors were encountered: