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!

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...