Hi, I need an help. I have a json like:
[
{"name": "Albert", "year": 1980, "class": "B"},
{"name": "John", "year": 1990, "class": "C"},
{"name": "Lerry", "year": 1990, "class": "C"},
{"name": "Joe", "year": 1980, "class": "A"},
{"name": "Kevin", "year": 1990, "class": "D"},
{"name": "Dude", "year": 1980, "class": "A"},
]
The years and class values could changes.
I would like to display them in a pivot table with 3 columns: "Class", "Year(1)", "Year(2)"...
Do you know how I could create a pivot table? I try with "enhanced table" plugin but this is not available for Kibana 7.16.2
Thanks in advance