Splunk Search

How can I remove latitude and longitude values while hovering over map and instead display the address of location on the map?

bhawana2192
New Member

I am using Splunk Cloud 6.5.0 version. How can i remove latitude and longitude values while hovering over map and display the address of location on the map.

0 Karma
1 Solution

dbcase
Motivator

Can display the city and state or city and country will that work for you?

View solution in original post

0 Karma

dbcase
Motivator

Can display the city and state or city and country will that work for you?

0 Karma

bhawana2192
New Member

That works too, but first i need to hide the latitude and longitude values . let me know how i can do that.

0 Karma

dbcase
Motivator

Here is how I do it

host="*beta*" source="*access_log*" index=main |rex "(?<src>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"|rex "HTTP.\d.\d.\s+(?<status>\d+)"| iplocation src  |where City!=""|eval cr=City." - ".Region|geostats globallimit=0  count  by cr

lguinn2
Legend

Splunk does not have the address of the location, so there is no way that it could display that information.

0 Karma

bhawana2192
New Member

Hi, i have address and phone numbers as column in my lookup file, i need to hide latitude and longitude values and display the store info . is that possible ?

0 Karma

simon21
Path Finder

Just create a css file on your search head server under /splunk//appserver/static/

Eg - name of the css file is hover.css
and add the below content in the css file

div.leaflet-popup-content tr:first-child {
display: none;
}
div.leaflet-popup-content tr:nth-child(2) {
display: none;
}

and embed hover.css (name of the file) in your dashboard.

richielynch89
Path Finder

Thanks @simon21. This worked a treat.
To go one step further - if you are using classic dashboard, you can simply put the css in the source code.

Create a new hidden row by using depends="$alwaysHideCSSStyle$" .

Then put the css code within <panel>   ->  <html>  ->  <style> tags

<row depends="$alwaysHideCSSStyle$">
<panel>
   <html>
     <style>

        div.leaflet-popup-content tr:first-child {
          display: none;
        }

       div.leaflet-popup-content tr:nth-child(2) {
         display: none;
       }

    </style>
   </html>
  </panel>
</row>

0 Karma

jiaqya
Builder

Hi , that solution worked for me, it removes the first 2 lines of latitude and longitude.
can you help me with one more thing on same lines.

how to delete last 'n' lines , im looking to delete last 4 lines..

0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...