Hey all,
My structured logging framworks indexes the documents with the following structure fragment:
{
"ZoneId": "abc",
"Results": {
"a": 5,
"b": 14,
"c": 22
}
}
{
"ZoneId": "def",
"Results": {
"a": 5,
"g": 14,
"h": 22
}
}
I'm looking to create a pie-chart visualization that would be capable of displaying the Results
node (values = pie chart arcs and keys as labels)
Is this achievable? How should one approach it?
From the above input I'd expect to have a pie chart with 5 segments (a,b ,c ,g, h) with apropriate value aggregations.
Please note that if the above input structure won't work, I'm open to modifying it