I'm trying to create a table visualization in Kibana. My data structure is like this:
Vehicle{
Vehicle Number
Vehicle make
Vehicle model
Vehicle year}
Each record can have multiple vehicles in it, so the parent Vehicle data element is an array. The problem I have is that if I try to output the data into a table visualization, kibana combines each element with each possible other element, rather than only displaying information relevant to each vehicle. So, if I have one vehicle in the record, it works flawlessly. But then for records with multiple vehicles, I see duplication of data.
For example: a record has 2 vehicles in it. 2006 Toyota Corrola and 2010 Ford Taurus. I want to see the following table, two lines only.
Year Make Model
2006 Toyota Corrola
2010 Ford Taurus
But what I actually get is:
Year Make Model
2006 Toyota Corrola
2006 Toyota Taurus
2006 Ford Corrola
2006 Ford Taurus
2010 Toyota Corrola
2010 Toyota Taurus
2010 Ford Corrola
2010 Ford Taurus
Does anybody know what I might need to do to get each line in the table to only show information relevant to the array it is part of? I have to imagine it's simple, I'm just not finding what it could be.