How to realize the process of checking if the data set is updated on a specific date each month

We would like to realize the following checks

On the 17th of each month, has the target dataset been updated during the month?
->If NG, Moderate Alert

On the 20th of each month, is the target dataset updated during the month?
->If NG, Critical Alert

Q1:Is Data Health available for the above implementation?
Q2:If Data Health cannot be used, what alternative methods can be considered?

You could use 2 checks of type Time since last updated, with 17 and 20 days as durations. And then you can run these checks on the 17th and 20th of the month (with manual schedules, using this cron format: https://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html#format), with each a different severity.

I was able to resolve the issue. thank you very much.