{
"freqIteration": [
{
"frequency": "2.4GHz",
"channel": "1",
"antenna": "2x2",
"bandwidth": "40MHz",
"rawData": [
{
"angle": "0",
"testLocation": "10",
"speed": 1,
"stream": "upstream"
},
{
"angle": "0",
"testLocation": "KITCHEN",
"speed": 15,
"stream": "downstream"
},
{
"angle": "45",
"testLocation": "KITCHEN",
"speed": 10,
"stream": "upstream"
},
{
"angle": "45",
"testLocation": "KITCHEN",
"speed": 16,
"stream": "downstream"
},
]
},
{
"frequency": "5GHz",
"channel": "36",
"antenna": "4x4",
"bandwidth": "80MHz",
"rawData": [
{
"angle": "0",
"testLocation": "KITCHEN",
"speed": 50,
"stream": "upstream"
},
{
"angle": "0",
"testLocation": "KITCHEN",
"speed": 55,
"stream": "downstream"
},
{
"angle": "45",
"testLocation": "KITCHEN",
"speed": 50,
"stream": "upstream"
},
{
"angle": "45",
"testLocation": "KITCHEN",
"speed": 56,
"stream": "downstream"
},
]
}
is there possible way to access the data for example i want to display the kibana charts in such a way that.. on x axis to represent angle like 0,45,90 available..which were collected from the json input 'angle' and on y axis i need to match corresponding speed for that particular angle which were shown in json data like if on x axis for '0' i need to display speed as '15' on y axis ..so corresponding nested array angle and speed to be display in chart (can be any chart)...please suggest me im new to the kibana.