<?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 Creating visualization of list of ip address in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Creating-visualization-of-list-of-ip-address/m-p/329328#M98026</link>
    <description>&lt;P&gt;I have data that has multiple (and variable) ip addresses associated with each event. &lt;/P&gt;

&lt;P&gt;For example:&lt;BR /&gt;
ABCD September 11, 2017 123.123.123.3 234.234.234.234.3&lt;BR /&gt;
SDFG September 11, 2017 234.234.234.1 23.235.243.3 345.6.74.12&lt;/P&gt;

&lt;P&gt;I am trying to create a map of IPs with geostats. &lt;/P&gt;

&lt;P&gt;I tried doing &lt;CODE&gt;index = abc | values(ip_addresses) | iplocation ip_addresses | geostats count by Country&lt;/CODE&gt; but that didn't seem to work - I think iplocation doesn't work with lists. &lt;/P&gt;

&lt;P&gt;Any recommendations?&lt;/P&gt;</description>
    <pubDate>Mon, 11 Sep 2017 14:19:12 GMT</pubDate>
    <dc:creator>andrewhlui</dc:creator>
    <dc:date>2017-09-11T14:19:12Z</dc:date>
    <item>
      <title>Creating visualization of list of ip address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-visualization-of-list-of-ip-address/m-p/329328#M98026</link>
      <description>&lt;P&gt;I have data that has multiple (and variable) ip addresses associated with each event. &lt;/P&gt;

&lt;P&gt;For example:&lt;BR /&gt;
ABCD September 11, 2017 123.123.123.3 234.234.234.234.3&lt;BR /&gt;
SDFG September 11, 2017 234.234.234.1 23.235.243.3 345.6.74.12&lt;/P&gt;

&lt;P&gt;I am trying to create a map of IPs with geostats. &lt;/P&gt;

&lt;P&gt;I tried doing &lt;CODE&gt;index = abc | values(ip_addresses) | iplocation ip_addresses | geostats count by Country&lt;/CODE&gt; but that didn't seem to work - I think iplocation doesn't work with lists. &lt;/P&gt;

&lt;P&gt;Any recommendations?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 14:19:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-visualization-of-list-of-ip-address/m-p/329328#M98026</guid>
      <dc:creator>andrewhlui</dc:creator>
      <dc:date>2017-09-11T14:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Creating visualization of list of ip address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Creating-visualization-of-list-of-ip-address/m-p/329329#M98027</link>
      <description>&lt;P&gt;Use &lt;CODE&gt;mvexpand&lt;/CODE&gt; to convert from multivalue to single value. Try the following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index = abc 
| stats values(ip_addresses) as ip_addresses 
| mvexpand ip_addresses 
| iplocation ip_addresses 
| geostats count by Country
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Sep 2017 14:42:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Creating-visualization-of-list-of-ip-address/m-p/329329#M98027</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-09-11T14:42:44Z</dc:date>
    </item>
  </channel>
</rss>

