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!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...