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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...