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!

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Answers Content Calendar, July Edition I

Hello Community! Welcome to another month of Community Content Calendar series! For the month of July, we will ...