Hello,
I'd like to know if it's possible to have groups on Kibana, for example:
Field1:
Name1:
First:
Second:
Name2:
First:
Second:
And we would click on a + and it would unfold the values
Hey @npontes , are you referring to the presentation of an Elasticsearch document in Discover with nested data?
If you index a document similar to the following:
POST groups/_doc
{
"Field1": {
"Name1": {
"First": "Al",
"Last": "Green"
},
"Name2": {
"First": "George",
"Last": "Clinton"
}
}
}
then in Discover, you can look at it in the JSON view:
Hello Brandon
Thanks for your response.
You are correct, I just checked the Json and found my problem, my Json doesn't have nested data, that's another problem.
Thank you so much for your help
system
(system)
Closed
October 30, 2018, 7:41am
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.