I am using the Infinity plugin with an external API, trying to visualize it in a time series panel, but i am unable to parse the nested objects and tie them together, with the corresponding time field. This is an example of the API response
[
{
"time": "1732550700",
"data": [
{
"dev_intf": "Device:internal12",
"sent_kbps": "1768.23"
},
{
"dev_intf": "Device:Ruckus",
"sent_kbps": "1537.48"
},
{
"dev_intf": "Device:internal5",
"sent_kbps": "870.26"
}
]
},
"time": "1732551900",
"data": [
{
"dev_intf": "Device:internal12",
"sent_kbps": "2359.98"
},
{
"dev_intf": "Device:Ruckus",
"sent_kbps": "2102.95"
},
{
"dev_intf": "Device:APs",
"sent_kbps": "120.83"
}
]
}
]
I have tried to create the panel with transformations and UQL but i cant seem to get it right. Any help would be appreciated.