Splunk Search

How to find sum of particular fields by time?

pal_sumit1
Path Finder

We are having search which contain two fields user id and time at which user logged in.

We need to print below table

Time--------------|--------total user (no. of user logged in that hour)
00:00--1:00 am|---30
01:00--2:00 am|---40
etc..
we have to print top 10 values for current day only.
IF we are running search today it should show only today data.
and if we are running search tomorrow that it should show only tomorrow data

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Give this a try (assuming your logged in time is identified your _time of the event)

Your search which contain two fields user id and time
| timechart span=1h dc(userId) as "Total Users"
| eval Time=strftime(_time,"%H:%M")."--".strftime(_time+3600,"%H:%M")
| table Time "Total Users"

View solution in original post

somesoni2
Revered Legend

Give this a try (assuming your logged in time is identified your _time of the event)

Your search which contain two fields user id and time
| timechart span=1h dc(userId) as "Total Users"
| eval Time=strftime(_time,"%H:%M")."--".strftime(_time+3600,"%H:%M")
| table Time "Total Users"

kmaron
Motivator
(search for logins) 
| bucket _time span=1h
| stats count by _time
| sort - count limit=10

If you separate them into 1 hour buckets it will get you the per hour count then take the top 10 values.
You can either set the time picker to "today" or set earliest=@d to start at the beginning of today

David_Naylor
Path Finder

Hello,

The following should get you what your looking for

Basesearch | timechart DC(userid) span=1h

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...