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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...