Splunk Search

After Zoom in splunk map not showing the piechart !

ajitshukla61116
Path Finder

Before zoom in, I get the correct result.
alt text

After zooming in I don't get the proper result.

alt text

If we further zoom in then we are getting nothing. I don't know what the issue is, please help me to resolve this problem.

0 Karma

niketn
Legend

@ajitshukla61116 what is the query you are using? What is the data for pie slice? Have you also tried the Maps+ Visualization?

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

ajitshukla61116
Path Finder

thanks @niketnilay ,my query is index="test_data"| geostats latfield=Latitude longfield=Longitude count by status |sort - HIGH | head 20

here status has two value HIGH and LOW.

I haven't tried map+visualization ,just trying this .

0 Karma

niketn
Legend

On the map what exactly the unit for location? Is it Country or State or City or Zip? Can you try the following (I have taken City as the location identifier)

index="test_data"
| eval location=City.":".Latitude.":".Longitude 
| chart count by  location status
| sort 0 - "HIGH"
| head 20
| eval location=split(location,":"), City=mvindex(location,0), Latitude=mvindex(location,1), Longitude=mvindex(location,2)
| fields - location
| geostats latfield=Latitude longfield=Longitude sum(GET) sum(POST) by City
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

ajitshukla61116
Path Finder

thanks @niketnilay for your support, actually I am new to splunk ,so I just know the basic things .On the Map I am passing Latitude and longitude only .

0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...