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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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