Background Information:
I have an index from a tool that is being fed into Splunk. The tool has a score field and a user field. However, the tool sometimes gives two separate scores for the same user (because of a session issue). I'm trying to create a panel in Splunk that shows the score for each user.
Question:
Is there some type of sum or eval statement I can use to add scores together if a particular user has two separate scores?
This is my search so far...
index=test sourcetype=test2 | WHERE score>=100 | eval Date=strftime(_time, " %d %b %Y %H:%I:%S") | table Date, user, score
... View more