I installed the google maps app and I am "enabled" it under "Apps".
I go into the app and am trying to execute the following in the search bar that appears under "Google Maps" - but it does not work.
index=* sourcetype="access_combined"| geoip clientip | search clientip="199.47.245.5" | stats count by uri_path clientip_city | sort - count | stats list(clientip_city) AS city list(count) AS hits BY uri_path | rename uri_path AS uri | eval city=mvindex(city, 0, 4) | eval hits=mvindex(hits, 0, 4)
Note that data for this sourcetype is being forced inward into the indexer from a forwarder.
The /props.conf over under /apps/search/local ON THE INDEXER contains an entry for "access_combined".
I SEE THIS when I execute the results:
On the left there are 19 interesting fields that appear ( bytes, clientip, eventtype, file ) values for all of which get populated (you can see the sampling of indexed data associated with these fields coming in) - BUT NOTHING appears on the actual map
Instead, I see a blank google map and this message
0 results with location information ( 0 distinct locations) in the last 4 hours.
Any idea what is going on here ? If i can see values populated for clientip, bytes, eventtype etc, why can I not see those generated on the actual google map ? Am I missing something here ?
The great goal of this exercise is to get it to execute this search within the context of Google Maps -- and leverage the GoogleMaps element into the advanced xml creation of a non-form dashboard which contains this googleMaps saved search.
... View more