1
0
mirror of https://github.com/Luzifer/elastic_cron.git synced 2024-09-18 22:53:02 +00:00
elastic_cron/config.yml

17 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:
- "+%+"
...