Splunk Enterprise Security

How do i extract certain fields and data from _raw and display in table form@ eg

NayneshPatel
New Member

How do i extract certain fields and data from _raw and display in table form@ eg

_raw
[{"Conutry":"America","State":"Nevada","Population":"6564654"},{"Conutry":"America","State":"California","Population":"42475"}]

many thanks

0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@NayneshPatel

Try this.

YOUR_SEARCH | spath | rename {}.* as * | eval tmp=mvzip(mvzip(Conutry,State),Population) | mvexpand tmp | eval Conutry=mvindex(split(tmp,","),0),State=mvindex(split(tmp,","),1),Population=mvindex(split(tmp,","),2) | table Conutry, State ,Population

Sample:

| makeresults | eval _raw="[{\"Conutry\":\"America\",\"State\":\"Nevada\",\"Population\":\"6564654\"},{\"Conutry\":\"America\",\"State\":\"California\",\"Population\":\"42475\"}]"| spath | rename {}.* as * | eval tmp=mvzip(mvzip(Conutry,State),Population) | mvexpand tmp | eval Conutry=mvindex(split(tmp,","),0),State=mvindex(split(tmp,","),1),Population=mvindex(split(tmp,","),2) | table Conutry, State ,Population

View solution in original post

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@NayneshPatel

Try this.

YOUR_SEARCH | spath | rename {}.* as * | eval tmp=mvzip(mvzip(Conutry,State),Population) | mvexpand tmp | eval Conutry=mvindex(split(tmp,","),0),State=mvindex(split(tmp,","),1),Population=mvindex(split(tmp,","),2) | table Conutry, State ,Population

Sample:

| makeresults | eval _raw="[{\"Conutry\":\"America\",\"State\":\"Nevada\",\"Population\":\"6564654\"},{\"Conutry\":\"America\",\"State\":\"California\",\"Population\":\"42475\"}]"| spath | rename {}.* as * | eval tmp=mvzip(mvzip(Conutry,State),Population) | mvexpand tmp | eval Conutry=mvindex(split(tmp,","),0),State=mvindex(split(tmp,","),1),Population=mvindex(split(tmp,","),2) | table Conutry, State ,Population
0 Karma

NayneshPatel
New Member

Perfect thanks you

Not sure if you can further help me,

From the Field Population, can you filter out the results so if it contains anything other then "6564654" and "42475", then show the results. along with county and state

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@NayneshPatel

For excluding events having Population value 6564654 & 42475, just append below search with existing.

| search NOT (Population IN (6564654,42475))

0 Karma

NayneshPatel
New Member

Brilliant, thanks Kamlesh

0 Karma
Get Updates on the Splunk Community!

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2025 SplunkTrust is officially open! If you ...

Splunk Answers Content Calendar, June Edition II

Get ready to dive into Splunk Dashboard panels this week! We'll be tackling common questions around ...

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...