<?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: Google Maps view doesn't work in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53991#M3124</link>
    <description>&lt;P&gt;Hi Ziegfried!&lt;/P&gt;

&lt;P&gt;we just installed version 4.1.7, build 95063 of Splunk in a Windows 2008 R2 64bit OS. The Google maps installed correctly but we can't see any results on the pane. The apps.py has changed from previous version of splunk so there no work around.&lt;/P&gt;

&lt;P&gt;Thanks in advance/George&lt;/P&gt;</description>
    <pubDate>Fri, 18 Feb 2011 15:03:10 GMT</pubDate>
    <dc:creator>gremos</dc:creator>
    <dc:date>2011-02-18T15:03:10Z</dc:date>
    <item>
      <title>Google Maps view doesn't work</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53986#M3119</link>
      <description>&lt;P&gt;I've installed the &lt;A href="http://www.splunkbase.com/apps/All/4.x/Add-On/app%3aGoogle+Maps" rel="nofollow"&gt;Google Maps app&lt;/A&gt; and now I'm getting the following error when I open it: &lt;CODE&gt;[Splunk encountered the following unknown module: "Google Maps". The view may not load properly.]&lt;/CODE&gt;. I've restarted Splunk several times but it still doesn't work. I've also tried different browser with no success.&lt;/P&gt;

&lt;P&gt;I'm running Splunk 4.1.5 on Windows.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Sep 2010 00:28:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53986#M3119</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2010-09-21T00:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps view doesn't work</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53987#M3120</link>
      <description>&lt;P&gt;This is a bug in Splunk 4.1.4 and 4.1.5 on Windows not being able to load custom modules in some cases (affects Google Maps, AfterGlow, etc).&lt;/P&gt;

&lt;P&gt;Fortunately there is a workaround:&lt;/P&gt;

&lt;P&gt;Open the file &lt;CODE&gt;$SPLUNK_HOME\Python-2.6\Lib\site-packages\splunk\appserver\mrsparkle\lib\apps.py&lt;/CODE&gt; in a text editor and add the following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        if not len(newapps): raise Exception()
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;on line 42.&lt;/P&gt;

&lt;P&gt;Before:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    try:
        # find new apps that have to be updated
        appslist = cached.getEntities('apps/local', search='new=true')
        newapps = [app for app in appslist if app not in self.apps]
    except:
        # localapps endpoint is not available yet 
        if self.loaded and not force:
            return True
        else:
            newapps = os.listdir(apps_path)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;After:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    try:
        # find new apps that have to be updated
        appslist = cached.getEntities('apps/local', search='new=true')
        newapps = [app for app in appslist if app not in self.apps]
        if not len(newapps): raise Exception()
    except:
        # localapps endpoint is not available yet 
        if self.loaded and not force:
            return True
        else:
            newapps = os.listdir(apps_path)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Be sure to add the same kind of whitespace characters as on the line above. Python is very picky about whitespaces and indentions.&lt;/P&gt;

&lt;P&gt;After a restart you should be able to view the Google Maps module.&lt;/P&gt;

&lt;P&gt;Please do not attempt to do this in a production environment without testing it on a test instance first. No warranties!  &lt;/P&gt;</description>
      <pubDate>Tue, 21 Sep 2010 00:29:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53987#M3120</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2010-09-21T00:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps view doesn't work</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53988#M3121</link>
      <description>&lt;P&gt;Thanks for the answer ziegfried.  One thing that might be useful to the next person is that I had to use whitespaces instead of tabs when entering this line.  When putting in the text with the automatic indentation of my editor the splunkweb service failed to start.  Removing the tabs and using whitespaces worked like a charm.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2010 19:08:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53988#M3121</guid>
      <dc:creator>justinhart</dc:creator>
      <dc:date>2010-10-12T19:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps view doesn't work</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53989#M3122</link>
      <description>&lt;P&gt;Hi ziegfried!&lt;/P&gt;

&lt;P&gt;I'm using Google Maps app but it never shows any result... it says: "null results with location information ( null distinct locations) in the last 60 minutes"&lt;/P&gt;

&lt;P&gt;The search I put is: source=/var/log/remots/ns_traffic.log|rename dst as clientip |geoip clientip|geonormalize&lt;/P&gt;

&lt;P&gt;I also saw that it generates all the required fields clientip_countrycode, clientip_latitude, etc. but not the _lat and _lng hide fileds (or I can't see them...).&lt;/P&gt;

&lt;P&gt;Any idea?&lt;/P&gt;

&lt;P&gt;Thanks in advance,
Alex&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2010 17:16:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53989#M3122</guid>
      <dc:creator>afont</dc:creator>
      <dc:date>2010-11-10T17:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps view doesn't work</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53990#M3123</link>
      <description>&lt;P&gt;What search are you executing? What Splunk Version are you using on which platform?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2010 18:25:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53990#M3123</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2010-11-16T18:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps view doesn't work</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53991#M3124</link>
      <description>&lt;P&gt;Hi Ziegfried!&lt;/P&gt;

&lt;P&gt;we just installed version 4.1.7, build 95063 of Splunk in a Windows 2008 R2 64bit OS. The Google maps installed correctly but we can't see any results on the pane. The apps.py has changed from previous version of splunk so there no work around.&lt;/P&gt;

&lt;P&gt;Thanks in advance/George&lt;/P&gt;</description>
      <pubDate>Fri, 18 Feb 2011 15:03:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53991#M3124</guid>
      <dc:creator>gremos</dc:creator>
      <dc:date>2011-02-18T15:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps view doesn't work</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53992#M3125</link>
      <description>&lt;P&gt;So you can see the map? What kind of searches are you running? Are there any Javascript errors?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2011 22:23:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Google-Maps-view-doesn-t-work/m-p/53992#M3125</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2011-03-01T22:23:31Z</dc:date>
    </item>
  </channel>
</rss>

