Splunk Search

How can I compare these two fields?

laurazeno
Explorer

Hello Fellow Splunkers,

I am trying to write a search to compare the sitename and referrer to find all results where the referrer is different than the site. The problem is the referrer comes in as the full URL and the sitename is the base domain with no URI information.

For example:
sitename=www.google.com
referrer=hxxp://www.drive.google.com/blah-blah-uri-stuff

The search I have so far is comparing exact matches, so providing incorrect results.

sourcetype=proxy | eval status =if(match(s_sitename,cs_referrer),"True","False") | table sitename, referrer, username

Any ideas?

0 Karma

somesoni2
Revered Legend

Try like this

| gentimes start=-1 | eval sitename="www.google.com" | eval referrer="http://www.drive.google.com/blah-blah-uri-stuff" 
| table sitename referrer 
| eval result=if(like(referrer,"%".replace(sitename,"www","")."%"),"True","False")
0 Karma

somesoni2
Revered Legend

Line 1 is just to generate data, just use the if command.

0 Karma

sheamus69
Communicator

My regex skills are not awesome, but presumably this is a perfect situation to apply some regex logic to extract the domain name from both sitename and referrer?

0 Karma

ddrillic
Ultra Champion

To understand it better, I broke it a bit to pieces -

     | gentimes start=-1 
     | eval  sitename="www.google.com" 
     | eval  referrer="http://www.drive.google.com/blah-blah-uri-stuff" 
     | table sitename referrer 
     | eval  sitename=replace(sitename,"www","")
     | eval  result=if(like(referrer,"%".sitename."%"),"True","False")
0 Karma
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!

SOK it to Me: Top 3 Benefits of Using Splunk Operator on Kubernetes that’ll Make ...

    Thursday, July 9, 2026  |  11:00AM–12:00PM PDT Duration: 1 hour (includes Q&A) Managing can feel like a ...

Upgrade Prep for 10.4, Network Observability Deep Dives, and More from Splunk Lantern

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...

Splunk Developer Day announcements: AI agents, MCP tools, Forecasting, and Custom ...

Splunk Developer Day was packed with product and platform updates for developers building in the AI ...