So each user has stats, in the original post that shows just my user "pir8radio" (shown below) I need to be able to create dashboards off of the user stats. Below the address and addressRS represent one user.. Everything else is his data. So my user S-GJ9C-T2EF-C82A-8EZPD is also know as 7338594461977886954 or by name: Pir8Radio, has a pending balance of 0 Signa, a total capacity of 80.xxxxx etc etc.. This data is grabbed by splunk every 2 mins. I need to chart based on this data. filtered however i filter it on the dashboard. normal splunk usage.. my issue is that there are multiple users data polled every 2 mins in one json response.. so i need to tie all of the info below as one record, then the next user as another record, then i can break out the fileds per record. {
"address":"7338594461977886954",
"addressRS":"S-GJ9C-T2EF-C82A-8EZPD",
"pendingBalance":"0 SIGNA",
"totalCapacity":80.04373488882364,
"totalEffectiveCapacity":64.44006329147014,
"commitment":"2467.564 SIGNA",
"committedBalance":"159010 SIGNA",
"boost":0.4127924541887127,
"boostPool":0.6147618784432624,
"sharedCapacity":64.44006329147014,
"sharePercent":100,
"donationPercent":1,
"nConf":120,
"share":0.4091681714251888,
"minimumPayout":"10 SIGNA",
"currentRoundBestDeadline":"511",
"name":"Pir8Radio",
"userAgent":"signum-miner/1.8.0"
} So when you poll that url, you get like 20 of the above all back to back in a single JSON response. i need to break them out into 20 records not one record with 20 users in it.. Not sure im explaining well.. copy paste the above 20 times back to back and that is what splunk ingests every 2 mins. So in splunk i see this: Instead of one record with 1 result each for each item miners{}.address , miners{}.addressRS , pendingBalance etc...
... View more