I have an array of values coming directly from database from table with columns ("Name", "Email","ProductId", Quantity). The data looks like this:
{'data':[
('Tom', '[email protected]','P1231', 50),
('Rob', '[email protected]','P6431', 100),
('Nick', '[email protected]','P3231', 40),
('Li', '[email protected]','P1231', 60)]}
I want to use this array from the logs and display as a table or as a chart in dashboard in Splunk. Does someone know if this is possible in Splunk Enterprise. For eg
Name Email ProductId Quantity
Tom [email protected] P1231 50
Rob [email protected] P6431 100
Nick [email protected] P3231 40
Li [email protected] P1231 60