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!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

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 ...