Splunk Dev

Python script Requirement : Holiday list updation

rijinc
Explorer

I have a regional level holiday list and source is a raw ITSM tools data where there is reported date and resolved date

For ex : CSV file for holiday list
App Location Des Date
App1 Pune Newyear 01/01/2020
App2 Singapore xxxxx 13/01/2020
App3 Pune/Singapore someday 14/01/2020

What my python code should check for the location and App in the raw data and also the location and app in holiday list and based on that it should trigger if there is a holiday or not

challenge : app3 has a holiday at both location at such case how to handle this

I tired something initially like this:
bt its throwing output as 'N' even when the holiday date and reported date matches

for holiday in holidays:
day , month , year= holiday.split('/')
holidate = date(int(year) , int(month) , int(day))
logger.info('%s', holidate)
if holidate == each_date.date():
is_it_holiday = 'Y'
else:
is_it_holiday = 'N'
result['is_it_holiday'] = is_it_holiday
break

Labels (1)
0 Karma
Get Updates on the Splunk Community!

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

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...