I have this setup on my side, where I am getting the values in minutes like 1440,60,30, etc which says that my pipeline runs at 1440 minutes, 60 minutes, and 30 minutes respectively.
From the same setup, I am getting the values in cron syntax 0 2 * * *,0 */8 * * * etc,
which says my pipeline runs at 2 every day and at every 8 hours.
My query is To maintain the consistency, How should I do to convert the cron syntax to minutes, like 0 2 * * * to 1440, ignoring at what time it runs.
I just want to get the schedule intervals in minutes from the cron syntaxes
PS: I tried with cronitor module, but failed.
Thanks in Advance.