Splunk Search

how to split the time into different shifts to find how many employees came in shift 1 and shift2

Jyothik
New Member

we have a data with employee numbers who enter the office during different times in the day.

We want to categorize employees coming between 6:30 to 12:30 as Shift1 and 12:31 to 5 PM as Shift 2 and display stats of number of employees coming in Shif1 and Shift2

How to write a query for the same,

Sample Data:
Emp No Time
100 6:30
101 8:00
102 14:00

Regards,
Jyothi

Tags (1)
0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

Your Base Search Here
| eval hourmin=Time
| rex field=hourmin mode=sed "s/://"
| eval Shift=case((hourmin>=630  AND hourmin<1230), "Shift1",
                  (hourmin>=1230 AND hourmin<1700), "Shift2",
                  true(), "N/A")
| stats dc(Emp) BY Shift

View solution in original post

0 Karma

woodcock
Esteemed Legend

Like this:

Your Base Search Here
| eval hourmin=Time
| rex field=hourmin mode=sed "s/://"
| eval Shift=case((hourmin>=630  AND hourmin<1230), "Shift1",
                  (hourmin>=1230 AND hourmin<1700), "Shift2",
                  true(), "N/A")
| stats dc(Emp) BY Shift
0 Karma

Jyothik
New Member

thank you woodcock

0 Karma
Get Updates on the Splunk Community!

Using Machine Learning for Hunting Security Threats

WATCH NOW Seeing the exponential hike in global cyber threat spectrum, organizations are now striving more for ...

Observability Newsletter Highlights | March 2023

 March 2023 | Check out the latest and greatestSplunk APM's New Tag Filter ExperienceSplunk APM has updated ...

Security Newsletter Updates | March 2023

 March 2023 | Check out the latest and greatestUnify Your Security Operations with Splunk Mission Control The ...