Getting Data In

How to display count of zipcodes that have been visited by the number of users per day in a bar chart?

rupesh_patil20
Path Finder

I want to assign the count of users on the X-axis where series of Zipcode on Y-axis. I have one .csv file which has the two columns as Time, Zipcode and Users.

Can you please help me with this?
Thanks

0 Karma
1 Solution

somesoni2
Revered Legend

Try something like this

your base search to get data from csv file | stats count(Users) as count by Zipcode 

On the visualization, select Bar chart.

View solution in original post

0 Karma

jvarmazis_splun
Splunk Employee
Splunk Employee

Assuming you load the csv file into Splunk, you could get the users per day by zipcode in a bar chart with something like this:

source="zipcodetest.csv" sourcetype="csv" | timechart span=1d count(user) by zipcode

Then choose the "Bar" visualization.

0 Karma

rupesh_patil20
Path Finder

Thanks jvarmazis, I will make the changes and will update you..

0 Karma

somesoni2
Revered Legend

Try something like this

your base search to get data from csv file | stats count(Users) as count by Zipcode 

On the visualization, select Bar chart.

0 Karma

rupesh_patil20
Path Finder

Thanks somesoni2, I will make the changes and will update you..

0 Karma

diogofgm
SplunkTrust
SplunkTrust

can you show an example of the csv file?

------------
Hope I was able to help you. If so, some karma would be appreciated.

rupesh_patil20
Path Finder

Hello,

I will make you available csv file soon..

0 Karma
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...