Hi I have the following JSON object. I would like to be able to ultimately create a bar chart with the following: X-Axis: Animal type ie dog, cat, chicken..... Y-Axis: The length of animal's array, this example, dog=2 cat=3 chicken=1 {
"data": {
"animals": {
"dog": [{"name": "rex", "id": 1}, {"name": "tom", "id": 2}],
"cat": [{"name": "rex", "id": 3}, {"name": "tom", "id": 4}, {"name": "sam", "id": 5}],
"chicken": [{"name": "rex", "id": 6}]
}
}
} I'm new to Splunk so apologies but I'm not sure where to even begin Thanks in advance for any help
... View more