Hi I have the data that looks like this user, ip, (metrics kv pairs) ---- sample results for search -- user=user1,ip=10.10.10.10,key1=10,key2=30 user=user2,ip=10.10.10.10,key1=5,key3=30 user=user1,ip=10.10.10.12,key2=10,key3=30,key4=2,key5=14,key6=4 user=user1,ip=10.10.10.10,key5=22 ------------- How do I pull out the metrics - key1- key6 and aggregate by the metrics ? say if i wanted a pie chart with all totals of all the keys for a given IP/ user (say IP and username are dashboard input tokens)
... View more