<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to display multiple field ips using geostats in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353635#M162302</link>
    <description>&lt;P&gt;@rakeshyv0807 can you add some sample data with three IP address fields and their values? Would these exist on same event and if yes will all three of them always be present on all the events?&lt;/P&gt;

&lt;P&gt;Please make sure while posting the sample data you mock/anonymize the data.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Mar 2018 21:53:24 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2018-03-14T21:53:24Z</dc:date>
    <item>
      <title>How to display multiple field ips using geostats</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353634#M162301</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have three fields which outputs Ip addresses. is there a way to display all these three field IP addresses on the map using geostats. Or is there any other way to populate those IP's on the map. &lt;/P&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 21:28:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353634#M162301</guid>
      <dc:creator>rakeshyv0807</dc:creator>
      <dc:date>2018-03-14T21:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to display multiple field ips using geostats</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353635#M162302</link>
      <description>&lt;P&gt;@rakeshyv0807 can you add some sample data with three IP address fields and their values? Would these exist on same event and if yes will all three of them always be present on all the events?&lt;/P&gt;

&lt;P&gt;Please make sure while posting the sample data you mock/anonymize the data.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 21:53:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353635#M162302</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-03-14T21:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to display multiple field ips using geostats</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353636#M162303</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;Use the append function to achieve that:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval oneIP="192.123.123.12" 
| iplocation ADAS 
| append
 [| makeresults 
| eval otherIP="192.223.123.12" 
| iplocation otherIP]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Mar 2018 22:20:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353636#M162303</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-14T22:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to display multiple field ips using geostats</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353637#M162304</link>
      <description>&lt;P&gt;@niketnilay Yes, it's possible that all the three IP's would exist on same event but it is not necessary that all three will be present always in every event. Please refer to the sample data below&lt;BR /&gt;
This sample data is which I am displaying in a table format right now:&lt;BR /&gt;
Subject --&amp;gt; username&lt;BR /&gt;
XFF -&amp;gt; IP address&lt;BR /&gt;
TCIP -&amp;gt; IP address&lt;BR /&gt;
XMSFCIP -&amp;gt; IP address&lt;/P&gt;

&lt;P&gt;Table:&lt;/P&gt;

&lt;P&gt;Subject--------------------------------- XFF------------------TCIP---------------------XMSFCIP&lt;BR /&gt;
&lt;A href="mailto:abc@abc.com---------------xx.xxx.xx.xxx----------No"&gt;abc@abc.com---------------xx.xxx.xx.xxx----------No&lt;/A&gt; Value-------------xx.xxx.xx.xxx&lt;BR /&gt;
&lt;A href="mailto:qwe@wer.com-------------xx.xxx.xxx.xx--------xx.xxx.xx.xxx----------xx.xxx.xx.xxx"&gt;qwe@wer.com-------------xx.xxx.xxx.xx--------xx.xxx.xx.xxx----------xx.xxx.xx.xxx&lt;/A&gt;&lt;BR /&gt;
&lt;A href="mailto:asd@fgh.com--------------xx.xxx.xx.xxx------------No"&gt;asd@fgh.com--------------xx.xxx.xx.xxx------------No&lt;/A&gt; Value---------------No Value&lt;BR /&gt;
&lt;A href="mailto:zxc@zxc.com------------------No"&gt;zxc@zxc.com------------------No&lt;/A&gt; Value------------xx.xxx.xxx.xx---------xx.xxx.xx.xxx&lt;/P&gt;

&lt;P&gt;So is it possible to generate all the ip's in the map using geostats?                         &lt;/P&gt;</description>
      <pubDate>Thu, 15 Mar 2018 15:02:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-multiple-field-ips-using-geostats/m-p/353637#M162304</guid>
      <dc:creator>rakeshyv0807</dc:creator>
      <dc:date>2018-03-15T15:02:42Z</dc:date>
    </item>
  </channel>
</rss>

