Here's a typical document I'm working with:
"_source": {
"timestamp": "2017-04-26T08:28:00",
"signals": [
{
"par": "signalA",
"value": 76.36666666666666
},
{
"par": "signalB",
"value": 96
},
{
"par": "signalC",
"value": 72
}
}
]
}
},
where "signals" is nested. Question:
How can I plot any (or multiple) of these signals as a function of time?
Thank you!