Using Splunk version 5.0
If I do this:
source="/home/IP_Addresses.txt" | geoip ip | top ip_country_name limit=100
I see Denmark has a count of 4,032.
If I do this:
source="/home/IP_Addresses.txt" | geoip ip | search ip_country_name="Denmark"
I see "1,026 matching events".
But this:
source="/home/IP_Addresses.txt" | geoip ip | search ip_country_name="Denmark" | stats count
returns 4,032.
Is "max_matches" the right parameter to change in limits.conf to get the full list of 4,032 events?
... View more