Reporting

Searching a field using another field

ISP8055
Path Finder

Hi there,

I want to search events for example A =B*xy

Where B is another field name with different values depending on user input. * is the wildcard

So. I'm looking for events where A would be NYabxy, NYccxy, etc. Here value of B is NY

How would I do search syntax?
This doesn't work:
| search A=B*xy
as here B is considered a string not a field name.

would 
"where" be better alternative?

The main point of me doing this I wanna make my search more efficient as I want Splunk to only search events where A=NY*xy is applicable instead of searching every event with A field. 

Labels (1)

richgalloway
SplunkTrust
SplunkTrust

Yes, where is better than search in this case.  The search command accepts only strings and patterns on the RHS whereas the where command also accepts fields and expressions.  You could do something like this:

index=foo A=*
| where match(A,B.".*xy")

Here, the match function compares a field to a regular expression.  That regex is a concatention of field B, a wildcard (.*) and "xy".

Note that this does not save the indexers from reading all values of A, but it does filter A early so that helps some. 

---
If this reply helps you, Karma would be appreciated.

ISP8055
Path Finder

Hi there,

I applied this syntax. I'm getting the following error:
Error in 'where' command: The expression is malformed. Expected ).

richgalloway
SplunkTrust
SplunkTrust

Hmm...  Try this alternative

index=foo A=*
| where match(A,'B' . ".*xy")
---
If this reply helps you, Karma would be appreciated.
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...