How to trigger every x seconds

Is there a way to trigger every X seconds? Cron only does minutes and higher.

Press “Custom” , Generate the cron expression you need here:

Example, Every 5 seconds would be

0/5 0 0 ? * * *

“Error : Too many fields”

Ah yes, that example has too many characters. This should work: */5 * * * * *

An alternative would be to use the Interval-Node.

Now it’s too few fields

Can you please try. Because it is the correct number and works fine.

Yes, now it works. Thanks!

Great to hear! Have fun!

Hi, is this correct for every 2 seconds? 0/2 0 0 ? * * *