Splunk Search

Counting how many people are in office at exact time

kaukenas
New Member

Hello,

I am new to Splunk, just finished beginner tutorial and my boss gave me task to count, how many employees are in the office for a specific time period.
I have CSV file containing employee ID, time and date when he went IN or OUT.
For example, I need to know how many people were in office between 12AM to 1PM, however if employee came at 8AM, he should be listed as IN at that time.

Thank you for your help,

Vaidotas

Tags (1)
0 Karma

somesoni2
Revered Legend

Well, sample data for an employee for it's in time and out time will help here.

Meanwhile give this a try (assuming there is a column "Type" with value either IN or OUT and column "Timestamp" which contains the time in format "%m/%d/%Y %H:%M")

| inputlookup YourData.csv | table EmployeeID Type Timestamp | eval _time=strptime(Timestamp,"%m/%d/%Y %H:%M") | chart values(_time) over EmployeeID by Type | eval time=mvrange(IN,OUT,300) | mvexpand time | eval _time=time | timechart span=1h dc(EmployeeID)
0 Karma

sundareshr
Legend

What you will need to do, if first convert your time fields to epoch times so you can do calculations. You can use strptime for this conversion. Your final search will look something like this

| inputlookup employesslist.csv | eval in=strptime(IN, "%c") | eval out=strptime(out, "%c") | eval midnight=relative_time(now(), "@d") | eval afternoon=relative_time(now(), "@d+13h") | where (in>midnight AND in<afternoon) AND out>afternoon | timechart span=1h dc(employee) 
0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

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