Dashboards & Visualizations

How to create a map visualization from geom statistics?

summitsplunk
Communicator

I've constructed a query to show "users who logged in from outside the US" below:

| iplocation ipaddr | where Country != "United States" | geom geo_countries | search Country=* | stats count by actor_user_name,Country

This query is working and the statistics show :
actor_user_name, Country, Count?

Is it possible to make this data show up correctly on like a Cluster Map? Currently when I click on "Visualization" it shows a map but has nothing plotted.

Tags (1)
0 Karma
1 Solution

niketn
Legend

@summitsplunk iplocation should give you country detail as well, there is no need for geom (you need cluster map and not choropleth map)
From performance perspective you should do stats first followed by iplocation and then finally geostats if you want to plot data on Cluster Map. Try the following search and confirm:

<yourBaseSearch> ipaddr=* actor_user_name=*
| stats count by ipaddr actor_user_name
| iplocation clientip
| search Country!="United States"
| geostats sum(count) as count by user
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

@summitsplunk iplocation should give you country detail as well, there is no need for geom (you need cluster map and not choropleth map)
From performance perspective you should do stats first followed by iplocation and then finally geostats if you want to plot data on Cluster Map. Try the following search and confirm:

<yourBaseSearch> ipaddr=* actor_user_name=*
| stats count by ipaddr actor_user_name
| iplocation clientip
| search Country!="United States"
| geostats sum(count) as count by user
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

niketn
Legend

@summitsplunk if this answer has helped please accept to mark this question as answered. If you need further details please let us know.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...