Splunk Search

How to extract unique values from events with multiple values?

ipops
Path Finder

I am importing SQL data into Splunk.
Each record contains SessionID, message, and VarValue.

SessionID is always unique, but message and VarValue contain different values

Example

Sessionid = 1234,message="Tower", varValue="site1"
SessionID = 1234,message="Platform",varValue="Wireless"
SessionID = 1234,message="City",varValue="mytown"

Sessionid = 2222,message="Tower", varValue="site2"
SessionID = 2222,message="Platform",varValue="Satellite"
SessionID = 2222,message="City",varValue="mytown"

How can I extract the unique message and varValue into separate variables per unique SessionID?

What I would like to do is display the Platform and City within a single search

0 Karma
1 Solution

sundareshr
Legend

If the data is already in Splunk, and the three fields have been extracted, see if this works (may need some tweaking)

base search here | eval {message}=varValue | stats values(Tower)  as Tower values(Platform) as Platform values(City) as City by SessionID

If the fields are not extracted, try this

base search here | extract pairdelim="," kvdelim="=" | eval {message}=varValue | stats values(Tower)  as Tower values(Platform) as Platform values(City) as City by SessionID

View solution in original post

sundareshr
Legend

If the data is already in Splunk, and the three fields have been extracted, see if this works (may need some tweaking)

base search here | eval {message}=varValue | stats values(Tower)  as Tower values(Platform) as Platform values(City) as City by SessionID

If the fields are not extracted, try this

base search here | extract pairdelim="," kvdelim="=" | eval {message}=varValue | stats values(Tower)  as Tower values(Platform) as Platform values(City) as City by SessionID

ipops
Path Finder

That worked. Thanks alot!

Only thing is no timestamps are shown when I do the following. Any ideas how to get timestamps?

base search here | extract pairdelim="," kvdelim="=" | eval {message}=varValue | stats values(Tower)  as Tower values(Platform) as Platform values(City) as City by SessionID | table _time Tower Platform City SessionID
0 Karma

sundareshr
Legend

Like this

base search here | extract pairdelim="," kvdelim="=" | eval {message}=varValue | table _time Tower Platform City SessionID
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...