Splunk Search

extarct specific field with regex

khanlarloo
Explorer

i want to extract the field with the name of http_agent from my logs
the raw field is :

"http_host=""nts.mapnanyp.com""","http_agent=""Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0""",http_retcode=200,"msg=""HTTP get request from,content_switch_name="none",server_pool_name="NTS","user_name=""Unknown""","http_refer=""https://mysite/dashboard/new/datalist.aspx?

i want just show the result before http_retcode, the result should be

(http_agent=""Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0)

can you tell me how can i do that?

Tags (1)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@khanlarloo

try this:

YOUR_SEARCH  | rex field=_raw "\"(?<A>http_agent=.*)\"\"\",http_retcode"

Sample Search:

| makeresults | eval _raw="\"http_host=\"\"nts.mapnanyp.com\"\"\",\"http_agent=\"\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0\"\"\",http_retcode=200,\"msg=\"\"HTTP get request from,content_switch_name=\"none\",server_pool_name=\"NTS\",\"user_name=\"\"Unknown\"\"\",\"http_refer=\"\"https://mysite/dashboard/new/datalist.aspx?" | rex field=_raw "\"(?<A>http_agent=.*)\"\"\",http_retcode"
0 Karma

khanlarloo
Explorer

it doesn't work.

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

does it return blank or unexpected output?

0 Karma

ddrillic
Ultra Champion

Looks most cheerful to me ; -)

alt text

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

Are you looking for round brackets ()?
Then just append it... 🙂

eval A="(".A.")";

0 Karma
Get Updates on the Splunk Community!

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 ...

Introducing the 2024 Splunk MVPs!

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