How can I schedule Logstash jdbc input ro run on specific minutes?

Hi,

I am using ELK GA 5.0.0. I have set Logsrash jdbc to run on every 15th minute like;

schedule => "15 * * * *"

Now, I want to change this scheduler, to run on every 0th, 15th, 30th and 45th minute. How can I do this?

Thanks in advance.

No, what you have runs it at 15 minutes past the hour, every hour. */15 means every 15 minutes. You're looking for 0,15,30,45.

Note that the notation used is (more or less) the standard crontab notation so there's plenty of documentation and examples out there.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.