Hello community,
i’m using grafana 11.4.0 and try to add mixed table / sparkline.
All values are displayed correctly. My datasource is infinity.
The json looks like:
[
{
"Id": "1",
"IpAddress": "192.168.2.1",
"Hostname": "pvsense",
"Active": "1",
"AvgMs": 0,
"MsArray": [
{
"time": "1736178124",
"value": 0
},
{
"time": "1736178184",
"value": 0
},
{
"time": "1736178244",
"value": 0
},
{
"time": "1736178304",
"value": 0
},
{
"time": "1736178364",
"value": 0
},
{
"time": "1736178424",
"value": 0
},
{
"time": "1736178484",
"value": 0
},
{
"time": "1736178544",
"value": 0
},
{
"time": "1736178604",
"value": 0
},
{
"time": "1736178664",
"value": 0
}
]
},...
]
What i want is in the last column a sparkline. I know it works with field override but how can sparkline reads the array from my json “MsArray”?
Example of my table how it should look:
Hostname | IP Address | Timeout | Sparkline with data from MsArray
Is this possible?
Best ben