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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...