I am executing a query in splunk which is below :
| makeresults | eval ip="$ip$" | makemv delim="," ip | mvexpand ip | ipinfo ip [ search "10.19.10.10", "%ASA-6-722023", dest="*" | fields dest | rename dest as ip]
but it is giving me following error
10 errors occurred while the search was executing. Therefore, search results might be incomplete
I have installed IPINFO app on splunk to get the carrier information.
Hi @ismail_salma198,
Your subsearch result format is not suitable for ipinfo command. You don't need to use subsearch.
Please try below; please use a specific index on your searches to help Splunk run faster
"10.19.10.10" "%ASA-6-722023" dest="*"
| ipinfo dest
@ismail_salma198
have you made below configuration as mentioned https://splunkbase.splunk.com/app/4070/#/details
-------------- Configuration ------------
Just update ip_info_setup.conf in $SPLUNK_HOME/etc/apps/ip_info/local/
[api_configuration]
api_url = https://ipinfo.io/
token = <your token here>
and restart Splunk
Hi @ismail_salma198,
Your subsearch result format is not suitable for ipinfo command. You don't need to use subsearch.
Please try below; please use a specific index on your searches to help Splunk run faster
"10.19.10.10" "%ASA-6-722023" dest="*"
| ipinfo dest
Ur given solution worked. Much much appreciated. Thanks alot
Regards
Ismail Kalolwala
It works awesome Thank you man.