1
0
Fork 0
mirror of https://github.com/Luzifer/elastic_cron.git synced 2024-11-08 13:50:04 +00:00
elastic_cron/config.yml

16 lines
227 B
YAML

---
elasticsearch:
index: 'elastic_cron-%{+YYYY.MM.dd}'
servers:
- http://localhost:9200
auth: [username, password]
jobs:
- name: date
schedule: "0 * * * * *"
cmd: "/bin/date"
args:
- "+%+"
...