Splunk Search

How to search for a specific field

balash1979
Path Finder

Here is the output of my log message:

{"line":"2019-11-21T22:09:29.982Z LCS   LCE [abc-75] INFO  i.r.queue.poller.SqsMessagePoller - Tags: {accountId=111222333, jobId=1002207394, cloudAccount=ABC-Cloud, jobAttributes={\"serviceIds\":[\"ABC\"]}, jobType=awsAccountService, custName=ABC}

How can I extract the cloudAccount and CustName from the above log so I can search like this:

index="*" | search cloudAccount=ABC-Cloud | search CustName=ABC ?

0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

| makeresults | eval _raw="{\"line\":\"2019-11-21T22:09:29.982Z LCS   LCE [abc-75] INFO  i.r.queue.poller.SqsMessagePoller - Tags: {accountId=111222333, jobId=1002207394, cloudAccount=ABC-Cloud, jobAttributes={\\\"serviceIds\\\":[\\\"ABC\\\"]}, jobType=awsAccountService, custName=ABC}"
| rex mode=sed "s/.*Tags:\s+//"
| kv
| search cloudAccount="ABC-Cloud" AND CustName="ABC"

View solution in original post

0 Karma

nikita_p
Contributor

Hi balash1979,
You can also directly extract fields from your search via Splunk UI using "Extract Fields". You can also check if your extractions are matching every field in the events.
You can refer the Splunk doc for the same:
https://docs.splunk.com/Documentation/Splunk/8.0.0/Knowledge/FXSelectSamplestep

0 Karma

woodcock
Esteemed Legend

Like this:

| makeresults | eval _raw="{\"line\":\"2019-11-21T22:09:29.982Z LCS   LCE [abc-75] INFO  i.r.queue.poller.SqsMessagePoller - Tags: {accountId=111222333, jobId=1002207394, cloudAccount=ABC-Cloud, jobAttributes={\\\"serviceIds\\\":[\\\"ABC\\\"]}, jobType=awsAccountService, custName=ABC}"
| rex mode=sed "s/.*Tags:\s+//"
| kv
| search cloudAccount="ABC-Cloud" AND CustName="ABC"
0 Karma

balash1979
Path Finder

I gave the log line as an example so using the makeresults wont work for me. Lets say I have different log lines with different custName and different cloudAccount, how can i do a generic search that will show me only the lines associated with cloudAccount="ABC-Cloud" ?

0 Karma

woodcock
Esteemed Legend

Sorry, the makeresults part is for demonstration/testing purposes. Your solution is lines 2-4. Just tack those onto your existing search.

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...