Splunk Search

How to calculate employee retention from previous month

lbrhyne
Path Finder

Hello, We are trying to calculate employee retention by the department for the previous month. The challenge is trying to account for employee's that were not terminated from the company but transferred to a different department. What I'm attempting to do is calculate the number of employees by name within a department at the beginning and end of the previous month.

Example: There are 10 employees in Department A on January 1st and Little Johnny decide to jump ship to Department B on January 15. On Jan 31st Department A has only 9 employees, leaving a 90% retention rate for the previous month.

Thanks in advance for the help!

0 Karma
1 Solution

nareshinsvu
Builder

Try this:

| from datamodel:<your_datamodel> 
|where ((_time>relative_time(now(),"-1mon@mon") and _time<relative_time(relative_time(now(),"-1mon@mon"),"+1d")) OR (_time>relative_time(relative_time(now(),"@mon"),"-1d")   and _time<relative_time(now(),"@mon")))  
| stats count by date_mday Department 
|streamstats max(date_mday) as monthend 
|eventstats sum(count) as Total by  Department   
|eval diff=if((date_mday==monthend),Total-count,"")
|eval Percent_change = ((count-diff)/diff)*100
|fields date_mday  Department   count Percent_change

View solution in original post

nareshinsvu
Builder

Try this:

| from datamodel:<your_datamodel> 
|where ((_time>relative_time(now(),"-1mon@mon") and _time<relative_time(relative_time(now(),"-1mon@mon"),"+1d")) OR (_time>relative_time(relative_time(now(),"@mon"),"-1d")   and _time<relative_time(now(),"@mon")))  
| stats count by date_mday Department 
|streamstats max(date_mday) as monthend 
|eventstats sum(count) as Total by  Department   
|eval diff=if((date_mday==monthend),Total-count,"")
|eval Percent_change = ((count-diff)/diff)*100
|fields date_mday  Department   count Percent_change

lbrhyne
Path Finder

Thank you @nareshinsvu that worked, i think :). I just noticed that I got ahead of myself as we don't have any data for July for this index, so I won't know fully until next month. With that being said, you certainly put me on the right path!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...