Splunk Search

Count of hosts

Armyeric
Path Finder

I have a search:
index="proxy" ([|inputlookup proxy.csv|rename site as query | fields query] ) NOT www.google.com | stats count by dest_host

*www.google.com is my test to make sure the search is working and since I would have to reload a new lookup table I just leave it in.

The search works, but I am getting subdomains and pages associated with my search and they count as individual destination hosts.

Lookuptable:

facebook.com

Search Results:

12341241421421421.facebook.com

1234.channel.facebook.com

2345.channel.facebook.com

etc,

etc.

I know I can do a replace *facebook.com with facebook.com and that will get me the total count for that host...but I have many other domains I am doing a count for and my search would exceed the length. Is there an easier way to do my search that will combine all the subdomains into the main domain and thus get a total count of each host? The lookup table has about 3500 hosts in it.

Tags (2)
0 Karma
1 Solution

okrabbe_splunk
Splunk Employee
Splunk Employee

One option is to clean up the field that has the site?

For example, do a rex like this to just grab the domain

| rex field=site  "(?<site>[^\.]+\.[^\.]+$)"

After that, you can then compare your list from the lookup with just the domain name.

View solution in original post

0 Karma

okrabbe_splunk
Splunk Employee
Splunk Employee

One option is to clean up the field that has the site?

For example, do a rex like this to just grab the domain

| rex field=site  "(?<site>[^\.]+\.[^\.]+$)"

After that, you can then compare your list from the lookup with just the domain name.

0 Karma

Armyeric
Path Finder

It didn't like "site" so I replaced it with dest_host and it works. Thanks!

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...